@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #0f2f26;
  --green-light: #17483a;
  --gold: #d6ae55;
  --cream: #f5f0e6;
  --white: #ffffff;
  --ink: #121212;
  --muted: #6c6c6c;
  --line: rgba(18,18,18,.12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  padding: 0 max(24px, calc((100vw - var(--max))/2));
  background: rgba(245,240,230,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .12em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
}
.main-nav a:hover { color: var(--green-light); }
.menu-toggle { display:none; border:0; background:none; font-size:1.5rem; }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--green);
  color: var(--white);
}
.hero-content {
  padding: 10vw max(24px, calc((100vw - var(--max))/2));
  padding-right: 5vw;
  align-self: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .2em;
}
.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(3.2rem, 7vw, 7.7rem);
  line-height: .88;
  letter-spacing: -.065em;
}
.hero-copy {
  max-width: 620px;
  margin: 32px 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.btn {
  display:inline-flex;
  min-height: 50px;
  padding: 0 24px;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
}
.btn-primary { background:var(--gold); color:var(--ink); }
.btn-secondary { border-color:rgba(255,255,255,.45); color:var(--white); }
.hero-art {
  min-height: 540px;
  background: linear-gradient(145deg, var(--green-light), #071913);
  display:grid;
  place-items:center;
  padding:40px;
}
.cap-placeholder {
  width:min(500px, 90%);
  aspect-ratio: 1.25;
  border-radius: 52% 52% 22% 22%;
  background: linear-gradient(150deg, #222, #080808);
  box-shadow: 0 40px 90px rgba(0,0,0,.35);
  display:grid;
  place-items:center;
  align-content:center;
  gap:12px;
  transform: rotate(-6deg);
}
.cap-placeholder span { font-weight:900; font-size:clamp(2rem,5vw,4.6rem); color:var(--gold); }
.cap-placeholder small { color:rgba(255,255,255,.48); }

.benefits {
  max-width: var(--max);
  margin: 0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-left:1px solid var(--line);
}
.benefits article {
  padding:30px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.benefits strong { display:block; margin-bottom:10px; font-size:.9rem; }
.benefits span { color:var(--muted); font-size:.9rem; line-height:1.6; }

.section { max-width:var(--max); margin:0 auto; padding:110px 24px; }
.section-heading { max-width:700px; margin-bottom:44px; }
.section h2 {
  margin:0 0 18px;
  font-size:clamp(2.4rem,5vw,5rem);
  line-height:1;
  letter-spacing:-.05em;
}
.section-heading p:last-child, .story-content p, .contact-section p {
  color:var(--muted);
  line-height:1.8;
}
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.product-card {
  background:var(--white);
  border:1px solid var(--line);
  overflow:hidden;
  transition:.25s ease;
}
.product-card:hover { transform:translateY(-5px); box-shadow:0 18px 42px rgba(0,0,0,.09); }
.product-image {
  aspect-ratio:1/1;
  background:linear-gradient(145deg,#e9e5dc,#c7c0b2);
  display:grid;
  place-items:center;
  color:#777;
  font-weight:700;
  text-align:center;
  padding:20px;
}
.product-card-body { padding:22px; }
.product-card h3 { margin:0 0 8px; font-size:1.2rem; }
.product-meta { color:var(--muted); font-size:.9rem; }
.product-bottom { margin-top:20px; display:flex; align-items:center; justify-content:space-between; gap:15px; }
.product-price { font-weight:900; }
.product-link { font-weight:800; text-decoration:none; border-bottom:1px solid; }

.story-section {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
  align-items:center;
}
.story-visual {
  aspect-ratio:1;
  background:var(--green);
  display:grid;
  place-items:center;
}
.story-badge {
  width:65%;
  aspect-ratio:1;
  border:2px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-content:center;
  text-align:center;
  color:var(--gold);
}
.story-badge span,.story-badge small { letter-spacing:.2em; }
.story-badge strong { font-size:clamp(3rem,7vw,6rem); line-height:1; }

.lookbook-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:18px; }
.photo-placeholder {
  min-height:420px;
  background:linear-gradient(145deg,#d7d0c1,#a99e8b);
  display:grid;
  place-items:center;
  color:#655f54;
  font-weight:700;
}
.photo-placeholder:first-child { min-height:580px; }

.contact-section {
  max-width:none;
  padding-left:max(24px,calc((100vw - var(--max))/2));
  padding-right:max(24px,calc((100vw - var(--max))/2));
  background:var(--green);
  color:var(--white);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
}
.contact-section p { color:rgba(255,255,255,.7); }
.social-links { display:flex; flex-wrap:wrap; gap:12px; }
.social-link {
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.38);
  text-decoration:none;
  font-weight:800;
}
.social-link:hover { background:var(--gold); color:var(--ink); border-color:var(--gold); }

.site-footer {
  padding:36px max(24px,calc((100vw - var(--max))/2));
  display:flex;
  justify-content:space-between;
  gap:25px;
  align-items:end;
  background:#071913;
  color:var(--white);
}
.site-footer p { margin:8px 0 0; color:rgba(255,255,255,.55); font-size:.85rem; }

@media (max-width: 850px) {
  .menu-toggle { display:block; }
  .main-nav {
    display:none;
    position:absolute;
    top:74px;
    left:0;
    right:0;
    padding:22px;
    background:var(--cream);
    border-bottom:1px solid var(--line);
    flex-direction:column;
  }
  .main-nav.open { display:flex; }
  .hero { grid-template-columns:1fr; }
  .hero-content { padding:90px 24px; }
  .hero-art { min-height:420px; }
  .benefits, .product-grid { grid-template-columns:1fr; }
  .story-section { grid-template-columns:1fr; gap:42px; }
  .lookbook-grid { grid-template-columns:1fr; }
  .photo-placeholder,.photo-placeholder:first-child { min-height:360px; }
  .contact-section { align-items:flex-start; flex-direction:column; }
  .site-footer { align-items:flex-start; flex-direction:column; }
}
