:root {
  --gold: #f5b700;
  --gold-dark: #c88b00;
  --ink: #1d1b16;
  --muted: #675f50;
  --cream: #fff8e8;
  --cream-2: #f8faf7;
  --brown: #5b3514;
  --leaf: #2f6f5e;
  --leaf-soft: #e7f1ec;
  --line: rgba(29, 27, 22, 0.12);
  --shadow: 0 20px 60px rgba(29, 27, 22, 0.14);
  --radius: 8px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.6;
}
img, svg { max-width: 100%; }
img {
  display: block;
  height: auto;
}
a { color: inherit; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 50;
}
.skip-link:focus { top: 12px; }
.sr-only,
.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(29, 27, 22, 0.08);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-logo {
  width: 86px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  border-radius: 8px;
  padding: 8px 2px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold-dark); }
.nav-cta {
  padding: 10px 16px !important;
  background: var(--ink);
  color: white !important;
}
.nav-cta:hover,
.nav-cta[aria-current="page"] { background: var(--brown); color: white !important; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--ink);
  border-radius: 8px;
  padding: 11px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(245, 183, 0, 0.26), transparent 34%),
    radial-gradient(circle at 95% 5%, rgba(91, 53, 20, 0.12), transparent 30%),
    linear-gradient(180deg, #fff8e8, #fffdf6);
}
.hero { padding: 92px 0 72px; }
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -160px auto;
  width: 420px;
  height: 420px;
  background: repeating-linear-gradient(60deg, rgba(245, 183, 0, 0.18) 0 12px, transparent 12px 34px);
  border-radius: 50%;
  transform: rotate(20deg);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 44px;
  align-items: center;
}
.page-hero { padding: 82px 0 68px; }
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}
.page-hero-inner p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.25rem;
  margin: 20px 0 26px;
}
.about-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 5vw, 4rem);
}
.about-page .page-hero-inner p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 680px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: Montserrat, sans-serif;
  line-height: 1.08;
  margin: 0;
}
h1 {
  max-width: 860px;
  font-size: clamp(2.65rem, 7.2vw, 5.4rem);
  letter-spacing: 0;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0;
}
h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 660px;
  font-size: 1.28rem;
  color: var(--muted);
  margin: 22px 0 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}
.button.primary {
  background: var(--ink);
  color: white;
}
.button.primary:hover { background: var(--brown); border-color: var(--brown); }
.button.secondary {
  background: transparent;
  color: var(--ink);
}
.button.secondary:hover { background: rgba(29, 27, 22, 0.06); }
.button.full { width: 100%; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-list li {
  padding: 8px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  color: var(--leaf);
}
.hero-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(29, 27, 22, 0.95), rgba(91, 53, 20, 0.96));
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card h2 { font-size: 2.15rem; margin-top: 180px; }
.hero-card p { color: rgba(255,255,255,0.78); font-size: 1.08rem; }
.hero-card a { color: var(--gold); font-weight: 800; text-decoration: none; }
.feature-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(245, 183, 0, 0.16);
  color: #ffe074;
  font-weight: 800;
  border: 1px solid rgba(245, 183, 0, 0.34);
}
.honeycomb {
  position: absolute;
  inset: 42px 28px auto auto;
  width: 210px;
  height: 180px;
}
.honeycomb span {
  position: absolute;
  width: 78px;
  height: 68px;
  background: linear-gradient(145deg, var(--gold), #ffe89d);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  opacity: 0.95;
}
.honeycomb span:nth-child(1){ left: 0; top: 42px; }
.honeycomb span:nth-child(2){ left: 66px; top: 0; }
.honeycomb span:nth-child(3){ left: 66px; top: 84px; }
.honeycomb span:nth-child(4){ left: 132px; top: 42px; }
.honeycomb span:nth-child(5){ left: 0; top: 126px; opacity: .55; }
.honeycomb span:nth-child(6){ left: 132px; top: 126px; opacity: .55; }

.hero-photo-card,
.image-panel,
.contact-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}
.hero-photo-card {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}
.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(29, 27, 22, 0.82);
  color: white;
  backdrop-filter: blur(8px);
}
.hero-photo-card figcaption strong {
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
}
.hero-photo-card figcaption span {
  color: rgba(255,255,255,0.76);
}
.image-panel img,
.contact-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.contact-image {
  margin-top: 24px;
  box-shadow: 0 14px 40px rgba(29, 27, 22, 0.06);
}
.contact-image img { aspect-ratio: 5 / 4; }

.section { padding: 86px 0; }
.cream-section,
.teaser-section { background: var(--cream); }
.intro-strip {
  padding: 26px 0;
  background: var(--ink);
  color: white;
}
.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.strip-grid div { display: grid; gap: 2px; }
.strip-grid strong { color: var(--gold); font-family: Montserrat, sans-serif; }
.strip-grid span { color: rgba(255,255,255,0.78); }
.section-heading { max-width: 780px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.15rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.product-card,
.process-card,
.about-panel,
.contact-form,
.notice,
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(29, 27, 22, 0.06);
}
.product-card {
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.product-card.tall { min-height: 450px; }
.product-card .icon { font-size: 2.2rem; margin-bottom: 18px; }
.card-photo {
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: -26px -26px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card p { color: var(--muted); }
.product-card a {
  margin-top: auto;
  font-weight: 800;
  text-decoration: none;
  color: var(--leaf);
}
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.check-list.large { font-size: 1.05rem; }
.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 800;
}
.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.two-column.reverse { grid-template-columns: 1fr 1fr; }
.two-column p { color: var(--muted); font-size: 1.08rem; }
.notice {
  padding: 22px;
  border-left: 6px solid var(--gold);
  margin-top: 24px;
}
.notice p { margin: 4px 0 0; }
.process-card { padding: 30px; }
.media-card {
  overflow: hidden;
}
.media-card > img {
  width: calc(100% + 60px);
  max-width: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: -30px -30px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.process-card ol { margin: 22px 0; padding-left: 22px; }
.process-card li { margin-bottom: 14px; color: var(--muted); }
.process-card strong { color: var(--ink); }
.about-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(245, 183, 0, 0.32), transparent 44%),
    linear-gradient(150deg, var(--cream), white);
}
.large-quote {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.7rem, 3.3vw, 2.8rem) !important;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink) !important;
}
.about-quote {
  margin: 22px 0 26px;
  color: var(--ink);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}
.faq { background: var(--cream); }
.faq-list { display: grid; gap: 12px; box-shadow: none; border: 0; background: transparent; }
.faq-list.wide { max-width: 860px; }
.faq-list details { padding: 20px 24px; }
.faq-list summary { cursor: pointer; font-family: Montserrat, sans-serif; font-weight: 800; }
.faq-list p { color: var(--muted); margin-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-methods { display: grid; gap: 10px; margin-top: 24px; }
.contact-methods a {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--leaf-soft);
  text-decoration: none;
  font-weight: 800;
}
.contact-form { padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(245, 183, 0, 0.28);
  border-color: var(--gold-dark);
}
.form-note { margin: 0; color: var(--muted); font-size: 0.92rem; }
.site-footer { padding: 34px 0; background: var(--ink); color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 64px;
  height: auto;
  object-fit: contain;
}
.site-footer p { margin: 4px 0; color: rgba(255,255,255,0.72); }
.site-footer strong { font-family: Montserrat, sans-serif; }
.site-footer a { color: white; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .two-column.reverse,
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid,
  .card-grid.three { grid-template-columns: repeat(2, 1fr); }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero,
  .page-hero { padding: 58px 0; }
  .section { padding: 60px 0; }
  .header-inner { min-height: 68px; }
  .site-nav { top: 68px; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.25rem); }
  h2 { font-size: clamp(1.75rem, 9vw, 2.35rem); }
  .hero-lede,
  .page-hero-inner p:not(.eyebrow) { font-size: 1.08rem; }
  .hero-actions,
  .button { width: 100%; }
  .card-grid,
  .card-grid.three,
  .strip-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 340px; padding: 24px; }
  .hero-photo-card { min-height: 420px; }
  .hero-card h2 { margin-top: 150px; font-size: 1.75rem; }
  .honeycomb { transform: scale(0.82); transform-origin: top right; }
  .product-card,
  .process-card,
  .contact-form,
  .about-panel { padding: 22px; }
  .card-photo {
    width: calc(100% + 44px);
    margin: -22px -22px 20px;
  }
  .media-card > img {
    width: calc(100% + 44px);
    margin: -22px -22px 22px;
  }
  .footer-grid { display: grid; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 22px, var(--container)); }
  .brand { gap: 8px; }
  .brand-logo { width: 68px; }
  .page-hero,
  .hero { padding: 46px 0; }
  .hero-card { min-height: auto; }
  .hero-photo-card { min-height: 360px; }
  .hero-photo-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .hero-card h2 { margin-top: 132px; }
  .contact-methods a,
  .site-footer a { overflow-wrap: anywhere; }
}
