/* ==========================================================================
   Sky Star — theme styles
   Night-sky navy · date gold · desert cream · Fraunces + Inter
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --navy-950:#0A1B2A; --navy-900:#0E2438; --navy-800:#14324C; --navy-700:#1C4364;
  --gold-600:#B9862E; --gold-500:#D9A441; --gold-400:#E4B966; --gold-300:#EFD09B;
  --cream-50:#FCFAF4; --cream-100:#FAF6EE; --cream-200:#F1E9D8; --cream-300:#E3D8BE;
  --green-700:#2F6B4F;
  --ink-900:#1B2A38; --ink-700:#3D4C5C; --ink-500:#5D6B7A;

  --font-display:'Fraunces', Georgia, serif;
  --font-body:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:14px; --radius-lg:24px;
  --shadow-sm:0 2px 10px rgba(14,36,56,.07);
  --shadow-md:0 10px 34px rgba(14,36,56,.12);
  --shadow-lg:0 24px 60px rgba(10,27,42,.22);

  --container:1200px;
  --section-y:clamp(64px, 9vw, 112px);
  --header-h:78px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:clip; }
body {
  margin:0;
  font-family:var(--font-body);
  font-size:16.5px; line-height:1.65;
  color:var(--ink-900);
  background:var(--cream-100);
}
img, video { max-width:100%; height:auto; display:block; }
a { color:var(--navy-800); text-decoration-thickness:1px; text-underline-offset:3px; }
a:hover { color:var(--gold-600); }
h1,h2,h3,h4 { font-family:var(--font-display); font-weight:700; line-height:1.14; color:var(--navy-900); margin:0 0 .5em; letter-spacing:-.01em; }
h1 { font-size:clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size:clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size:1.22rem; font-weight:600; }
p { margin:0 0 1.1em; }
.container { max-width:var(--container); margin-inline:auto; padding-inline:clamp(18px, 4vw, 32px); }
.container--narrow { max-width:820px; }
.screen-reader-text { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.skip-link { position:absolute; left:-999px; top:0; background:var(--gold-500); color:var(--navy-950); padding:10px 18px; z-index:99; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }
:focus-visible { outline:2.5px solid var(--gold-500); outline-offset:2px; }

/* Reveal on scroll */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1; transform:none; transition:none; }
  html { scroll-behavior:auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-body); font-weight:600; font-size:.98rem;
  padding:14px 26px; border-radius:11px; text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border:1.5px solid transparent; cursor:pointer; line-height:1.2;
}
.btn svg { transition:transform .18s ease; }
.btn:hover svg { transform:translateX(3px); }
.btn--gold { background:var(--gold-500); color:var(--navy-950); box-shadow:0 6px 20px rgba(217,164,65,.35); }
.btn--gold:hover { background:var(--gold-400); color:var(--navy-950); transform:translateY(-2px); }
.btn--navy { background:var(--navy-900); color:var(--cream-100); }
.btn--navy:hover { background:var(--navy-800); color:#fff; transform:translateY(-2px); }
.btn--ghost { background:transparent; color:var(--cream-100); border-color:rgba(250,246,238,.45); }
.btn--ghost:hover { border-color:var(--gold-400); color:var(--gold-300); }
.btn--sm { padding:10px 18px; font-size:.9rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:600; letter-spacing:.17em; text-transform:uppercase;
  color:var(--gold-600); margin:0 0 14px;
}
.section--navy .eyebrow, .hero .eyebrow { color:var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(250,246,238,.92); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(14,36,56,.08);
  transition:box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow:var(--shadow-sm); }
.site-header__inner { display:flex; align-items:center; gap:28px; height:var(--header-h); }
.brand { display:flex; align-items:center; gap:11px; text-decoration:none; }
.brand__mark { width:46px; height:46px; }
.brand__text { display:flex; flex-direction:column; line-height:1.05; }
.brand__name { font-family:var(--font-display); font-weight:700; font-size:1.28rem; color:var(--navy-900); }
.brand__tag { font-size:.6rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-600); margin-top:3px; }
.site-footer .brand__name { color:var(--cream-100); }
.nav { margin-left:auto; }
.nav__list { display:flex; gap:6px; list-style:none; margin:0; padding:0; }
.nav__list a {
  display:block; padding:9px 13px; border-radius:9px;
  font-size:.95rem; font-weight:600; color:var(--ink-900); text-decoration:none;
}
.nav__list a:hover { background:var(--cream-200); color:var(--navy-900); }
.nav__list .current-menu-item > a, .nav__list .current_page_item > a { color:var(--gold-600); }
.site-header__actions { display:flex; align-items:center; gap:14px; }
.nav-toggle { display:none; background:none; border:0; padding:8px; cursor:pointer; }
.nav-toggle span { display:block; width:24px; height:2.5px; background:var(--navy-900); margin:5px 0; border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity:0; }
.nav-open .nav-toggle span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position:relative; overflow:hidden;
  background:radial-gradient(120% 90% at 78% -10%, var(--navy-700) 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  color:var(--cream-100);
}
.hero__stars {
  position:absolute; inset:0; pointer-events:none;
  background-image:url('../img/stars.svg');
  background-size:900px; opacity:.8;
}
.hero__inner {
  position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px, 6vw, 72px);
  align-items:center; padding-block:clamp(72px, 10vw, 128px) clamp(108px, 13vw, 168px);
}
.hero__title { color:var(--cream-50); margin-bottom:20px; }
.hero__title em { font-style:italic; color:var(--gold-400); }
.hero__lead { font-size:1.13rem; color:#C6CFD9; max-width:52ch; margin-bottom:30px; }
.hero__cta { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.hero__badges { display:flex; flex-wrap:wrap; gap:20px; list-style:none; margin:0; padding:0; font-size:.88rem; color:#AFBCC9; }
.hero__badges li { display:flex; align-items:center; gap:7px; }
.hero__badges svg { color:var(--gold-500); }
.hero__media { position:relative; }
.hero__arch {
  margin:0; border-radius:999px 999px var(--radius-lg) var(--radius-lg);
  overflow:hidden; border:3px solid rgba(217,164,65,.55);
  box-shadow:var(--shadow-lg); aspect-ratio:4/4.6; max-width:460px; margin-left:auto;
}
.hero__arch img { width:100%; height:100%; object-fit:cover; }
.hero__card {
  position:absolute; left:clamp(-8px, -2vw, 8px); bottom:-26px;
  background:var(--cream-50); color:var(--navy-900);
  border-radius:var(--radius); box-shadow:var(--shadow-md);
  padding:18px 24px; display:flex; flex-direction:column; max-width:230px;
  border-top:3px solid var(--gold-500);
}
.hero__card-num { font-family:var(--font-display); font-weight:700; font-size:1.6rem; }
.hero__card-label { font-size:.83rem; color:var(--ink-500); }

/* ---------- Stats band ---------- */
.stats { margin-top:-58px; position:relative; z-index:5; }
.stats__band {
  display:grid; grid-template-columns:repeat(4, 1fr);
  background:var(--cream-50); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md); padding:34px clamp(20px, 3vw, 44px); gap:18px; margin:0;
}
.stat { text-align:center; padding-inline:8px; border-right:1px solid var(--cream-300); }
.stat:last-child { border-right:0; }
.stat__num { font-family:var(--font-display); font-weight:700; font-size:clamp(1.7rem, 3vw, 2.3rem); color:var(--navy-900); margin:0; }
.stat dd { margin:6px 0 0; font-size:.9rem; color:var(--ink-500); }

/* ---------- Sections ---------- */
.section { padding-block:var(--section-y); }
.section--tint { background:var(--cream-200); }
.section--navy { background:var(--navy-900); color:#C6CFD9; position:relative; }
.section--navy h2, .section--navy h3 { color:var(--cream-100); }
.section-head { max-width:640px; margin-bottom:44px; }
.section-head p { color:var(--ink-500); }
.section--navy .section-head p { color:#AFBCC9; }
.section-foot { margin-top:40px; text-align:center; }
.dune { line-height:0; }
.dune svg { width:100%; height:64px; display:block; }
.dune--flip { transform:scaleY(-1) scaleX(-1); position:absolute; top:0; left:0; right:0; }
.section--navy.story { padding-top:calc(var(--section-y) + 40px); }

/* ---------- Grids & cards ---------- */
.grid { display:grid; gap:26px; }
.grid--products { grid-template-columns:repeat(4, 1fr); }
.grid--posts { grid-template-columns:repeat(3, 1fr); }
.grid--why { grid-template-columns:repeat(4, 1fr); }
.grid--gallery { grid-template-columns:repeat(3, 1fr); }

.product-card {
  background:var(--cream-50); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .22s ease, box-shadow .22s ease;
  display:flex; flex-direction:column;
}
.product-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.product-card__media { background:linear-gradient(160deg, var(--cream-200), var(--cream-100)); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; padding:8%; }
.product-card__media img { width:100%; height:100%; object-fit:contain; mix-blend-mode:multiply; }
.product-card__body { padding:20px 22px 22px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-card__title { margin:0; font-size:1.1rem; }
.product-card__title a { text-decoration:none; color:var(--navy-900); }
.product-card__title a:hover { color:var(--gold-600); }
.product-card__sub { font-size:.87rem; color:var(--ink-500); margin:0; }
.product-card__link {
  margin-top:auto; padding-top:10px; display:inline-flex; align-items:center; gap:7px;
  font-size:.87rem; font-weight:600; color:var(--gold-600);
}

.post-card {
  background:var(--cream-50); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .22s ease, box-shadow .22s ease;
  display:flex; flex-direction:column;
}
.post-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.post-card__media { aspect-ratio:16/10; overflow:hidden; }
.post-card__media img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.post-card:hover .post-card__media img { transform:scale(1.045); }
.post-card__body { padding:22px 24px 24px; display:flex; flex-direction:column; gap:8px; flex:1; }
.post-card__title { font-size:1.14rem; margin:0; }
.post-card__title a { text-decoration:none; color:var(--navy-900); }
.post-card__title a:hover { color:var(--gold-600); }
.post-card__excerpt { font-size:.92rem; color:var(--ink-500); margin:0; }
.post-card__link { margin-top:auto; padding-top:10px; display:inline-flex; align-items:center; gap:7px; font-size:.87rem; font-weight:600; color:var(--gold-600); }
.post-meta { font-size:.8rem; color:var(--ink-500); display:flex; gap:8px; align-items:center; }
.post-meta a { color:var(--gold-600); text-decoration:none; font-weight:600; }

.why-card {
  background:var(--cream-50); border-radius:var(--radius); padding:26px 26px 24px;
  box-shadow:var(--shadow-sm); border-top:3px solid var(--gold-500);
}
.why-card h3 { margin-bottom:8px; }
.why-card p { margin:0; font-size:.93rem; color:var(--ink-500); }

/* ---------- Story ---------- */
.story__inner { display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px, 6vw, 72px); align-items:center; }
.story__media img, .story__video { border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); width:100%; }
.story__copy p { color:inherit; }

/* ---------- Process ---------- */
.process__steps {
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:repeat(5, 1fr); gap:22px;
  counter-reset:step;
}
.process__step { position:relative; background:var(--cream-50); border-radius:var(--radius); padding:26px 22px; box-shadow:var(--shadow-sm); }
.process__num {
  display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center;
  background:var(--navy-900); color:var(--gold-400); font-family:var(--font-display); font-weight:700;
  border-radius:50%; margin-bottom:14px; font-size:1.05rem;
}
.process__step h3 { font-size:1.05rem; margin-bottom:6px; }
.process__step p { margin:0; font-size:.88rem; color:var(--ink-500); }

/* ---------- Gallery ---------- */
.gallery-item { border-radius:var(--radius); overflow:hidden; display:block; box-shadow:var(--shadow-sm); }
.gallery-item img { width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; transition:transform .5s ease; }
.gallery-item:hover img { transform:scale(1.05); }
.masonry { columns:3 300px; column-gap:22px; }
.masonry__item { display:block; margin-bottom:22px; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); break-inside:avoid; }
.masonry__item img { width:100%; transition:transform .5s ease; }
.masonry__item:hover img { transform:scale(1.04); }

/* Lightbox */
.lb {
  position:fixed; inset:0; z-index:200; background:rgba(10,27,42,.93);
  display:flex; align-items:center; justify-content:center; padding:4vmin;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.lb.open { opacity:1; pointer-events:auto; }
.lb img { max-width:92vw; max-height:88vh; border-radius:10px; box-shadow:var(--shadow-lg); width:auto; height:auto; }
.lb__close, .lb__prev, .lb__next {
  position:absolute; background:rgba(250,246,238,.12); color:var(--cream-100);
  border:0; border-radius:50%; width:48px; height:48px; font-size:1.5rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:background .2s ease;
}
.lb__close:hover, .lb__prev:hover, .lb__next:hover { background:rgba(217,164,65,.35); }
.lb__close { top:22px; right:22px; }
.lb__prev { left:22px; top:50%; transform:translateY(-50%); }
.lb__next { right:22px; top:50%; transform:translateY(-50%); }

/* ---------- Page band ---------- */
.page-band {
  background:radial-gradient(110% 130% at 70% -30%, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
  color:#C6CFD9; padding-block:clamp(52px, 7vw, 88px);
  position:relative; overflow:hidden;
}
.page-band::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:url('../img/stars.svg'); background-size:900px; opacity:.5;
}
.page-band > .container { position:relative; z-index:1; }
.page-band__title { color:var(--cream-50); margin-bottom:10px; }
.page-band__sub { max-width:62ch; color:#AFBCC9; margin:0; }
.crumbs { font-size:.85rem; color:#AFBCC9; }
.crumbs a { color:var(--gold-400); text-decoration:none; }

/* ---------- Single post ---------- */
.single-post__hero { margin:-46px 0 40px; position:relative; z-index:2; }
.single-post__hero img { border-radius:var(--radius-lg); box-shadow:var(--shadow-md); width:100%; }
.entry-content { font-size:1.05rem; }
.entry-content h2 { margin-top:1.6em; }
.entry-content h3 { margin-top:1.3em; }
.entry-content img { border-radius:var(--radius); }
.entry-content ul, .entry-content ol { padding-left:1.3em; }
.entry-content li { margin-bottom:.4em; }
.entry-content blockquote {
  border-left:3px solid var(--gold-500); background:var(--cream-200);
  margin:1.4em 0; padding:18px 24px; border-radius:0 var(--radius) var(--radius) 0;
  font-family:var(--font-display); font-size:1.1rem; color:var(--navy-800);
}
.entry-content table { width:100%; border-collapse:collapse; margin:1.4em 0; }
.entry-content th, .entry-content td { border:1px solid var(--cream-300); padding:10px 14px; text-align:left; }
.entry-content th { background:var(--cream-200); }
.single-post__foot { margin-top:52px; }
.single-post__cta {
  background:var(--navy-900); color:#C6CFD9; border-radius:var(--radius-lg);
  padding:34px 38px; display:flex; align-items:center; justify-content:space-between; gap:26px; flex-wrap:wrap;
}
.single-post__cta h2 { color:var(--cream-100); font-size:1.4rem; margin-bottom:4px; }
.single-post__cta p { margin:0; }
.pagination-wrap { margin-top:48px; text-align:center; }
.pagination-wrap .page-numbers {
  display:inline-flex; min-width:42px; height:42px; align-items:center; justify-content:center;
  padding-inline:10px; margin:0 3px; border-radius:10px; background:var(--cream-50);
  text-decoration:none; font-weight:600; color:var(--navy-900); box-shadow:var(--shadow-sm);
}
.pagination-wrap .page-numbers.current { background:var(--navy-900); color:var(--gold-400); }

/* ---------- Product single ---------- */
.product-single__grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px, 5vw, 64px); align-items:start; }
.product-single__media {
  margin:0; background:linear-gradient(160deg, var(--cream-200), var(--cream-50));
  border-radius:var(--radius-lg); padding:8%; box-shadow:var(--shadow-sm);
  position:sticky; top:calc(var(--header-h) + 20px);
}
.product-single__media img { mix-blend-mode:multiply; }
.product-single__sub { font-size:1.1rem; color:var(--ink-500); margin-top:-6px; }
.product-single__spec-title { font-size:1.2rem; margin-top:1.6em; }
.spec-table { width:100%; border-collapse:collapse; font-size:.95rem; }
.spec-table th { text-align:left; width:38%; color:var(--navy-800); }
.spec-table th, .spec-table td { padding:11px 14px; border-bottom:1px solid var(--cream-300); }
.spec-table tr:nth-child(odd) { background:var(--cream-50); }

/* ---------- Timeline ---------- */
.timeline { list-style:none; margin:0; padding:0; position:relative; max-width:720px; }
.timeline::before { content:''; position:absolute; left:11px; top:8px; bottom:8px; width:2px; background:linear-gradient(var(--gold-500), rgba(217,164,65,.15)); }
.timeline__item { position:relative; padding:0 0 30px 46px; }
.timeline__item::before {
  content:''; position:absolute; left:4px; top:6px; width:16px; height:16px;
  border-radius:50%; background:var(--gold-500); box-shadow:0 0 0 4px rgba(217,164,65,.22);
}
.timeline__year { font-family:var(--font-display); font-weight:700; color:var(--gold-400); font-size:1.15rem; display:block; margin-bottom:4px; }
.timeline__item p { margin:0; color:#C6CFD9; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(30px, 5vw, 60px); align-items:start; }
.contact-cards { display:grid; gap:18px; }
.contact-card { background:var(--cream-50); border-radius:var(--radius); padding:22px 24px; box-shadow:var(--shadow-sm); border-left:3px solid var(--gold-500); }
.contact-card h3 { font-size:1rem; margin-bottom:6px; }
.contact-card p { margin:0; color:var(--ink-700); }
.map-wrap { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); line-height:0; }

/* ---------- CTA band ---------- */
.cta-band { background:linear-gradient(120deg, var(--gold-500), var(--gold-400)); padding-block:clamp(44px, 6vw, 72px); }
.cta-band__inner { display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band h2 { color:var(--navy-950); margin-bottom:6px; }
.cta-band p { color:rgba(10,27,42,.75); margin:0; max-width:56ch; }
.cta-band .btn--gold { background:var(--navy-900); color:var(--cream-100); box-shadow:var(--shadow-md); }
.cta-band .btn--gold:hover { background:var(--navy-800); }

/* ---------- Forms (incl. TradeQuote overrides) ---------- */
input[type='text'], input[type='email'], input[type='tel'], input[type='number'], input[type='search'], select, textarea {
  width:100%; padding:13px 16px; font:inherit; color:var(--ink-900);
  background:var(--cream-50); border:1.5px solid var(--cream-300); border-radius:10px;
  transition:border-color .18s ease, box-shadow .18s ease;
}
input:focus, select:focus, textarea:focus { border-color:var(--gold-500); box-shadow:0 0 0 3px rgba(217,164,65,.18); outline:none; }
textarea { min-height:130px; resize:vertical; }
label { font-weight:600; font-size:.9rem; color:var(--navy-800); }
.search-form { display:flex; gap:10px; max-width:440px; }

.tq-form { display:grid; gap:18px; background:var(--cream-50); border-radius:var(--radius-lg); padding:clamp(24px, 4vw, 40px); box-shadow:var(--shadow-md); }
.tq-form__row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.tq-form__field { display:grid; gap:7px; }
.tq-form__hint { font-size:.8rem; color:var(--ink-500); }
.tq-form button[type='submit'] { justify-self:start; }
.tq-form__notice { border-radius:10px; padding:14px 18px; font-weight:600; }
.tq-form__notice--ok { background:#E8F4EC; color:#1F5E3B; border:1px solid #BFDECB; }
.tq-form__notice--err { background:#FBEAEA; color:#8C2B2B; border:1px solid #EFC7C7; }
.tq-captcha { display:flex; align-items:center; gap:12px; }
.tq-captcha input { max-width:110px; }
.tq-hp { position:absolute !important; left:-5000px !important; }

/* ---------- Footer ---------- */
.site-footer { background:var(--cream-100); }
.site-footer__body { background:var(--navy-900); color:#AFBCC9; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .9fr 1.1fr; gap:clamp(28px, 4vw, 56px); padding-block:clamp(48px, 6vw, 72px) 40px; }
.footer-title { color:var(--gold-400); font-size:.82rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; margin-bottom:18px; }
.footer-blurb { font-size:.92rem; margin:18px 0 20px; color:#B9C4D0; }
.footer-menu, .footer-contact { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.footer-menu a, .footer-contact a {
  color:var(--cream-100); text-decoration:none; font-size:.95rem;
  display:inline-block; transition:color .18s ease, transform .18s ease;
}
.footer-menu a:hover, .footer-contact a:hover { color:var(--gold-400); transform:translateX(3px); }
.footer-menu .current-menu-item > a, .footer-menu .current_page_item > a { color:var(--gold-400); }
.footer-contact li { font-size:.95rem; color:#B9C4D0; }
/* safety: if the fallback nav renders in the footer, keep its links light */
.site-footer .nav__list { flex-direction:column; gap:10px; }
.site-footer .nav__list a { padding:0; color:var(--cream-100); font-weight:400; font-size:.96rem; }
.site-footer .nav__list a:hover { background:none; color:var(--gold-400); }
.social { display:flex; gap:10px; list-style:none; margin:0; padding:0; }
.social a {
  display:flex; width:38px; height:38px; align-items:center; justify-content:center;
  background:rgba(250,246,238,.08); color:var(--cream-100); border-radius:10px; transition:background .2s ease, color .2s ease;
}
.social a:hover { background:var(--gold-500); color:var(--navy-950); }
.newsletter { display:flex; gap:10px; position:relative; flex-wrap:wrap; }
.newsletter input { background:rgba(250,246,238,.08); border-color:rgba(250,246,238,.2); color:var(--cream-100); min-width:0; flex:1 1 150px; }
.newsletter .btn { flex:0 0 auto; }
.newsletter input::placeholder { color:#7E8C9A; }
.footer-bottom { border-top:1px solid rgba(250,246,238,.12); }
.footer-bottom__inner { display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; padding-block:20px; font-size:.84rem; }
.footer-bottom p { margin:0; }
.footer-bottom a { color:var(--gold-400); text-decoration:none; }

/* ---------- Utilities ---------- */
.embed-wrap { position:relative; aspect-ratio:16/9; }
.embed-wrap iframe { position:absolute; inset:0; width:100%; height:100%; border-radius:var(--radius); }
.notice-soft { background:var(--cream-200); border-radius:var(--radius); padding:20px 24px; color:var(--ink-700); grid-column:1/-1; }
.wp-block-image img { border-radius:var(--radius); }
.aligncenter { margin-inline:auto; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid--products { grid-template-columns:repeat(3, 1fr); }
  .grid--why { grid-template-columns:repeat(2, 1fr); }
  .process__steps { grid-template-columns:repeat(3, 1fr); }
}
/* Collapsible nav — covers tablet portrait so the header never crowds. */
@media (max-width: 960px) {
  .site-header__inner { gap:16px; }
  .site-header__actions { margin-left:auto; }
  .nav {
    position:fixed; inset:var(--header-h) 0 auto 0; margin:0;
    background:var(--cream-50); border-bottom:1px solid var(--cream-300);
    box-shadow:var(--shadow-md); padding:14px 20px 22px; z-index:40;
    transform:translateY(-135%); transition:transform .3s cubic-bezier(.16,1,.3,1);
    max-height:calc(100dvh - var(--header-h)); overflow:auto;
  }
  .nav-open .nav { transform:none; }
  .nav__list { flex-direction:column; gap:2px; }
  .nav__list a { padding:13px 14px; font-size:1.05rem; }
  .nav-toggle { display:block; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns:1fr; padding-bottom:88px; }
  .hero__arch { margin-inline:auto; max-width:360px; }
  .hero__card { left:50%; transform:translateX(-50%); bottom:-26px; }
  .story__inner, .product-single__grid, .contact-grid { grid-template-columns:1fr; }
  .product-single__media { position:static; }
  .stats__band { grid-template-columns:repeat(2, 1fr); row-gap:24px; }
  .stat:nth-child(2) { border-right:0; }
  .grid--posts, .grid--gallery { grid-template-columns:repeat(2, 1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 620px) {
  .grid--products { grid-template-columns:repeat(2, 1fr); gap:14px; }
  .grid--posts, .grid--gallery, .grid--why { grid-template-columns:1fr; }
  .process__steps { grid-template-columns:1fr 1fr; }
  .tq-form__row { grid-template-columns:1fr; }
  .stats__band { grid-template-columns:1fr 1fr; }
  .stat { border-right:0; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .masonry { columns:2 150px; column-gap:14px; }
  .masonry__item { margin-bottom:14px; }
  .site-header__actions .btn { display:none; }
  .cta-band__inner, .single-post__cta { flex-direction:column; align-items:flex-start; }
  .footer-bottom__inner { flex-direction:column; gap:6px; text-align:center; }
  .product-single__media { padding:6%; }
}
@media (max-width: 430px) {
  .grid--products { grid-template-columns:1fr; }
  .process__steps { grid-template-columns:1fr; }
  .hero__badges { gap:10px 18px; }
  .hero__card { position:static; transform:none; margin:22px auto 0; }
  .hero__inner { padding-bottom:var(--section-y); }
}
