:root {
  --red: #8b0000;
  --red-mid: #a80000;
  --red-light: #f5e6e6;
  --red-rule: rgba(139, 0, 0, 0.12);
  --ink: #1a1616;
  --body: #3d3535;
  --muted: #7a6f6f;
  --rule: #e8e2e2;
  --bg: #ffffff;
  --bg-warm: #faf8f8;
  --font: "DM Sans", system-ui, sans-serif;
  --font-ser: "DM Serif Display", Georgia, serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.logo-text {
  line-height: 1.2;
}
.logo-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--red-mid) !important;
}

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO — with bg image */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 3rem 4.5rem;
  border-bottom: 1px solid var(--rule);
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* background-image: url("https://storage.googleapis.com/production-bluehost-v1-0-4/194/1309194/IsYUbLwx/22ab0adca02f42d1902cda882ca44657"); */
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
  filter: grayscale(20%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 248, 248, 0.92) 50%,
    rgba(250, 248, 248, 0.4) 70%,
    rgba(250, 248, 248, 0.1) 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  z-index: 2;
}
.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.hero-kicker::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--font-ser);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero h1 strong {
  color: var(--red);
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--red-mid);
}
.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.hero-meta-num {
  font-family: var(--font-ser);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.hero-meta-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

/* LAYOUT */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 3rem;
}
.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--rule);
}
.sec-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sec-kicker::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.sec-title {
  font-family: var(--font-ser);
  font-size: 1.85rem;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.sec-body {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ABOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fact-list {
  list-style: none;
  margin-top: 1rem;
}
.fact-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--body);
}
.fact-list li:first-child {
  border-top: 1px solid var(--rule);
}
.fact-icon {
  color: var(--red);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1rem;
}
.fact-label {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.82rem;
}

/* SERVICES */
.services-list {
  margin-top: 1.5rem;
}
.service-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.service-row:first-child {
  border-top: 1px solid var(--rule);
}
.service-num {
  font-family: var(--font-ser);
  font-size: 1.5rem;
  color: var(--red-rule);
  flex-shrink: 0;
  line-height: 1;
  min-width: 2rem;
  padding-top: 0.15rem;
}
.service-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.service-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}
.tag {
  background: var(--red-light);
  color: var(--red);
  padding: 0.15rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 1.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.3s;
  opacity: 0.92;
}
.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(26, 22, 22, 0.85) 0%,
    transparent 100%
  );
  padding: 1.25rem 0.85rem 0.65rem;
  transform: translateY(4px);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}
.gallery-caption-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.1rem;
}
/* placeholder tiles for images not yet supplied */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--muted);
}
.gallery-placeholder span {
  font-size: 1.75rem;
}
.gallery-placeholder p {
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.4;
  padding: 0 0.5rem;
}
.gallery-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 22, 22, 0.93);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  font-family: var(--font);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-align: center;
  white-space: nowrap;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.blog-card {
  border: 1px solid var(--rule);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--red);
}
.blog-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.blog-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.72rem;
  color: var(--muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--rule);
}
.blog-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.blog-more:hover {
  text-decoration: underline;
}
.blog-placeholder-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
  background: var(--bg-warm);
  border-left: 3px solid var(--red-rule);
  padding: 0.75rem 1rem;
}

/* HSK */
.hsk-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 4rem 3rem;
}
.hsk-inner {
  max-width: 960px;
  margin: 0 auto;
}
.hsk-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.hsk-distributor-badge {
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
}
.hsk-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.hsk-cat {
  background: #fff;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.hsk-cat:hover {
  background: var(--red-light);
}
.hsk-cat-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.hsk-cat-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.hsk-cat-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* PLCGuy strip */
.plcguy-strip {
  background: #1a1616;
  padding: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.plcguy-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.plcguy-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}
.plcguy-heading {
  font-family: var(--font-ser);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.plcguy-heading em {
  color: #f59e0b;
  font-style: normal;
}
.plcguy-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.7;
}
.plcguy-btn {
  display: inline-block;
  padding: 0.8rem 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    color 0.2s;
  flex-shrink: 0;
}
.plcguy-btn:hover {
  border-color: #f59e0b;
  color: #f59e0b;
}

/* CONTACT — 3 col */
.contact-3col {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-details {
}
.contact-row {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-row:first-child {
  border-top: 1px solid var(--rule);
}
.c-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.c-value {
  font-size: 0.9rem;
  color: var(--ink);
}
.c-value a {
  color: var(--red);
  text-decoration: none;
}
.c-value a:hover {
  text-decoration: underline;
}

label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
input,
select,
textarea {
  width: 100%;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.form-field {
  margin-bottom: 0.75rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.submit-btn {
  background: var(--red);
  color: #fff;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
}
.submit-btn:hover {
  background: var(--red-mid);
}

.map-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  display: block;
}

/* FOOTER */
footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  padding: 2.5rem 3rem;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-mark {
  width: 32px;
  height: 32px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-mark span {
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}
.footer-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.footer-reg {
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-links {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.8;
}
.footer-links a {
  color: var(--red);
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-3col {
    grid-template-columns: 1fr;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 260px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }
  .hero,
  .hsk-section,
  .plcguy-strip {
    padding: 3rem 1.5rem 2.5rem;
  }
  .container {
    padding: 0 1.5rem;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hsk-cats,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hsk-intro {
    grid-template-columns: 1fr;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--rule);
  }
  .nav-links a:last-child {
    border-bottom: none;
  }
  .nav-cta {
    margin: 0.5rem 1.5rem;
    text-align: center;
    justify-content: center;
  }
  .hero::after {
    display: none;
  }
  .plcguy-inner {
    flex-direction: column;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    text-align: left;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
