
:root{
  --bg:#f4efe8;
  --bg-soft:#fbf7f2;
  --card:#fffdfa;
  --ink:#12110f;
  --muted:#5d564d;
  --line:rgba(18,17,15,.12);
  --gold:#b88e4b;
  --gold-deep:#8a6734;
  --shadow:0 18px 50px rgba(27,23,17,.08);
  --radius:28px;
  --radius-sm:18px;
  --container:min(1180px, calc(100vw - 32px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184,142,75,.12), transparent 28%),
    linear-gradient(180deg, #f7f3ee 0%, var(--bg) 45%, #f9f5ef 100%);
  line-height:1.6;
}
img{display:block; width:100%; height:auto}
a{color:inherit; text-decoration:none}
button, input, select, textarea{font:inherit}

.container{width:var(--container); margin:0 auto}
.section{padding:88px 0}
.section-heading{max-width:760px}
.section-heading.center{margin:0 auto 40px; text-align:center}
.section-heading.compact{margin-top:72px}
.section-heading h2{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(2rem, 4vw, 3.5rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin:10px 0 18px;
}
.section-heading p{color:var(--muted); margin:0}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:var(--gold-deep);
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-size:.74rem;
}
.eyebrow::before{
  content:"";
  width:28px;
  height:1px;
  background:currentColor;
  display:inline-block;
}

.announcement{
  background:#11100e;
  color:#f7f3ee;
  padding:12px 16px;
  display:flex;
  justify-content:center;
  gap:24px;
  align-items:center;
  text-align:center;
  font-size:.92rem;
}
.announcement a{
  color:#e9c88c;
  font-weight:700;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(14px);
  background:rgba(248,244,238,.72);
  border-bottom:1px solid transparent;
  transition:all .25s ease;
}
.site-header.scrolled{border-bottom-color:var(--line); box-shadow:0 10px 24px rgba(0,0,0,.04)}
.nav-wrap{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  min-height:82px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-mark{
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:16px;
  display:grid;
  place-items:center;
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.75rem;
  color:var(--gold-deep);
  background:rgba(255,255,255,.75);
}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-text strong{font-size:1.02rem; letter-spacing:.02em}
.brand-text small{color:var(--muted); margin-top:4px}
.site-nav{
  display:flex;
  justify-content:center;
  gap:30px;
}
.site-nav a{
  color:var(--muted);
  font-weight:600;
  position:relative;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-10px;
  height:2px;
  transform:scaleX(0);
  transform-origin:center;
  background:var(--gold);
  transition:transform .2s ease;
}
.site-nav a:hover::after, .site-nav a.active::after{transform:scaleX(1)}
.site-nav a.active, .site-nav a:hover{color:var(--ink)}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  padding:8px;
  margin-left:auto;
}
.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:var(--ink);
  margin:5px 0;
  transition:.2s ease;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover{transform:translateY(-1px); box-shadow:0 10px 18px rgba(0,0,0,.06)}
.button-primary{
  background:linear-gradient(135deg, var(--gold) 0%, #d9b77c 100%);
  color:#1f1a14;
}
.button-secondary{
  border-color:var(--line);
  background:rgba(255,255,255,.72);
}
.nav-cta{white-space:nowrap}

.hero{padding-top:64px; position:relative; overflow:hidden}
.hero::after{
  content:"";
  position:absolute;
  inset:120px -120px auto auto;
  width:300px; height:300px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,142,75,.18), transparent 68%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}
.hero-copy h1{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(2.8rem, 6vw, 5.8rem);
  line-height:.96;
  letter-spacing:-.055em;
  margin:16px 0 24px;
}
.lead{
  font-size:1.1rem;
  max-width:60ch;
  color:var(--muted);
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 26px}
.hero-pills{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero-pills li{
  padding:12px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.68);
  border:1px solid var(--line);
  font-weight:600;
  color:var(--muted);
}

.hero-collage{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:end;
}
.hero-card{
  background:rgba(255,255,255,.7);
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-card img{height:100%; object-fit:cover; min-height:240px}
.hero-card-tall{grid-row:span 2; min-height:560px}
.hero-card-wide{grid-column:span 2; min-height:220px}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:28px;
}
.stat-card{
  background:rgba(255,255,255,.76);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}
.stat-number{
  display:block;
  font-size:2rem;
  font-weight:800;
  color:var(--gold-deep);
  margin-bottom:8px;
}
.stat-card p{margin:0; color:var(--muted)}

.pain-points{
  background:#11100e;
  color:#f7f3ee;
}
.pain-points .section-heading p{color:rgba(247,243,238,.75)}
.pain-points .eyebrow{color:#e7c78c}
.pain-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.pain-card{
  padding:28px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}
.pain-card span{
  display:inline-grid;
  place-items:center;
  width:42px;height:42px;
  border-radius:50%;
  background:rgba(231,199,140,.16);
  color:#f3d59e;
  font-weight:800;
  margin-bottom:16px;
}
.pain-card h3{margin:0 0 8px}
.pain-card p{margin:0; color:rgba(247,243,238,.72)}

.story-grid, .sustainability-grid, .network-grid, .feature-split, .showcase-grid, .contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.story-visual, .sustainability-visual, .contact-visual{
  position:relative;
}
.story-visual img, .sustainability-visual img, .contact-visual img{
  border-radius:32px;
  box-shadow:var(--shadow);
}
.story-badge{
  position:absolute;
  left:24px; bottom:24px;
  background:rgba(17,16,14,.78);
  color:#f7f3ee;
  padding:18px 20px;
  border-radius:20px;
  backdrop-filter:blur(8px);
}
.story-badge strong{display:block; font-size:1rem}
.story-badge span{display:block; opacity:.82; font-size:.95rem}

.two-card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:28px;
}
.info-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.info-card h3{margin-top:0; margin-bottom:12px}
.info-card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.info-card li+li{margin-top:10px}

.muted-band{
  background:
    linear-gradient(180deg, rgba(184,142,75,.08), rgba(184,142,75,0)),
    rgba(255,255,255,.34);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.feature-stack{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.feature-stack img{
  border-radius:28px;
  min-height:320px;
  object-fit:cover;
  box-shadow:var(--shadow);
}
.feature-list{
  display:grid;
  gap:16px;
  margin-top:24px;
}
.feature-list > div{
  padding:20px 22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
}
.feature-list h3{margin:0 0 6px}
.feature-list p{margin:0; color:var(--muted)}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  position:relative;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow);
}
.service-card span{
  color:var(--gold-deep);
  font-weight:800;
  letter-spacing:.06em;
}
.service-card h3{
  margin:10px 0 8px;
  font-size:1.1rem;
}
.service-card p{margin:0; color:var(--muted)}

.chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.chip{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  font-weight:700;
  color:var(--muted);
}

.showcase{
  background:linear-gradient(180deg, rgba(255,255,255,.44), rgba(184,142,75,.04));
}
.quote-card{
  padding:22px 24px;
  border-left:4px solid var(--gold);
  background:rgba(255,255,255,.78);
  border-radius:0 24px 24px 0;
  margin:24px 0;
}
.quote-card p{margin:0; font-size:1.05rem; color:var(--ink)}
.craft-image{
  max-width:360px;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.lookbook-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.lookbook-card{
  margin:0;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.lookbook-card img{aspect-ratio:4/5; object-fit:cover}
.lookbook-card figcaption{
  padding:14px 16px;
  font-weight:700;
  color:var(--muted);
  font-size:.92rem;
}

.quality{
  position:relative;
}
.quality-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:start;
}
.quality-visuals{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.quality-photo{
  margin:0;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.quality-photo img{aspect-ratio:4/5; object-fit:cover}
.quality-pillars{
  display:grid;
  gap:14px;
}
.quality-pillars article{
  padding:22px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.quality-pillars h3{margin:0 0 8px}
.quality-pillars p{margin:0; color:var(--muted)}

.timeline{
  margin-top:20px;
  display:grid;
  gap:16px;
}
.timeline-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:14px;
  align-items:start;
}
.timeline-item span{
  width:54px; height:54px;
  display:grid; place-items:center;
  border-radius:18px;
  background:#11100e;
  color:#f7f3ee;
  font-weight:800;
}
.timeline-item h4{margin:2px 0 6px}
.timeline-item p{margin:0; color:var(--muted)}

.reporting-grid{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.report-card{
  padding:24px;
  border-radius:24px;
  background:var(--card);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.report-card span{
  color:var(--gold-deep);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.report-card h3{margin:10px 0 8px}
.report-card p{margin:0; color:var(--muted)}

.insight-panel{
  margin-top:28px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:center;
  padding:22px;
  border-radius:32px;
  background:#11100e;
  color:#f7f3ee;
  box-shadow:var(--shadow);
}
.insight-panel .eyebrow{color:#f0cf97}
.insight-panel h3{
  font-family:Georgia, "Times New Roman", serif;
  font-size:2rem;
  line-height:1.1;
  margin:10px 0 14px;
}
.insight-copy p:last-child{color:rgba(247,243,238,.72)}
.insight-visual img{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
}

.check-list{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:28px;
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color:var(--gold-deep);
  font-weight:800;
}

.dark-section{
  background:#171512;
  color:#f7f3ee;
}
.dark-section .eyebrow{color:#efc987}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.metric-card{
  padding:28px 24px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}
.metric-card strong{
  display:block;
  font-size:2rem;
  color:#efc987;
  margin-bottom:6px;
}
.metric-card span{color:rgba(247,243,238,.78)}

.case-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.case-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.case-card img{aspect-ratio:4/5; object-fit:cover}
.case-body{padding:20px 20px 22px}
.case-body h3{margin:0 0 6px}
.case-subtitle{
  margin:0 0 14px;
  color:var(--gold-deep);
  font-weight:700;
}
.case-body ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.case-body li+li{margin-top:10px}

.city-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:22px 0;
}
.city-list span{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.8);
  font-weight:700;
}
.network-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.network-mini-grid img, .network-map img{
  border-radius:24px;
  box-shadow:var(--shadow);
}
.network-map img{border:1px solid var(--line)}

.contact-section{
  background:linear-gradient(180deg, rgba(184,142,75,.12), rgba(255,255,255,.36));
}
.contact-card{
  padding:34px;
  border-radius:32px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-intro{
  margin-top:0;
  color:var(--muted);
}
.contact-details{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:24px 0 26px;
}
.contact-details div{
  padding:16px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}
.contact-details span{
  display:block;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--gold-deep);
  font-weight:700;
  margin-bottom:6px;
}
.contact-details strong, .contact-details a{font-size:1rem; word-break:break-word}

.contact-form{
  display:grid;
  gap:14px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
label{
  display:grid;
  gap:8px;
  font-weight:700;
}
input, select, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  background:#fff;
  color:var(--ink);
}
textarea{resize:vertical}
.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.form-note{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
}

.site-footer{
  padding:28px 0 40px;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:auto 1fr 1.3fr;
  gap:24px;
  align-items:center;
}
.footer-links{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
}
.footer-links a{color:var(--muted); font-weight:700}
.footer-note p{
  margin:0;
  color:var(--muted);
  text-align:right;
}
.footer-note p + p{margin-top:6px}
.footer-brand .brand-mark{width:42px;height:42px;font-size:1.45rem}

.back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:48px; height:48px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.9);
  color:var(--ink);
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
  opacity:0;
  pointer-events:none;
  transform:translateY(12px);
  transition:.2s ease;
}
.back-to-top.visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 1080px){
  .hero-grid, .story-grid, .feature-split, .showcase-grid, .quality-grid, .sustainability-grid, .network-grid, .contact-grid, .insight-panel{
    grid-template-columns:1fr;
  }
  .hero-card-tall{min-height:420px}
  .service-grid, .case-grid, .metrics-grid{grid-template-columns:repeat(2,1fr)}
  .lookbook-grid{grid-template-columns:repeat(3,1fr)}
  .pain-grid{grid-template-columns:repeat(2,1fr)}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr; text-align:center}
  .footer-note p{text-align:center}
}

@media (max-width: 820px){
  .announcement{
    flex-direction:column;
    gap:6px;
  }
  .nav-wrap{
    grid-template-columns:auto auto;
  }
  .nav-toggle{display:block}
  .site-nav{
    position:absolute;
    left:16px; right:16px; top:82px;
    display:none;
    flex-direction:column;
    gap:14px;
    padding:18px;
    border-radius:24px;
    background:rgba(248,244,238,.98);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
  }
  .site-nav.open{display:flex}
  .nav-cta{display:none}
  .story-badge{position:static; margin-top:16px}
  .two-card-grid, .form-row, .contact-details, .quality-visuals{grid-template-columns:1fr}
  .lookbook-grid{grid-template-columns:repeat(2,1fr)}
  .reporting-grid{grid-template-columns:1fr}
}

@media (max-width: 560px){
  .section{padding:72px 0}
  .hero-copy h1{font-size:2.7rem}
  .hero-collage{grid-template-columns:1fr 1fr}
  .hero-card-tall{grid-row:span 1; min-height:280px}
  .hero-card-wide{grid-column:span 2}
  .pain-grid, .service-grid, .case-grid, .metrics-grid, .hero-stats, .lookbook-grid{grid-template-columns:1fr}
  .button{width:100%}
  .hero-actions, .form-actions{display:grid}
  .contact-card{padding:24px}
}
