:root {
  --paper: #f4efe8;
  --paper-2: #ebe1d5;
  --cream: #fbf8f3;
  --sand: #d9c5ae;
  --taupe: #a88669;
  --brown: #745944;
  --brown-deep: #4a382c;
  --ink: #28231f;
  --muted: #746d66;
  --line: rgba(67, 50, 38, .16);
  --shadow: 0 28px 70px rgba(58, 43, 31, .12);
  --max: 1440px;
  --serif: "Times New Roman", Times, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 16px;
  background: var(--brown-deep);
  color: #fffaf5;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 28px;
  background: rgba(244, 239, 232, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(244, 239, 232, .97); }
.brand img, .footer-brand img { width: 168px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(24px, 4vw, 54px); }
.desktop-nav a, .header-phone { font-size: 13px; letter-spacing: .04em; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 5px;
  height: 1px;
  background: var(--brown-deep);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-phone { justify-self: end; font-weight: 600; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 1px; background: var(--ink); margin: 7px 0; }
.mobile-menu { display: none; }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0 clamp(20px, 4vw, 64px) clamp(42px, 6vw, 90px);
}
.hero-copy {
  align-self: center;
  padding: clamp(62px, 8vw, 124px) clamp(26px, 7vw, 100px) clamp(54px, 7vw, 100px) 0;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}
h1, h2, h3 { margin-top: 0; font-weight: 400; }
h1, h2 { font-family: var(--serif); }
h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.25vw, 102px);
  line-height: .93;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 640px;
  margin: 0 0 34px;
  color: #5f5852;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--brown-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--brown-deep); color: white; }
.btn-light { background: transparent; }
.btn-light:hover { background: var(--brown-deep); color: white; }
.hero-meta {
  margin-top: clamp(48px, 7vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero-meta div { display: grid; gap: 3px; padding-right: 14px; }
.hero-meta strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.hero-meta span { color: var(--muted); font-size: 11px; }
.hero-visual { padding: 40px 0 0; min-width: 0; }
.hero-photo-wrap {
  position: relative;
  height: 100%;
  min-height: 640px;
  overflow: hidden;
  background: #d9d4d1 url('assets/images/main-blur.webp') center/cover;
  box-shadow: var(--shadow);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 1.1s cubic-bezier(.2,.7,.1,1);
}
.hero-photo-wrap:hover .hero-photo { transform: scale(1.018); }
.hero-badge {
  position: absolute;
  left: 26px; bottom: 26px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 11px 14px;
  background: rgba(248,244,238,.9);
  backdrop-filter: blur(10px);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-badge span { color: var(--brown); font-weight: 700; }

.section-shell { max-width: var(--max); margin: 0 auto; padding-left: clamp(20px, 4vw, 64px); padding-right: clamp(20px, 4vw, 64px); }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: clamp(90px, 12vw, 170px);
  background: var(--line);
  border: 1px solid var(--line);
}
.principles article { background: var(--cream); padding: clamp(28px, 4vw, 54px); }
.principles span { color: var(--taupe); font-size: 11px; letter-spacing: .18em; }
.principles h3 { margin: 52px 0 12px; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 34px); }
.principles p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.catalog { padding-bottom: clamp(100px, 13vw, 180px); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head h2, .video-copy h2, .editorial-copy h2, .contact-inner h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.section-head > p { margin: 0; max-width: 500px; color: var(--muted); line-height: 1.7; }
.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--line);
}
.category-tab {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: transparent;
  padding: 12px 17px;
  cursor: pointer;
  font-size: 12px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.category-tab:hover, .category-tab.active { background: var(--brown-deep); border-color: var(--brown-deep); color: #fff; }
.catalog-summary {
  padding: 36px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.catalog-kicker { display: block; color: var(--brown); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 7px; }
.catalog-summary h3 { margin: 0; font-family: var(--serif); font-size: clamp(27px, 3vw, 42px); }
.catalog-summary p { margin: 0; color: var(--brown); font-size: 14px; white-space: nowrap; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px 16px; }
.product-card { cursor: pointer; }
.product-image {
  position: relative;
  aspect-ratio: .76;
  overflow: hidden;
  background: #e8e1da;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.1,1); }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-pill {
  position: absolute;
  left: 12px; top: 12px;
  padding: 7px 9px;
  background: rgba(249,246,241,.9);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-info { padding: 14px 3px 0; }
.product-info h4 { margin: 0 0 4px; font-family: var(--serif); font-size: 21px; font-weight: 400; }
.product-info p { margin: 0; color: var(--muted); font-size: 12px; }
.product-price { display: block; margin-top: 9px; font-size: 13px; font-weight: 700; }

.editorial {
  max-width: 1600px;
  margin: 0 auto clamp(100px, 13vw, 180px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--paper-2);
}
.editorial-photo { min-height: 760px; }
.editorial-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.editorial-copy { align-self: center; padding: clamp(48px, 8vw, 125px); }
.editorial-copy h2 { margin-bottom: 32px; }
.editorial-copy > p:not(.eyebrow) { max-width: 590px; margin: 0 0 32px; color: #61584f; line-height: 1.8; }
.text-link { display: inline-flex; gap: 16px; align-items: center; border-bottom: 1px solid var(--ink); padding-bottom: 7px; font-size: 13px; }
.text-link span { font-size: 18px; }

.video-section {
  display: grid;
  grid-template-columns: 1fr .72fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  padding-bottom: clamp(110px, 14vw, 190px);
}
.video-copy { max-width: 660px; }
.video-copy h2 { margin-bottom: 28px; }
.video-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; font-size: 17px; }
.video-note { margin-top: 30px; color: var(--brown); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.video-frame { max-width: 540px; width: 100%; justify-self: end; position: relative; padding: 15px; background: var(--cream); box-shadow: var(--shadow); }
.video-frame::before { content: ""; position: absolute; inset: -28px 35% 45% -45px; border: 1px solid var(--sand); z-index: -1; }
.video-frame video { width: 100%; aspect-ratio: 9/16; display: block; object-fit: cover; background: #222; }

.lookbook { padding-bottom: clamp(105px, 13vw, 180px); }
.lookbook-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 14px; }
.lookbook-grid figure { margin: 0; overflow: hidden; background: #ddd; }
.lookbook-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lookbook-grid figure:hover img { transform: scale(1.025); }
.lookbook-wide { grid-column: span 2; grid-row: span 2; }

.stores { padding-bottom: clamp(110px, 13vw, 180px); }
.store-list { border-top: 1px solid var(--line); }
.store-card {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, padding .2s ease;
}
.store-card:hover { background: rgba(255,255,255,.35); padding: 0 16px; }
.store-card > span { color: var(--taupe); font-family: var(--serif); font-size: 22px; }
.store-card h3 { margin: 0 0 6px; font-family: var(--serif); font-size: clamp(23px, 2.4vw, 34px); }
.store-card p { margin: 0; color: var(--muted); font-size: 13px; }
.store-card a { font-size: 12px; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.hours-note { margin: 20px 0 0; color: var(--muted); font-size: 11px; }

.contact-banner { padding-bottom: 80px; }
.contact-inner {
  background: var(--brown-deep);
  color: #fffaf4;
  padding: clamp(42px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}
.contact-inner .eyebrow { color: #d9c3ab; }
.contact-inner h2 { margin-bottom: 16px; }
.contact-inner p { margin: 0; color: #d8cec4; }
.contact-actions { display: grid; gap: 12px; text-align: right; }
.contact-actions a { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 32px); }

.footer {
  padding: 54px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.footer-brand img { width: 145px; }
.footer-nav { display: flex; gap: 26px; font-size: 12px; }
.footer > p { justify-self: end; margin: 0; color: var(--muted); font-size: 11px; }

.modal { display: none; position: fixed; inset: 0; z-index: 100; padding: 24px; place-items: center; }
.modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(26,21,17,.62); backdrop-filter: blur(6px); }
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(930px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--cream);
  box-shadow: 0 40px 120px rgba(0,0,0,.3);
}
.modal-image-wrap { min-height: 620px; background: #e1d9d2; }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { align-self: center; padding: clamp(34px, 6vw, 70px); }
.modal-category { color: var(--brown); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.modal-content h3 { margin: 14px 0 8px; font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); }
.modal-price { margin-bottom: 24px; font-weight: 700; }
.modal-content p { color: var(--muted); line-height: 1.75; margin-bottom: 30px; }
.modal-close { position: absolute; right: 14px; top: 10px; z-index: 2; width: 42px; height: 42px; border: 0; background: rgba(250,247,242,.9); font-size: 30px; line-height: 1; cursor: pointer; }

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

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 170px 1fr 170px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { min-height: auto; }
  .hero-copy { padding-right: 40px; }
  .hero-meta { grid-template-columns: 1fr; gap: 15px; }
  .hero-meta div { grid-template-columns: 110px 1fr; align-items: baseline; }
  .editorial-photo { min-height: 620px; }
  .lookbook-grid { grid-auto-rows: 220px; }
}

@media (max-width: 860px) {
  .announcement { font-size: 9px; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; }
  .brand img { width: 142px; }
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .mobile-menu {
    position: fixed;
    top: 106px; left: 0; right: 0;
    z-index: 49;
    display: grid;
    transform: translateY(-130%);
    transition: transform .35s ease;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { padding: 14px 4px; border-bottom: 1px solid var(--line); }

  .hero { grid-template-columns: 1fr; padding-top: 0; }
  .hero-copy { order: 2; padding: 48px 0 70px; }
  .hero-visual { order: 1; padding-top: 18px; }
  .hero-photo-wrap { min-height: 0; height: auto; aspect-ratio: 4/5; }
  h1 { font-size: clamp(55px, 14vw, 86px); }
  .hero-meta { grid-template-columns: repeat(3, 1fr); }
  .hero-meta div { display: grid; grid-template-columns: 1fr; }

  .principles { grid-template-columns: 1fr; }
  .principles h3 { margin-top: 28px; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .catalog-summary { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial { grid-template-columns: 1fr; }
  .editorial-photo { min-height: 0; aspect-ratio: 4/5; }
  .video-section { grid-template-columns: 1fr; }
  .video-frame { justify-self: start; max-width: 430px; }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
  .store-card { grid-template-columns: 52px 1fr; padding: 18px 0; }
  .store-card a { grid-column: 2; justify-self: start; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-actions { text-align: left; }
  .footer { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; }
  .footer > p { justify-self: start; }
  .modal-dialog { grid-template-columns: 1fr; }
  .modal-image-wrap { min-height: 0; aspect-ratio: 4/5; max-height: 52vh; }
}

@media (max-width: 560px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-copy { padding-top: 38px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta div { grid-template-columns: 120px 1fr; }
  .section-shell { padding-left: 16px; padding-right: 16px; }
  .section-head h2, .video-copy h2, .editorial-copy h2, .contact-inner h2 { font-size: clamp(40px, 13vw, 58px); }
  .product-grid { gap: 24px 10px; }
  .product-info h4 { font-size: 18px; }
  .lookbook-grid { grid-auto-rows: 180px; gap: 8px; }
  .store-card { grid-template-columns: 36px 1fr; }
  .contact-actions a { overflow-wrap: anywhere; }
  .footer { padding-left: 16px; padding-right: 16px; }
  .modal { padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
