:root {
  --ink: #0E0D0B;
  --ink-soft: #1A1815;
  --paper: #F4F1EA;
  --paper-dim: #E9E4D8;
  --amber: #E5A144;
  --amber-deep: #C98A35;
  --muted: #9A938A;
  --muted-dark: #6E675E;
  --hairline: rgba(244, 241, 234, 0.14);
  --hairline-dark: rgba(14, 13, 11, 0.15);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: var(--ink); }

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.section-label .num { color: var(--amber); }
.section-label h2 {
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  margin: 0;
}
.section-label .line {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  transform-origin: left;
}
.light .section-label .line { background: var(--hairline-dark); }
.light .section-label .num { color: var(--amber-deep); }

/* ---------- reveal animation (gated behind .js so no-JS visitors and crawlers see content) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(14, 13, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 0;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.wordmark span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  min-width: 0;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--paper); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink);
  background: var(--amber);
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-cta:hover { background: var(--paper); transform: translateY(-1px); }
/* ---------- nav dropdown ---------- */
.nav-drop { position: relative; display: inline-flex; }
.nav-drop .caret {
  font-size: 0.6rem;
  color: var(--muted-dark);
  margin-left: 0.15rem;
  transition: color 0.25s ease;
}
.nav-drop:hover .caret, .nav-drop:focus-within .caret { color: var(--amber); }
.drop-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 1rem;
  display: none;
  z-index: 110;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel { display: block; }
.drop-inner {
  background: rgba(14, 13, 11, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 0.5rem;
  min-width: 230px;
}
.drop-inner a {
  display: block;
  padding: 0.7rem 1.1rem;
  border-radius: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.drop-inner a:hover { background: var(--ink-soft); color: var(--paper); }

/* ---------- mobile nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  header.menu-open,
  header.scrolled.menu-open {
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--hairline);
  }
  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  header.menu-open .mobile-menu { max-height: 420px; }
  .mobile-menu a {
    display: block;
    padding: 1.05rem 4vw;
    border-top: 1px solid var(--hairline);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .mobile-menu a:hover, .mobile-menu a:active { color: var(--paper); background: var(--ink-soft); }
}
@media (max-width: 400px) {
  .nav-cta { padding: 0.55rem 1.05rem; font-size: 0.75rem; }
  .nav { gap: 0.8rem; }
}

/* ---------- hero (home) ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}
.hero > .wrap { margin-block: auto; padding-block: 2rem; }
.hero-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(229, 161, 68, 0.10) 0%, rgba(229, 161, 68, 0.03) 40%, transparent 70%);
  pointer-events: none;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.2rem;
}
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--amber);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.9rem, 8.5vw, 7.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.hero-sub {
  margin-top: 2.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: var(--muted);
}
.hero-bottom { padding-bottom: 2.4rem; }
.hero-bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.scroll-hint .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint .dot { animation: none; } }

/* ---------- page hero (subpages) ---------- */
.page-hero {
  padding: clamp(10rem, 18vw, 14rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-glow { top: -40%; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.page-hero .hero-sub { max-width: 56ch; }

/* ---------- statement ---------- */
.statement {
  padding: clamp(7rem, 14vw, 11rem) 0;
  border-top: 1px solid var(--hairline);
}
.statement p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.4;
  max-width: 30ch;
}
.statement p strong {
  font-weight: 500;
  color: var(--amber);
}

/* ---------- light sections ---------- */
.light {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- brands ---------- */
.brands { padding: clamp(6rem, 12vw, 10rem) 0; }
.brand-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--hairline-dark);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: #FBF9F4;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(14, 13, 11, 0.28);
  border-color: rgba(201, 138, 53, 0.5);
}
.brand-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-deep);
  border: 1px solid rgba(201, 138, 53, 0.35);
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
}
.brand-arrow {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted-dark);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.brand-card:hover .brand-arrow {
  transform: translate(6px, -6px);
  color: var(--amber-deep);
}
.brand-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.brand-card p {
  max-width: 52ch;
  color: var(--muted-dark);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
}
.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.brand-meta span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted-dark);
  background: var(--paper-dim);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.brand-next {
  margin-top: 1.4rem;
  border: 1px dashed rgba(14, 13, 11, 0.22);
  border-radius: 20px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand-next p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: var(--muted-dark);
}
.brand-next .slot {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ---------- operate / pillars ---------- */
.operate {
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-top: 1px solid var(--hairline);
}
.operate-intro {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.operate-intro strong { color: var(--paper); font-weight: 500; }
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}
.pillar {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  transition: background 0.35s ease;
}
.pillar:hover { background: var(--ink-soft); }
.pillar .p-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 1.6rem;
}
.pillar h4, .pillar h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.005em;
}
.pillar p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- principles ---------- */
.principles {
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-top: 1px solid var(--hairline);
}
.principle {
  display: grid;
  grid-template-columns: minmax(60px, 140px) 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.principle:first-of-type { border-top: 1px solid var(--hairline); }
@media (max-width: 560px) {
  .principle { grid-template-columns: 1fr; gap: 0.4rem; }
}
.principle .idx {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 1rem;
}
.principle h4, .principle h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
}
.principle p {
  color: var(--muted);
  max-width: 58ch;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---------- working with us ---------- */
.work {
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-top: 1px solid var(--hairline);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.work-card {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.work-card:hover { background: var(--ink-soft); border-color: rgba(229, 161, 68, 0.35); }
.work-card h4, .work-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}
.work-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}
.work-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: color 0.25s ease;
}
.work-link:hover { color: var(--paper); }

/* ---------- offers (light cards on subpages) ---------- */
.offers { padding: clamp(6rem, 12vw, 10rem) 0; }
.offers-intro {
  max-width: 56ch;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.offers-intro strong { color: var(--amber-deep); font-weight: 600; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.offer-card {
  border: 1px solid var(--hairline-dark);
  border-radius: 20px;
  background: #FBF9F4;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(14, 13, 11, 0.22);
}
.offer-card .o-step {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber-deep);
  font-size: 0.95rem;
}
.offer-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
}
.offer-card p {
  color: var(--muted-dark);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
}
.offer-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer-card ul li {
  font-size: 0.88rem;
  color: var(--muted-dark);
  padding-left: 1.3rem;
  position: relative;
}
.offer-card ul li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--amber-deep);
}

/* ---------- comparison table ---------- */
.cmp-wrap { overflow-x: auto; }
table.cmp {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.cmp th, .cmp td {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.6;
}
.cmp thead th {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--paper);
}
.cmp thead th span {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted-dark);
  margin-top: 0.3rem;
}
.cmp thead th:last-child { color: var(--amber); }
.cmp tbody td:first-child {
  font-weight: 600;
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cmp tbody td:last-child { color: var(--paper); }

/* ---------- FAQ ---------- */
.faq-section {
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-top: 1px solid var(--hairline);
}
.faq-list { max-width: 820px; }
.faq-list details {
  border-bottom: 1px solid var(--hairline);
}
.faq-list details:first-of-type { border-top: 1px solid var(--hairline); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  transition: color 0.25s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  color: var(--amber);
  font-size: 1.3rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--amber); }
.faq-list details p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 0 1.8rem;
  max-width: 66ch;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  max-width: 22ch;
  margin: 0 auto 1.4rem;
}
.cta-band h2 em { font-style: italic; color: var(--amber); font-weight: 400; }
.cta-band p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 2.4rem;
  line-height: 1.8;
}

/* ---------- contact ---------- */
.contact {
  padding: clamp(7rem, 14vw, 12rem) 0;
  border-top: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact.page-contact { padding-top: clamp(10rem, 16vw, 13rem); border-top: none; }
.contact-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vw;
  max-width: 1000px;
  background: radial-gradient(ellipse, rgba(229, 161, 68, 0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact .section-label { justify-content: center; }
.contact .section-label .line { display: none; }
.contact h1, .contact h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto 1.8rem;
}
.contact h1 em, .contact h2 em { font-style: italic; color: var(--amber); font-weight: 400; }
.contact > .wrap > p {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.contact-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--amber);
  padding: 1.1rem 2.6rem;
  border-radius: 100px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-btn:hover {
  background: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(229, 161, 68, 0.35);
}

/* ---------- lead form ---------- */
.lead-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
  position: relative;
  z-index: 1;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.pills input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pill {
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.65rem 1.3rem;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  user-select: none;
}
.pill:hover { color: var(--paper); border-color: rgba(229, 161, 68, 0.4); }
.pills input[type="radio"]:checked + .pill {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}
.pills input[type="radio"]:focus-visible + .pill {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form select,
.lead-form textarea {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
  resize: vertical;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--muted-dark); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(229, 161, 68, 0.55);
}
.lead-form .contact-btn {
  border: none;
  cursor: pointer;
  align-self: center;
  margin-top: 0.6rem;
}
.lead-form .contact-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.hp { display: none !important; }
.form-status {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.4em;
}
.form-status.good { color: var(--amber); }
.form-status a { color: var(--amber); text-decoration: none; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-dark);
  line-height: 1.7;
}
.form-note a { color: var(--muted); text-decoration: none; }
.form-note a:hover { color: var(--paper); }
.grecaptcha-badge { visibility: hidden; } /* allowed by Google when the reCAPTCHA disclosure text is shown instead */

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--hairline);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1.1rem 0 1.2rem;
  max-width: 30ch;
}
.footer-email {
  color: var(--amber);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.footer-email:hover { color: var(--paper); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.32rem 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem 1.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
