/* ===== DecantSS — Editorial Dark Warm ===== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..600&family=Inter:wght@300;400;500&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg:       #0E0B09;
  --bg-2:     #15110E;
  --bg-3:     #1E1813;
  --bg-4:     #241E18;
  --cream:    #F2EBDA;
  --cream-2:  #DDD2BC;
  --cream-3:  #8B7E68;
  --accent:   #C49A5B;
  --accent-2: #A07D40;
  --accent-r: #C5301E;
  --gold:     #C49A5B;
  --line:     rgba(242,235,218,.1);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.76,0,.24,1);
  --nav-h:    72px;
  --r:        12px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ─── SPLASH ─── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
  transition: opacity .6s var(--ease-out), clip-path .6s var(--ease-out);
  animation: splashSafe .01s 4.5s forwards;
}
@keyframes splashSafe { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
.splash-logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: .08em;
  color: var(--cream);
}
.splash-logo em { font-style: italic; color: var(--gold); }
.splash-bar {
  width: 120px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.splash-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: barLoad 1.8s var(--ease-out) forwards;
}
@keyframes barLoad { to { transform: scaleX(1); } }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  transition: background .4s var(--ease-out), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(14,11,9,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .06em;
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-2);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--cream-2);
  transition: color .25s;
}
.nav-cart-btn:hover { color: var(--cream); }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 600;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.cart-count.has-items { opacity: 1; transform: scale(1); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 99;
  background: rgba(14,11,9,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.nav-mobile.is-open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  color: var(--cream-2);
  transition: color .25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.06);
  transition: transform 8s var(--ease-out);
}
.hero.is-loaded .hero-bg img { transform: scale(1); }
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,11,9,.55) 0%, rgba(14,11,9,.3) 50%, rgba(14,11,9,.85) 100%);
  z-index: 1;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(196,154,91,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(197,48,30,.1) 0%, transparent 60%);
  animation: meshBreath 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes meshBreath {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.05); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-inline: clamp(1.5rem, 6vw, 4rem);
  max-width: 780px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .3s var(--ease-out) forwards;
}
.hero-meta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-wrap: balance;
  color: var(--cream);
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .9s .5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: var(--cream-2);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 2.8rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .7s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .9s var(--ease-out) forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
  opacity: 0;
  animation: fadeUp .8s 1.3s var(--ease-out) forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.4); opacity: .5; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .28s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: #d4aa6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,91,.3);
}
.btn-ghost {
  border: 1px solid rgba(242,235,218,.3);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-cart {
  background: var(--gold);
  color: var(--bg);
  width: 100%;
  padding: .75rem 1rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
}
.btn-cart:hover {
  background: #d4aa6a;
  transform: translateY(-1px);
}
.btn-cart.added {
  background: #4a7c59;
  color: #fff;
}

/* ─── SECTION BASE ─── */
section { position: relative; }
.section-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.kicker {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  display: block;
}
.section-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── MARQUEE ─── */
.marquee-strip {
  padding-block: 1.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.marquee-item::after {
  content: "◆";
  font-size: .5rem;
  color: var(--gold);
}

/* ─── CONCEPT ─── */
.concept {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg-2);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.concept-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.concept-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.concept-img-wrap:hover img { transform: scale(1.04); }
.concept-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,154,91,.12), transparent 60%);
  pointer-events: none;
}
.concept-text { padding-inline: 0; }
.concept-text .section-title { text-align: left; margin-bottom: 1.4rem; }
.concept-text p {
  color: var(--cream-2);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.concept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.concept-pill {
  padding: .4rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--cream-3);
  background: var(--bg-3);
}

/* ─── SIZES SECTION ─── */
.sizes-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg);
}
.sizes-hero-img {
  margin-bottom: 2.5rem;
  border-radius: var(--r);
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
}
.sizes-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
}
.sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.size-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.size-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(196,154,91,.08), transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.size-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.size-card:hover::before { opacity: 1; }
.size-ml {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .4rem;
}
.size-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 1.2rem;
}
.size-desc {
  font-size: .88rem;
  color: var(--cream-2);
  margin-bottom: 1.6rem;
}
.size-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
}
.size-price span {
  font-family: "Inter", sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--cream-3);
  vertical-align: super;
  margin-right: .1rem;
}
.size-price small {
  font-family: "Inter", sans-serif;
  font-size: .7rem;
  color: var(--cream-3);
  letter-spacing: .08em;
}

/* ─── CATALOG ─── */
.catalog-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg-2);
}
.catalog-filter-row {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .45rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  background: var(--bg-3);
  transition: all .25s;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(196,154,91,.08); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.product-card:hover {
  border-color: rgba(196,154,91,.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-4);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: var(--gold);
  color: var(--bg);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 3px;
}
.product-body {
  padding: 1.2rem 1.2rem 1.4rem;
}
.product-brand {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.product-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.product-family {
  font-size: .75rem;
  color: var(--cream-3);
  margin-bottom: 1.1rem;
}
.size-selector {
  display: flex;
  gap: .4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.size-opt {
  padding: .32rem .65rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--cream-3);
  background: var(--bg-2);
  transition: all .2s;
  cursor: pointer;
}
.size-opt:hover { border-color: var(--gold); color: var(--gold); }
.size-opt.selected { border-color: var(--gold); color: var(--bg); background: var(--gold); }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}
.product-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
}
.product-price sup {
  font-family: "Inter", sans-serif;
  font-size: .65rem;
  color: var(--cream-3);
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.cart-overlay.is-open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  width: min(420px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--line);
}
.cart-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
}
.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream-3);
  font-size: 1.1rem;
  transition: all .25s;
}
.cart-close:hover { border-color: var(--cream); color: var(--cream); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--cream-3);
  font-size: .9rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: .9rem;
  align-items: center;
  background: var(--bg-3);
  border-radius: 8px;
  padding: .9rem;
  border: 1px solid var(--line);
}
.cart-item-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
}
.cart-item-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: .9rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: .2rem;
}
.cart-item-meta { font-size: .72rem; color: var(--cream-3); }
.cart-item-remove {
  color: var(--cream-3);
  font-size: .9rem;
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--accent-r); }
.cart-footer {
  padding: 1.6rem 1.8rem;
  border-top: 1px solid var(--line);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.cart-total-label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); }
.cart-total-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
}
.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s;
}
.btn-checkout:hover { background: #d4aa6a; }

/* ─── CONTACT ─── */
.contact-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info .section-title { text-align: left; margin-bottom: 1.4rem; }
.contact-info p { color: var(--cream-2); line-height: 1.8; margin-bottom: 1.8rem; }
.contact-links { display: flex; flex-direction: column; gap: .8rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--cream-2);
  font-size: .9rem;
  transition: color .25s;
}
.contact-link:hover { color: var(--gold); }
.contact-link-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  transition: border-color .25s;
}
.contact-link:hover .contact-link-icon { border-color: var(--gold); }

.contact-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .75rem 1rem;
  color: var(--cream);
  font: inherit;
  font-size: .9rem;
  transition: border-color .25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-2); }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
}
.form-submit:hover { background: #d4aa6a; transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0 1rem;
  color: var(--gold);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
}

/* ─── CHECKOUT MODAL ─── */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.checkout-overlay.is-open { opacity: 1; pointer-events: all; }

.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 211;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  width: min(600px, 96vw);
  max-height: 88vh;
  border-radius: 16px;
  border: 1px solid var(--line);
  transform: translate(-50%, -46%) scale(.95);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform .4s var(--ease-out), opacity .35s, visibility 0s .4s;
  overflow: hidden;
}
.checkout-modal.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: transform .4s var(--ease-out), opacity .35s, visibility 0s 0s;
}

.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.6rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.checkout-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem; font-weight: 300; color: var(--cream);
}
.checkout-back {
  font-size: .75rem; letter-spacing: .08em; color: var(--cream-3);
  transition: color .2s;
}
.checkout-back:hover { color: var(--gold); }

.checkout-body {
  flex: 1; overflow-y: auto;
  padding: 1.4rem 1.6rem 2rem;
}

.checkout-section {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.checkout-section:last-of-type { border-bottom: none; }
.checkout-section-title {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.checkout-summary { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.checkout-summary-item {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--cream-2);
}
.checkout-summary-item span:last-child { color: var(--cream); font-weight: 500; }
.checkout-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .8rem; border-top: 1px solid var(--line);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3);
}
.checkout-total-row strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem; font-weight: 300; color: var(--cream);
}

.payment-options { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1rem; }
.payment-opt {
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: .88rem; color: var(--cream-2);
}
.payment-opt input[type="radio"] { display: none; }
.payment-opt.active,
.payment-opt:has(input:checked) {
  border-color: var(--gold);
  background: rgba(196,154,91,.07);
  color: var(--cream);
}
.payment-opt-icon { font-size: 1.1rem; }
.payment-note {
  font-size: .78rem; color: var(--cream-3); line-height: 1.7;
  background: rgba(196,154,91,.06);
  border: 1px solid rgba(196,154,91,.2);
  border-radius: 8px; padding: .8rem 1rem;
}
.payment-note strong { color: var(--gold); }

.btn-confirm-order {
  width: 100%; padding: 1.1rem;
  background: var(--gold); color: var(--bg);
  border-radius: 6px;
  font-size: .88rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: background .25s, transform .2s;
}
.btn-confirm-order:hover { background: #d4aa6a; transform: translateY(-1px); }
.btn-confirm-order:disabled { opacity: .6; pointer-events: none; }

.checkout-confirmed {
  text-align: center; padding: 3rem 1rem;
}
.confirmed-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(74,124,89,.2);
  border: 1px solid #4a7c59;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #6abf82;
  margin: 0 auto 1.5rem;
}
.checkout-confirmed h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem; font-weight: 300; color: var(--cream);
  margin-bottom: .8rem;
}
.checkout-confirmed p { color: var(--cream-2); line-height: 1.8; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: .6rem;
}
.footer-brand-name em { font-style: italic; color: var(--gold); }
.footer-tagline { font-size: .85rem; color: var(--cream-3); margin-bottom: 1.4rem; line-height: 1.7; }
.footer-social { display: flex; gap: .7rem; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--cream-3);
  transition: all .25s;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-col-links a { font-size: .85rem; color: var(--cream-3); transition: color .25s; }
.footer-col-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: var(--cream-3);
}
.credits-note a { color: var(--cream-3); transition: color .25s; }
.credits-note a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .concept-grid { grid-template-columns: 1fr; }
  .concept-img-wrap { aspect-ratio: 16/9; order: -1; }

  .sizes-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sizes-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (hover: none) {
  .product-card:hover { transform: none; }
  .size-card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-ghost:hover { transform: none; }
}
