@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ───────────────────────────────────────────── */
:root {
  --bg:       #F7F4EF;
  --bg-alt:   #EDEAE3;
  --dark:     #111111;
  --text:     #1A1A1A;
  --muted:    #8A8A8A;
  --copper:   #C09050;
  --copper-h: #A87A3C;
  --border:   #DDD9D1;
  --white:    #FFFFFF;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, -apple-system, sans-serif;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max:      1440px;
  --nav-h:    72px;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 60px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.3s;
}
.nav--hero { color: var(--white); }
.nav--hero .nav__links a { color: rgba(255,255,255,0.8); }
.nav--hero .nav__cart { color: rgba(255,255,255,0.8); }
.nav.scrolled {
  background: rgba(247, 244, 239, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__cart { color: var(--text); }
.nav__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav__logo sup { font-size: 0.55em; letter-spacing: 0; vertical-align: super; font-style: italic; }
.nav__links {
  display: flex;
  gap: 48px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
}
.nav__links a:hover { color: var(--copper) !important; }
.nav__actions { display: flex; align-items: center; gap: 24px; }
.nav__cart {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, opacity 0.2s;
}
.nav__cart:hover { color: var(--copper) !important; }
.cart-count {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: var(--copper);
  color: white;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
}
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s;
}

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--copper); }
.nav__mobile-close {
  position: absolute;
  top: 24px; right: 60px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  opacity: 0.7;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--light { background: var(--white); color: var(--dark); }
.btn--light:hover { background: var(--copper); color: var(--white); border-color: var(--copper); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: var(--copper); }
.btn--copper { background: var(--copper); color: var(--white); }
.btn--copper:hover { background: var(--copper-h); }
.btn--outline { border-color: var(--dark); color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }
.btn--outline-white { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s var(--ease);
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.15) 50%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  color: var(--white);
  max-width: 760px;
}
.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  display: block;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--white);
}
.hero__title em { font-style: italic; }
.hero__sub {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 380px;
  margin-bottom: 40px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
}

/* ─── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee__track { display: flex; gap: 0; }
.marquee__item {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 40px;
}
.marquee__item .dot { color: var(--copper); margin: 0 -20px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECTION BASE ────────────────────────────────────────── */
.section { padding: 100px 80px; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--white); }
.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}
.section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.section__header p { max-width: 500px; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ─── PRODUCT CARDS (homepage) ────────────────────────────── */
.products-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--bg-alt);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__info {
  padding: 28px 32px 36px;
}
.product-card__series {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
  display: block;
}
.product-card__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.product-card__price {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 20px;
}
.product-card__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.product-card__link::after { content: '→'; font-size: 12px; }
.product-card:hover .product-card__link { color: var(--copper); gap: 12px; }

/* ─── BRAND STORY ─────────────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.story__img-wrap { overflow: hidden; }
.story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.story__img-wrap:hover .story__img { transform: scale(1.03); }
.story__content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story__eyebrow { display: block; margin-bottom: 20px; }
.story__title { margin-bottom: 28px; }
.story__text { color: var(--muted); margin-bottom: 14px; line-height: 1.85; font-size: 14.5px; }
.story__cta { margin-top: 36px; }
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.story__stat { padding-right: 32px; }
.story__stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.story__stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-item { overflow: hidden; cursor: pointer; background: var(--bg-alt); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.g-span-7 { grid-column: span 7; }
.g-span-5 { grid-column: span 5; }
.g-span-4 { grid-column: span 4; }
.g-span-3 { grid-column: span 3; }
.g-span-6 { grid-column: span 6; }
.g-tall { aspect-ratio: 4/5; }
.g-sq  { aspect-ratio: 1; }
.g-wide { aspect-ratio: 16/9; }
.g-port { aspect-ratio: 3/4; }

/* ─── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: var(--dark);
  color: var(--white);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-strip__text { max-width: 600px; }
.cta-strip__eyebrow { display: block; color: var(--copper); margin-bottom: 16px; }
.cta-strip__title { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.cta-strip__sub { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.8; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--dark); color: var(--white); padding: 80px 80px 48px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.85;
  max-width: 250px;
  margin-bottom: 36px;
}
.footer__col-title {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--copper); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
}

/* ─── PAGE HEADER (non-hero pages) ───────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 80px) 80px 64px;
  border-bottom: 1px solid var(--border);
}
.page-header__eyebrow { display: block; margin-bottom: 16px; }
.page-header__title { margin-bottom: 16px; }
.page-header__sub { color: var(--muted); font-size: 14px; max-width: 480px; line-height: 1.8; }

/* ─── SHOP PAGE ───────────────────────────────────────────── */
.shop-content { padding: 64px 80px 100px; }
.shop-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.shop-card { cursor: pointer; }
.shop-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 20px;
  position: relative;
}
.shop-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.shop-card:hover .shop-card__img { transform: scale(1.05); }
.shop-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.shop-card:hover .shop-card__overlay { transform: translateY(0); }
.shop-card__series {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
  display: block;
}
.shop-card__name { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 8px; }
.shop-card__price { font-size: 13.5px; color: var(--muted); }
.shop-card__colors {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.color-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

/* ─── PRODUCT DETAIL ──────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.product-gallery {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  overflow: hidden;
}
.product-gallery__main {
  flex: 1;
  overflow: hidden;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.product-gallery__thumbs {
  display: flex;
  gap: 3px;
  height: 90px;
  flex-shrink: 0;
}
.product-gallery__thumb {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.25s;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.active { opacity: 1; }
.product-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-info {
  padding: 72px 80px 80px;
  overflow-y: auto;
}
.product-info__breadcrumb {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-info__breadcrumb a:hover { color: var(--copper); }
.product-info__breadcrumb span { color: var(--border); }
.product-info__series {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.product-info__title { margin-bottom: 16px; font-size: clamp(2rem, 3.5vw, 2.8rem); }
.product-info__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--text);
}
.product-info__desc {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 14.5px;
}
.product-info__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  display: block;
}
.color-selector { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.color-swatch { display: flex; flex-direction: column; align-items: center; gap: 7px; cursor: pointer; }
.color-swatch__dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  transition: all 0.2s;
  border: 2px solid transparent;
}
.color-swatch.active .color-swatch__dot { border-color: var(--text); transform: scale(1.15); }
.color-swatch:hover .color-swatch__dot { transform: scale(1.1); }
.color-swatch__label {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  max-width: 52px;
  line-height: 1.3;
}
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  transition: background 0.2s;
  color: var(--text);
}
.qty-btn:hover { background: var(--bg-alt); }
.qty-input {
  width: 56px; height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: none;
  font-size: 14px; font-weight: 500;
  color: var(--text);
}
.qty-input:focus { outline: none; }
.add-to-cart {
  width: 100%;
  padding: 18px;
  background: var(--dark);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  margin-bottom: 12px;
  font-family: var(--sans);
}
.add-to-cart:hover { background: var(--copper); }
.wishlist-btn {
  width: 100%;
  padding: 17px;
  border: 1px solid var(--border);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  font-family: var(--sans);
}
.wishlist-btn:hover { border-color: var(--dark); color: var(--text); }
.product-specs { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-key { color: var(--muted); }
.spec-val { font-weight: 500; }
.product-desc-full { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.product-desc-full p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-bottom: 12px; }

/* ─── RELATED PRODUCTS ────────────────────────────────────── */
.related { padding: 80px; border-top: 1px solid var(--border); }
.related__title { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 48px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.contact-img-wrap { overflow: hidden; }
.contact-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-form-wrap { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.contact-info { margin-bottom: 56px; }
.contact-info p { color: var(--muted); font-size: 14px; line-height: 1.85; margin-top: 14px; }
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}
.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--dark); }
.form-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  outline: none;
  resize: none;
  height: 110px;
  transition: border-color 0.2s;
}
.form-textarea:focus { border-color: var(--dark); }
.form-success {
  display: none;
  padding: 20px;
  background: #f0f7f0;
  border: 1px solid #c3e0c3;
  color: #2d6a2d;
  font-size: 13px;
  margin-top: 16px;
}

/* ─── CART PAGE ───────────────────────────────────────────── */
.cart-page { padding: calc(var(--nav-h) + 80px) 80px 100px; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.cart-title { font-family: var(--serif); font-size: 2.2rem; margin-bottom: 48px; }
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item__img { aspect-ratio: 1; object-fit: cover; background: var(--bg-alt); width: 90px; height: 90px; }
.cart-item__name { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 6px; }
.cart-item__variant { font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.cart-item__qty { display: flex; align-items: center; gap: 12px; }
.cart-item__qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: background 0.2s;
  background: none;
  color: var(--text);
}
.cart-item__qty-btn:hover { background: var(--bg-alt); }
.cart-item__qty-num { font-size: 14px; font-weight: 500; width: 24px; text-align: center; }
.cart-item__remove {
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  cursor: pointer; margin-top: 8px; display: block;
  background: none; border: none; padding: 0;
  font-family: var(--sans); transition: color 0.2s;
}
.cart-item__remove:hover { color: var(--text); }
.cart-item__price { font-family: var(--serif); font-size: 1.2rem; text-align: right; }
.cart-summary {
  background: var(--bg-alt);
  padding: 40px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.cart-summary__title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 32px; }
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.cart-summary__total { font-weight: 600; font-size: 15px; }
.cart-summary__btn { margin-top: 24px; width: 100%; padding: 18px; }
.cart-summary__note { font-size: 11.5px; color: var(--muted); margin-top: 16px; line-height: 1.7; text-align: center; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty__title { font-family: var(--serif); font-size: 2rem; margin-bottom: 16px; }
.cart-empty__text { color: var(--muted); margin-bottom: 36px; }

/* ─── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 82vw; max-height: 86vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 28px; right: 36px;
  color: white; font-size: 30px; cursor: pointer;
  opacity: 0.6; transition: opacity 0.2s;
  background: none; border: none; line-height: 1;
}
.lightbox__close:hover { opacity: 1; }

/* ─── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 40px; right: 40px;
  background: var(--dark); color: var(--white);
  padding: 16px 26px;
  font-size: 13px;
  transform: translateY(16px);
  opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 200;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .section { padding: 80px 48px; }
  .nav { padding: 0 48px; }
  .footer { padding: 64px 48px 40px; }
  .shop-content { padding: 48px 48px 80px; }
  .page-header { padding: calc(var(--nav-h) + 60px) 48px 48px; }
  .product-info { padding: 56px 48px 64px; }
  .related { padding: 64px 48px; }
  .cart-page { padding: calc(var(--nav-h) + 60px) 48px 80px; }
  .contact-form-wrap { padding: 60px 48px; }
  .cta-strip { padding: 80px 48px; }
}
@media (max-width: 900px) {
  .section { padding: 64px 32px; }
  .nav { padding: 0 32px; }
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .hero__content { padding: 0 32px 64px; }
  .hero__scroll { display: none; }
  .products-home { grid-template-columns: 1fr; gap: 2px; }
  .products-home .product-card__img-wrap { aspect-ratio: 16/9; }
  .story { grid-template-columns: 1fr; }
  .story__img-wrap { height: 360px; }
  .story__content { padding: 48px 32px; }
  .story__stats { grid-template-columns: repeat(3, 1fr); }
  .footer { padding: 64px 32px 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: relative; height: auto; top: 0; }
  .product-gallery__main { height: 55vw; }
  .product-gallery__thumbs { height: 70px; }
  .product-info { padding: 48px 32px 64px; }
  .related { padding: 48px 32px; }
  .related-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .shop-content { padding: 40px 32px 64px; }
  .page-header { padding: calc(var(--nav-h) + 48px) 32px 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-img-wrap { height: 300px; }
  .contact-form-wrap { padding: 48px 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-page { padding: calc(var(--nav-h) + 48px) 32px 64px; }
  .cta-strip { flex-direction: column; padding: 64px 32px; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-span-7 { grid-column: span 6; }
  .g-span-5 { grid-column: span 6; }
  .g-span-4 { grid-column: span 3; }
  .g-span-3 { grid-column: span 3; }
  .g-span-6 { grid-column: span 6; }
  .g-wide { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .section { padding: 48px 20px; }
  .nav { padding: 0 20px; }
  .hero__content { padding: 0 20px 52px; }
  .marquee { display: none; }
  .products-home .product-card__img-wrap { aspect-ratio: 4/3; }
  .story__stats { grid-template-columns: 1fr; }
  .footer { padding: 48px 20px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-content { padding: 32px 20px 48px; }
  .page-header { padding: calc(var(--nav-h) + 40px) 20px 32px; }
  .product-gallery__main { height: 75vw; }
  .product-info { padding: 36px 20px 48px; }
  .related { padding: 36px 20px; }
  .cart-page { padding: calc(var(--nav-h) + 40px) 20px 48px; }
  .contact-form-wrap { padding: 40px 20px; }
  .cta-strip { padding: 48px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-span-7, .g-span-5, .g-span-4, .g-span-3, .g-span-6 { grid-column: span 2; }
}
