:root {
  --ink: #2b1714;
  --ink-2: #55342c;
  --cream: #fff8f2;
  --sand: #f7eadf;
  --rose: #ead1c1;
  --copper: #b07052;
  --copper-dark: #8a523d;
  --white: #ffffff;
  --muted: #7b6259;
  --line: rgba(43, 23, 20, .12);
  --shadow: 0 24px 70px rgba(43, 23, 20, .14);
  --radius: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--ink); color: var(--white); padding: 10px 16px; border-radius: 10px; z-index: 20; }
.skip-link:focus { left: 12px; }
.sr-only { 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: 10;
  background: rgba(255, 248, 242, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 35px rgba(43,23,20,.06); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.site-nav { display: flex; align-items: center; gap: 28px; color: var(--ink-2); font-weight: 700; font-size: 15px; }
.site-nav a { position: relative; }
.site-nav a::after { content:""; position:absolute; left:0; bottom:-8px; height:2px; width:0; background:var(--copper); transition: width .2s ease; }
.site-nav a:hover::after { width:100%; }
.nav-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta { background: var(--ink); color: var(--cream); }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(43,23,20,.15); }
.btn.primary { background: var(--ink); color: var(--cream); }
.btn.secondary { background: rgba(255,255,255,.65); color: var(--ink); }
.menu-toggle { display:none; width:46px; height:46px; border-radius:50%; border:1px solid var(--line); background: var(--white); align-items:center; justify-content:center; flex-direction:column; gap:5px; }
.menu-toggle span:not(.sr-only) { width:20px; height:2px; background: var(--ink); display:block; border-radius:10px; }

.hero {
  padding: 82px 0 56px;
  background-image: linear-gradient(120deg, rgba(255,248,242,.94), rgba(247,234,223,.86)), url('texture.svg');
  background-size: cover;
  overflow: hidden;
}
.hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items:center; }
.eyebrow { margin:0 0 14px; text-transform: uppercase; letter-spacing:.13em; font-size: 12px; font-weight: 900; color: var(--copper-dark); }
h1, h2, h3, p { margin-top:0; }
h1 { font-size: clamp(48px, 8vw, 92px); line-height: .92; letter-spacing: -.065em; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1; letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.1; margin-bottom: 10px; }
.hero-text { font-size: 20px; color: var(--ink-2); max-width: 620px; }
.hero-actions { display:flex; flex-wrap:wrap; gap: 12px; margin: 32px 0; }
.hero-stats { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin:0; max-width: 500px; }
.hero-stats div { background: rgba(255,255,255,.58); border:1px solid var(--line); border-radius: 22px; padding: 18px; }
.hero-stats dt { font-size: 28px; line-height: 1; font-weight: 900; }
.hero-stats dd { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.hero-media { position:relative; border-radius: 44px; overflow:hidden; box-shadow: var(--shadow); min-height: 640px; background: var(--rose); }
.hero-media img { width:100%; height: 640px; object-fit: cover; }
.hero-media::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(43,23,20,.33), transparent 55%); pointer-events:none; }
.floating-card { position:absolute; z-index:2; left: 26px; right:26px; bottom:26px; padding:20px; border-radius: 24px; background: rgba(255,248,242,.9); backdrop-filter: blur(16px); box-shadow: 0 16px 50px rgba(43,23,20,.18); }
.floating-card strong, .floating-card small { display:block; }
.floating-card small { color: var(--muted); margin-top: 2px; }
.rating, .stars { color: var(--copper-dark); letter-spacing:.12em; font-size: 14px; }

.brand-strip { padding: 18px 0; background: var(--ink); color: var(--cream); }
.strip-grid { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; text-align:center; font-weight: 800; font-size: 14px; letter-spacing:.04em; }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.narrow { max-width: 640px; }
.product-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.product-card { background: var(--white); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: 0 16px 40px rgba(43,23,20,.07); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(43,23,20,.12); }
.product-card > img { width:100%; aspect-ratio: 1 / 1.12; object-fit:cover; background: var(--sand); }
.product-content { padding: 22px; }
.product-content p { color: var(--muted); }
.product-content .tag { color: var(--copper-dark); font-size: 12px; text-transform:uppercase; letter-spacing:.12em; font-weight:900; margin-bottom:8px; }
.product-content a, .text-link { color: var(--copper-dark); font-weight: 900; display:inline-flex; align-items:center; gap: 8px; }
.product-content a::after, .text-link::after { content:"→"; transition: transform .2s ease; }
.product-content a:hover::after, .text-link:hover::after { transform: translateX(4px); }

.fit-section { background: #fff1e8; }
.fit-grid { display:grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items:center; }
.fit-image { border-radius: 38px; overflow:hidden; box-shadow: var(--shadow); min-height: 620px; }
.fit-image img { width:100%; height:620px; object-fit:cover; }
.fit-copy > p:not(.eyebrow) { font-size:18px; color: var(--ink-2); }
.feature-list { display:grid; gap: 16px; margin-top: 30px; }
.feature-list div { display:grid; grid-template-columns: 54px 1fr; gap: 6px 16px; align-items:start; background: rgba(255,255,255,.58); border:1px solid var(--line); border-radius: 24px; padding: 20px; }
.feature-list span { grid-row: 1 / 3; width: 44px; height:44px; border-radius:50%; display:grid; place-items:center; background: var(--ink); color: var(--cream); font-weight:900; }
.feature-list h3, .feature-list p { margin:0; }
.feature-list p { color: var(--muted); }

.lookbook-grid { display:grid; grid-template-columns: .86fr 1.14fr; gap: 26px; align-items: stretch; }
.lookbook-copy { background: var(--ink); color: var(--cream); border-radius: 36px; padding: clamp(34px, 6vw, 62px); display:flex; flex-direction:column; justify-content:center; }
.lookbook-copy .eyebrow { color: #f1cdb4; }
.lookbook-copy p { color: rgba(255,248,242,.8); font-size: 18px; }
.lookbook-copy .text-link { color: #f1cdb4; }
.lookbook-grid img { width:100%; min-height: 520px; height:100%; object-fit:cover; border-radius: 36px; box-shadow: var(--shadow); }

.care-section { background: var(--sand); }
.care-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.care-grid article { background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 26px; min-height: 240px; }
.care-icon { width: 54px; height:54px; border-radius: 18px; display:grid; place-items:center; margin-bottom: 28px; background: #f0d3bf; color: var(--ink); font-size: 26px; }
.care-grid p { color: var(--muted); }

.review-section { background: var(--cream); }
.review-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.review-card { background: var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 16px 40px rgba(43,23,20,.06); }
.review-card p { font-size: 18px; color: var(--ink-2); }
.review-card span { color: var(--muted); font-weight: 800; }

.contact-section { background: linear-gradient(135deg, #fff8f2, #f1d7c5); }
.contact-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items:start; }
.contact-copy > p:not(.eyebrow) { color: var(--ink-2); font-size:18px; }
.contact-cards { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 30px; }
.contact-cards a { background: rgba(255,255,255,.66); border:1px solid var(--line); border-radius: 22px; padding: 18px; }
.contact-cards strong, .contact-cards span { display:block; }
.contact-cards span { color: var(--muted); font-size: 14px; margin-top: 4px; word-break: break-word; }
.contact-form { background: var(--white); border:1px solid var(--line); border-radius: 34px; padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.contact-form label { display:grid; gap: 8px; color: var(--ink-2); font-weight: 800; margin-bottom: 16px; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; border:1px solid var(--line); background: #fffaf6; border-radius: 16px; padding: 14px 15px; outline:none; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--copper); box-shadow: 0 0 0 4px rgba(176,112,82,.14); }
.contact-form button { width:100%; border:0; margin-top: 6px; cursor:pointer; }
.form-note { color: var(--muted); font-size: 13px; margin: 14px 0 0; }

.site-footer { background: #21100e; color: var(--cream); padding: 58px 0 24px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 32px; }
.footer-grid p, .footer-grid a { color: rgba(255,248,242,.72); }
.footer-grid h3 { font-size:16px; margin-bottom: 12px; }
.footer-grid div:nth-child(2) a { display:block; margin: 8px 0; }
.footer-bottom { border-top:1px solid rgba(255,248,242,.16); margin-top: 36px; padding-top: 20px; display:flex; justify-content:space-between; gap:18px; color: rgba(255,248,242,.62); font-size:14px; }

@media (max-width: 980px) {
  .menu-toggle { display:flex; }
  .site-nav { position:absolute; top:82px; left:20px; right:20px; display:none; flex-direction:column; align-items:flex-start; gap: 14px; padding: 22px; border-radius: 22px; background: var(--white); box-shadow: var(--shadow); border:1px solid var(--line); }
  .site-nav.is-open { display:flex; }
  .nav-cta { display:none; }
  .hero-grid, .fit-grid, .lookbook-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .hero-media, .hero-media img, .fit-image, .fit-image img { min-height: auto; height: auto; }
  .product-grid, .care-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .strip-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--container)); }
  .nav-wrap { min-height: 72px; }
  .site-nav { top:72px; }
  .hero-actions, .hero-stats, .product-grid, .care-grid, .review-grid, .contact-cards, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { display:grid; }
  .btn { width:100%; }
  .section { padding: 68px 0; }
  .hero-media { border-radius: 30px; }
  .floating-card { left: 16px; right: 16px; bottom: 16px; }
  .strip-grid { grid-template-columns: 1fr; }
  .lookbook-grid img { min-height: 360px; }
  .footer-bottom { flex-direction:column; }
}
