:root {
  --ink: #160c06;
  --choc: #2a1610;
  --mocha: #3b2215;
  --warm: #5c3a26;
  --caramel: #8a5e3e;
  --gold: #c9a85c;
  --gold2: #dbbe80;
  --gold3: #eedda8;
  --goldpale: #f7f0e0;
  --cream: #ffffff;
  --ivory: #f2eadb;
  --blush: #ede3d0;
  --mist: rgba(201, 168, 92, 0.12);
  --radius: 3px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease2: cubic-bezier(0.19, 1, 0.22, 1);
  --ease3: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══ RESET ═══ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: "Jost", sans-serif;
  border: none;
  background: none;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ═══ CURSOR ═══ */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition:
    width 0.25s var(--ease),
    height 0.25s var(--ease);
}
#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(201, 168, 92, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
body.hov #cursor {
  width: 22px;
  height: 22px;
}
body.hov #cursor-ring {
  width: 62px;
  height: 62px;
  border-color: rgba(201, 168, 92, 0.9);
}
@media (hover: none) {
  #cursor,
  #cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ═══ PROGRESS ═══ */
#pgbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold3));
  z-index: 9000;
  width: 0;
  transition: width 0.1s linear;
  will-change: width;
}

/* ═══ LAYOUT UTILS ═══ */
.wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .wrap {
    padding: 0 24px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    padding: 0 36px;
  }
}

/* ═══ TYPOGRAPHY ═══ */
.disp {
  font-family: "Bodoni Moda", serif;
}
.ser {
  font-family: "Cormorant Garamond", serif;
}
.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}
.tag-line::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.tag-line.center::before,
.tag-line.center::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.tag-line.center {
  justify-content: center;
}

h1.hero-title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(64px, 8.5vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--cream);
}
h1.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
}
.sec-title.light {
  color: var(--cream);
}
.sec-title.dark {
  color: var(--mocha);
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-body {
  font-family: "Jost", sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.9;
  font-weight: 300;
  color: var(--warm);
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease2);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease2);
}
.btn:hover::before {
  transform: translateX(0);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
}
.btn-gold::before {
  background: rgba(255, 255, 255, 0.15);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(201, 168, 92, 0.4);
}
.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
/* .btn-outline-gold::before {
  background: var(--gold);
} */
/* .btn-outline-gold:hover {
  color: var(--ink);
  transform: translateY(-3px);
} */
.btn-outline-light {
  border: 1.5px solid rgba(245, 239, 230, 0.35);
  color: var(--cream);
  background: transparent;
}
.btn-outline-light::before {
  background: rgba(245, 239, 230, 0.1);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--mocha);
  color: var(--cream);
}
.btn-dark::before {
  background: rgba(201, 168, 92, 0.15);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(42, 22, 16, 0.4);
}

/* ═══ REVEALS ═══ */
[data-r] {
  opacity: 0;
  transition:
    opacity 0.95s var(--ease2),
    transform 0.95s var(--ease2);
}
[data-r="up"] {
  transform: translateY(50px);
}
[data-r="left"] {
  transform: translateX(-60px);
}
[data-r="right"] {
  transform: translateX(60px);
}
[data-r="scale"] {
  transform: scale(0.92);
}
[data-r="fade"] {
  transform: none;
}
[data-r].on {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: clip-path 1.1s var(--ease2);
  clip-path: inset(0 0 0 0);
}
#loader.gone {
  clip-path: inset(0 0 100% 0);
}
.ld-logo {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300;
  letter-spacing: 12px;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 10px;
  overflow: hidden;
}
.ld-logo em {
  color: var(--gold);
  font-style: italic;
letter-spacing: 0px !important;
}
.ld-char {
  display: inline-block;
  padding: 0px !important;
  transform: translateY(110%);
  animation: charUp 0.75s var(--ease2) forwards;
}
.ld-tag {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  margin-top: 18px;
  opacity: 0;
  animation: fadeUp 0.6s 1.2s forwards;
}
.ld-bar-wrap {
  width: 220px;
  height: 1px;
  background: rgba(201, 168, 92, 0.15);
  margin-top: 44px;
  overflow: hidden;
}
.ld-bar {
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 0;
  animation: barGrow 2.2s 0.6s var(--ease2) forwards;
}
.ld-pct {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255);
  margin-top: 14px;
  opacity: 0;
  animation: fadeUp 0.5s 0.9s forwards;
}
@keyframes charUp {
  to {
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes barGrow {
  to {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   LANG SWITCHER
═══════════════════════════════════════════ */
#lang-sw {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px 11px 12px;
  background: rgba(22, 12, 6, 0.75);
  backdrop-filter: blur(16px);
  border: none;
  border-left: 2px solid transparent;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
}
.lb.on {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(22, 12, 6, 0.92);
}
.lb:hover:not(.on) {
  color: rgba(245, 239, 230, 0.65);
  border-left-color: rgba(201, 168, 92, 0.4);
}
.lb-flag {
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 768px) {
  #lang-sw {
    top: auto;
    bottom: 110px;
  }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition:
    background 0.5s,
    box-shadow 0.5s;
}
nav.solid {
  background: rgba(22, 12, 6, 0.95);
  backdrop-filter: blur(24px);
  box-shadow:
    0 1px 0 rgba(201, 168, 92, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.4);
}
.nav-logo {
  font-family: "Bodoni Moda", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nav-logo em {
  color: var(--gold);
  font-style: italic;
  font-size: 32px;
}
.nav-logo sup {
  font-family: "Jost", sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: rgba(201, 168, 92, 0.5);
  align-self: flex-start;
  margin-top: 8px;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.6);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.nav-links li:last-child a::after {
  display: none;
}
.nav-cta-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  background: none;
  border: none;
}
.ham span {
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  display: block;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}
.ham.open span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.open span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 690;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  clip-path: circle(0% at calc(100% - 60px) 42px);
  transition: clip-path 0.75s var(--ease2);
}
.mob-nav.open {
  clip-path: circle(160% at calc(100% - 60px) 42px);
}
.mob-nav a {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  transition:
    color 0.3s,
    opacity 0.5s var(--ease2),
    transform 0.5s var(--ease2);
}
.mob-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mob-nav.open a:nth-child(1) {
  transition-delay: 0.1s;
}
.mob-nav.open a:nth-child(2) {
  transition-delay: 0.16s;
}
.mob-nav.open a:nth-child(3) {
  transition-delay: 0.22s;
}
.mob-nav.open a:nth-child(4) {
  transition-delay: 0.28s;
}
.mob-nav.open a:nth-child(5) {
  transition-delay: 0.34s;
}
.mob-nav.open a:nth-child(6) {
  transition-delay: 0.4s;
}
.mob-nav.open a:nth-child(7) {
  transition-delay: 0.46s;
}
.mob-nav.open a:nth-child(8) {
  transition-delay: 0.52s;
}
.mob-nav a:hover {
  color: var(--gold);
}
@media (max-width: 768px) {
  nav {
    padding: 0 24px;
    height: 72px;
  }
}
@media (min-width: 769px) {
  .ham {
    display: none;
  }
  .mob-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .ham {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--ink);
}
.hero-half {
  position: relative;
  overflow: hidden;
}
.hero-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transform: scale(1.1);
  animation: heroKB 12s var(--ease) forwards;
}
.hero-half:nth-child(2) img {
  animation-delay: 0.5s;
}
.hero-half::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(22, 12, 6, 0.85) 100%
  );
}
@keyframes heroKB {
  to {
    transform: scale(1);
  }
}
.hero-divide {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 168, 92, 0.5),
    transparent
  );
  transform: translateX(-50%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
    repeat;
  background-size: 256px;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 168, 92, 0.12);
  border: 1px solid rgba(201, 168, 92, 0.28);
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 32px;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-badge span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
#hero h1 {
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
  color: rgba(255, 255, 255);
  max-width: 500px;
  margin: 28px 0 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.hero-right-stat {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.h-stat-item {
  text-align: right;
}
.h-stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.h-stat-l {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  margin-top: 4px;
}
.h-stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(201, 168, 92, 0.25);
  align-self: flex-end;
}

#hero canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s 1.6s forwards;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201, 168, 92, 0.5);
}
.hero-scroll-track {
  width: 1px;
  height: 52px;
  background: rgba(201, 168, 92, 0.2);
  overflow: hidden;
  position: relative;
}
.hero-scroll-track::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 2s var(--ease) infinite;
}
@keyframes scrollDrop {
  to {
    top: 200%;
  }
}

.hero-inds {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 5;
  display: flex;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s 1.5s forwards;
}
.hi {
  width: 24px;
  height: 2px;
  background: rgba(245, 239, 230, 0.25);
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.4s;
}
.hi.on {
  width: 48px;
  background: var(--gold);
}

@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
  }
  .hero-half:last-child {
    display: none;
  }
  .hero-divide {
    display: none;
  }
  .hero-content {
    padding: 0 24px 64px;
  }
  .hero-right-stat {
    display: none;
  }
  .hero-inds {
    left: 24px;
  }
}

/* ═══ MARQUEE ═══ */
.marquee {
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  padding: 16px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 44px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.marquee-item .sep {
  font-size: 10px;
  opacity: 0.4;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-watermark {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Bodoni Moda", serif;
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 700;
  color: rgba(59, 34, 21, 0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: center;
}
.about-imagery {
  position: relative;
  flex-shrink: 0;
}
.ab-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(22, 12, 6, 0.2);
}
.ab-inset {
  position: absolute;
  bottom: -44px;
  right: -44px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 10px solid var(--cream);
  box-shadow: 0 24px 64px rgba(22, 12, 6, 0.22);
}
.ab-badge {
  position: absolute;
  top: 44px;
  left: -32px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(201, 168, 92, 0.45);
}
.ab-badge .n {
  font-family: "Bodoni Moda", serif;
  font-size: 50px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.ab-badge .l {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  opacity: 0.7;
  margin-top: 4px;
}

.about-text {
}
.about-text .sec-title {
  margin: 14px 0 28px;
}
.about-pull {
  margin: 36px 0;
  padding: 30px 34px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--ivory), var(--cream));
}
.about-pull p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--mocha);
  line-height: 1.6;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  overflow: hidden;
}
.as {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--blush);
  transition: background 0.3s;
}
.as:last-child {
  border-right: none;
}
.as:hover {
  background: var(--ivory);
}
.as-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.as-l {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-top: 7px;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-imagery {
    display: none;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════
   QUICK INQUIRY FORM #1 (mid-page strip)
═══════════════════════════════════════════ */
.quick-form-strip {
  background: linear-gradient(135deg, var(--choc), var(--mocha));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.quick-form-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 168, 92, 0.08) 0%,
    transparent 70%
  );
}
.qf-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.qf-left h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 14px;
}
.qf-left p {
  font-size: 16px;
  color: rgb(255, 255, 255);
  font-weight: 300;
  line-height: 1.7;
}
.qf-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.qf-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 168, 92, 0.7);
  font-weight: 600;
  margin-bottom: 7px;
}
.qf-group input,
.qf-group select,
.qf-group textarea {
  width: 100%;
  background: rgba(245, 239, 230, 0.06);
  border: 1px solid rgba(201, 168, 92, 0.18);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.qf-group input:focus,
.qf-group select:focus,
.qf-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 92, 0.07);
}
.qf-group input::placeholder,
.qf-group textarea::placeholder {
  color: rgba(245, 239, 230, 0.22);
}
.qf-group textarea {
  resize: none;
  height: 100px;
}
.qf-group select {
  cursor: pointer;
  appearance: none;
  color: rgba(245, 239, 230, 0.6);
}
.qf-group select option {
  background: var(--choc);
  color: var(--cream);
}
@media (max-width: 900px) {
  .qf-inner {
    grid-template-columns: 1fr;
  }
  .qf-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   PRODUCTS BENTO
═══════════════════════════════════════════ */
#products {
  padding: 0 0 160px;
  background: var(--cream);
}
.prod-header {
  padding: 80px 0 56px;
  text-align: center;
}
.prod-header .sec-title {
  margin: 14px 0 18px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 420px 380px;
  gap: 14px;
}
.bc {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.bc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
  transform: scale(1.05);
}
.bc:hover img {
  transform: scale(1);
}
.bc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 12, 6, 0.88) 0%,
    rgba(22, 12, 6, 0.18) 55%,
    transparent 100%
  );
  transition: background 0.4s;
}
.bc:hover::after {
  background: linear-gradient(
    to top,
    rgba(22, 12, 6, 0.95) 0%,
    rgba(22, 12, 6, 0.3) 60%,
    transparent 100%
  );
}
.bc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 34px;
  z-index: 1;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
}
.bc:hover .bc-body {
  transform: translateY(0);
}
.bc-cat {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.bc-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
}
.bc:nth-child(1) .bc-title {
  font-size: clamp(26px, 2.8vw, 40px);
}
.bc:nth-child(n + 2) .bc-title {
  font-size: clamp(20px, 2.2vw, 28px);
}
.bc-desc {
  font-size: 13.5px;
  line-height: 1.68;
  color: rgba(245, 239, 230, 0.62);
  font-weight: 300;
  max-width: 320px;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.4s 0.06s,
    transform 0.4s 0.06s;
}
.bc:hover .bc-desc {
  opacity: 1;
  transform: translateY(0);
}
.bc-arr {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.4s 0.1s;
}
.bc:hover .bc-arr {
  opacity: 1;
}
.bc-feat {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius);
}
.bc1 {
  grid-column: 1/6;
  grid-row: 1/2;
}
.bc2 {
  grid-column: 6/9;
  grid-row: 1/2;
}
.bc3 {
  grid-column: 9/13;
  grid-row: 1/2;
}
.bc4 {
  grid-column: 1/5;
  grid-row: 2/3;
}
.bc5 {
  grid-column: 5/9;
  grid-row: 2/3;
}
.bc6 {
  grid-column: 9/13;
  grid-row: 2/3;
}
@media (max-width: 1100px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5,
  .bc6 {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bc1,
  .bc2,
  .bc3,
  .bc4,
  .bc5,
  .bc6 {
    grid-column: auto;
    aspect-ratio: 3/2;
  }
}

/* ═══════════════════════════════════════════
   WHY FEATURES
═══════════════════════════════════════════ */
#why {
  padding: 120px 0;
  background: var(--mocha);
  position: relative;
  overflow: hidden;
}
.why-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 92, 0.07);
  animation: ringBreath 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ringBreath {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.why-hdr {
  text-align: center;
  margin-bottom: 80px;
}
.why-hdr .tag-line {
  margin-bottom: 16px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 92, 0.1);
  border: 1px solid rgba(201, 168, 92, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.wc {
  padding: 56px 46px;
  background: var(--mocha);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.wc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.wc:hover {
  background: rgba(201, 168, 92, 0.05);
}
.wc:hover::before {
  transform: scaleX(1);
}
.wc-bg {
  position: absolute;
  right: 18px;
  top: 14px;
  font-family: "Bodoni Moda", serif;
  font-size: 96px;
  font-weight: 700;
  color: rgba(201, 168, 92, 0.05);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.wc:hover .wc-bg {
  color: rgba(201, 168, 92, 0.1);
}
.wc-ico {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(201, 168, 92, 0.09);
  border: 1px solid rgba(201, 168, 92, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
  transition:
    background 0.4s,
    transform 0.4s;
}
.wc:hover .wc-ico {
  background: rgba(201, 168, 92, 0.18);
  transform: scale(1.08) rotate(-3deg);
}
.wc h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}
.wc p {
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.85;
  color: rgba(255, 255, 255);
  font-weight: 300;
}
.wc-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  font-weight: 600;
  margin-top: 22px;
  transition:
    color 0.3s,
    gap 0.3s;
}
.wc:hover .wc-lnk {
  color: #ffffff;
  gap: 10px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   SHOWCASE SLIDER
═══════════════════════════════════════════ */
#showcase {
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}
.showcase-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.sc-ctrl {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sc-arr {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--caramel);
  transition: all 0.35s;
}
.sc-arr:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.sc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 50px;
  text-align: center;
}
.sc-vp {
  overflow: hidden;
  margin: 0 -60px;
  padding: 24px 60px;
}
.sc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.75s var(--ease2);
  will-change: transform;
}
.sc-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--ivory);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(22, 12, 6, 0.09);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s;
}
.sc-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 80px rgba(22, 12, 6, 0.2);
}
.sc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.sc-card:hover .sc-img img {
  transform: scale(1.08);
}
.sc-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: var(--radius);
}
.sc-body {
  padding: 30px 32px 38px;
}
.sc-cat {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.sc-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 13px;
  line-height: 1.2;
}
.sc-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm);
  font-weight: 300;
  margin-bottom: 24px;
}
.sc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--blush);
  padding-top: 18px;
}
.sc-orig {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--caramel);
}
.sc-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.sc-card:hover .sc-cta {
  gap: 10px;
}
@media (max-width: 1024px) {
  .sc-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .sc-card {
    flex: 0 0 calc(88% - 12px);
  }
  .sc-vp {
    margin: 0 -24px;
    padding: 24px;
  }
}

/* ═══════════════════════════════════════════
   OWNER / TEAM SECTION
═══════════════════════════════════════════ */
#owner {
  padding: 120px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.owner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(201, 168, 92, 0.06) 0%,
    transparent 60%
  );
}
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.owner-left {
}
.owner-left .sec-title {
  margin: 14px 0 26px;
}
.owner-left .sec-body {
  margin-bottom: 28px;
}
.owner-signature {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin: 36px 0 8px;
}
.owner-sig-sub {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
}
.owner-awards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.award-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--blush);
  padding: 12px 18px;
  border-radius: var(--radius);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.award-chip:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.award-chip .ico {
  font-size: 20px;
}
.award-chip .txt {
  font-size: 12px;
  font-weight: 500;
  color: var(--mocha);
  letter-spacing: 0.5px;
}

.owner-right {
  position: relative;
}
.owner-portrait-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.owner-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  box-shadow: 0 32px 90px rgba(22, 12, 6, 0.2);
}
.owner-portrait-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid rgba(201, 168, 92, 0.3);
  border-radius: 4px;
  z-index: -1;
}
.owner-caption {
  position: absolute;
  bottom: 32px;
  left: -32px;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(201, 168, 92, 0.4);
  max-width: 240px;
}
.owner-caption h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.owner-caption span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .owner-caption {
    left: auto;
    right: 16px;
    bottom: -20px;
  }
}

/* ═══════════════════════════════════════════
   SHOP IMAGES SECTION
═══════════════════════════════════════════ */
#shop {
  padding: 120px 0;
  background: var(--cream);
}
.shop-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.shop-intro h2 {
  margin: 14px 0 24px;
}
.shop-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 14px;
}
.sg {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.sg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.sg:hover img {
  transform: scale(1.06);
}
.sg-ov {
  position: absolute;
  inset: 0;
  background: rgba(22, 12, 6, 0);
  display: flex;
  align-items: flex-end;
  transition: background 0.4s;
}
.sg:hover .sg-ov {
  background: rgba(22, 12, 6, 0.45);
}
.sg-label {
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}
.sg:hover .sg-label {
  transform: translateY(0);
  opacity: 1;
}
.sg-label span {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
}
.sg-plus {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 92, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s;
}
.sg:hover .sg-plus {
  opacity: 1;
  transform: scale(1);
}
.sg1 {
  grid-column: 1;
  grid-row: 1/3;
}
.sg2 {
  grid-column: 2;
  grid-row: 1;
}
.sg3 {
  grid-column: 3;
  grid-row: 1;
}
.sg4 {
  grid-column: 2;
  grid-row: 2;
}
.sg5 {
  grid-column: 3;
  grid-row: 2;
}

.shop-upload-cta {
  margin-top: 52px;
  text-align: center;
  padding: 48px;
  background: var(--ivory);
  border: 2px dashed var(--blush);
  border-radius: 8px;
  transition: border-color 0.3s;
}
.shop-upload-cta:hover {
  border-color: var(--gold);
}
.shop-upload-cta h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--mocha);
  margin: 16px 0 10px;
}
.shop-upload-cta p {
  font-size: 15px;
  color: var(--caramel);
  font-weight: 300;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .shop-intro {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .sg1 {
    grid-column: span 2;
    aspect-ratio: 2/1;
    grid-row: auto;
  }
  .sg2,
  .sg3,
  .sg4,
  .sg5 {
    grid-column: auto;
    aspect-ratio: 1;
    grid-row: auto;
  }
}
@media (max-width: 540px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .sg1,
  .sg2,
  .sg3,
  .sg4,
  .sg5 {
    grid-column: auto;
    aspect-ratio: 4/3;
    grid-row: auto;
  }
}

/* ═══════════════════════════════════════════
   PARALLAX QUOTE
═══════════════════════════════════════════ */
#quote {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: -100px;
  z-index: 0;
}
.quote-bg img {
  width: 100%;
  height: calc(100% + 200px);
  object-fit: cover;
  filter: brightness(0.45);
}
.quote-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(22, 12, 6, 0.75),
    rgba(42, 22, 16, 0.6)
  );
}
.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}
.q-mark {
  font-family: "Bodoni Moda", serif;
  font-size: 120px;
  color: rgba(201, 168, 92, 0.2);
  line-height: 0.5;
  margin-bottom: 28px;
}
.q-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 40px;
}
.q-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}
.q-author {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
}

/* ═══════════════════════════════════════════
   GALLERY MASONRY
═══════════════════════════════════════════ */
#gallery {
  padding: 120px 0;
  background: var(--ivory);
}
.gal-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.g-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.gtab {
  background: transparent;
  border: 1px solid var(--blush);
  color: var(--caramel);
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s;
}
.gtab.on,
.gtab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.gal-masonry {
  columns: 4 200px;
  column-gap: 12px;
}
.gi {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gi img {
  width: 100%;
  display: block;
  transition: transform 0.65s var(--ease);
}
.gi:hover img {
  transform: scale(1.06);
}
.gi-ov {
  position: absolute;
  inset: 0;
  background: rgba(22, 12, 6, 0);
  display: flex;
  align-items: flex-end;
  transition: background 0.4s;
}
.gi:hover .gi-ov {
  background: rgba(22, 12, 6, 0.48);
}
.gi-lab {
  padding: 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s;
}
.gi:hover .gi-lab {
  transform: translateY(0);
  opacity: 1;
}
.gi-lab span {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
}
.gi-z {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 92, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.35s;
}
.gi:hover .gi-z {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
#lb {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10, 5, 2, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
}
#lb.open {
  display: flex;
}
.lb-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lb-box img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.lb-x {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: rgba(245, 239, 230, 0.6);
  font-size: 30px;
  transition: color 0.3s;
}
.lb-x:hover {
  color: var(--gold);
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 92, 0.15);
  border: 1px solid rgba(201, 168, 92, 0.35);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lb-btn:hover {
  background: var(--gold);
  color: var(--ink);
}
.lb-prev {
  left: -68px;
}
.lb-next {
  right: -68px;
}
.lb-cap {
  margin-top: 22px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   PROCESS TIMELINE
═══════════════════════════════════════════ */
#process {
  padding: 120px 0;
  background: var(--cream);
}
.proc-intro {
  text-align: center;
  margin-bottom: 100px;
}
.proc-intro .sec-title {
  margin: 14px 0 18px;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proc-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  z-index: 0;
}
.ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ps-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: 0 10px 40px rgba(201, 168, 92, 0.4);
  position: relative;
  transition: transform 0.4s var(--ease3);
}
.ps:hover .ps-circle {
  transform: scale(1.1);
}
.ps-circle::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 92, 0.25);
}
.ps-ico {
  font-size: 34px;
}
.ps-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.ps h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 12px;
}
.ps p {
  font-size: clamp(13px, 1.2vw, 14.5px);
  line-height: 1.82;
  color: var(--warm);
  font-weight: 300;
}
@media (max-width: 900px) {
  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .proc-steps::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .proc-steps {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   COUNTERS
═══════════════════════════════════════════ */
#counters {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--ink) 0%,
    var(--choc) 50%,
    var(--mocha) 100%
  );
  position: relative;
  overflow: hidden;
}
#counters::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 168, 92, 0.07) 0%,
    transparent 70%
  );
}
.ctr-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.ctr-item {
  padding: 48px 20px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 92, 0.1);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.ctr-item:last-child {
  border-right: none;
}
.ctr-item:hover {
  background: rgba(201, 168, 92, 0.04);
}
.ctr-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.ctr-item:hover::after {
  width: 48%;
}
.ctr-n {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.ctr-unit {
  font-size: clamp(24px, 2.8vw, 36px);
  font-family: "Cormorant Garamond", serif;
}
.ctr-l {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  margin-top: 10px;
}
.ctr-sub {
  font-size: 12px;
  color: rgba(255, 255, 255);
  margin-top: 6px;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 900px) {
  .ctr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ctr-item:nth-child(3) {
    border-right: none;
  }
  .ctr-item:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 92, 0.1);
  }
}
@media (max-width: 540px) {
  .ctr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ctr-item:nth-child(2n) {
    border-right: none;
  }
  .ctr-item:nth-child(3) {
    border-top: 1px solid rgba(201, 168, 92, 0.1);
  }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials {
  padding: 120px 0;
  background: var(--ivory);
}
.testi-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.testi-left h2 {
  color: var(--mocha);
  margin: 14px 0 22px;
}
.testi-left .sec-body {
  margin-bottom: 36px;
}
.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blush);
  cursor: pointer;
  transition: all 0.3s;
}
.t-dot.on {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}
.testi-right {
  overflow: hidden;
}
.t-track {
  display: flex;
  transition: transform 0.75s var(--ease2);
}
.t-card {
  flex: 0 0 100%;
  background: var(--cream);
  border-radius: 4px;
  padding: 54px 54px 46px;
  border: 1px solid var(--blush);
  position: relative;
  overflow: hidden;
}
.t-card::before {
  content: '"';
  font-family: "Bodoni Moda", serif;
  font-size: 220px;
  color: rgba(201, 168, 92, 0.07);
  position: absolute;
  top: -20px;
  left: 28px;
  line-height: 1;
  pointer-events: none;
}
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.t-stars span {
  color: var(--gold);
  font-size: 18px;
}
.t-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--mocha);
  line-height: 1.65;
  margin-bottom: 38px;
  position: relative;
  z-index: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--blush);
  padding-top: 28px;
}
.t-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.t-name {
  font-weight: 600;
  color: var(--mocha);
  font-size: 16px;
}
.t-role {
  font-size: 12px;
  color: var(--caramel);
  margin-top: 2px;
}
.t-country {
  font-size: 11px;
  color: var(--gold);
  margin-top: 3px;
  letter-spacing: 0.5px;
}
.t-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}
.t-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--caramel);
  transition: all 0.3s;
  background: transparent;
}
.t-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
@media (max-width: 900px) {
  .testi-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ═══════════════════════════════════════════
   WHO WE SERVE
═══════════════════════════════════════════ */
#serve {
  padding: 120px 0;
  background: var(--cream);
}
.serve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.serve-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.si {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.si img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.si:hover img {
  transform: scale(1.06);
}
.si:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.serve-content h2 {
  color: var(--mocha);
  margin: 14px 0 22px;
}
.serve-content .sec-body {
  margin-bottom: 36px;
}
.serve-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  background: var(--ivory);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--mocha);
  font-weight: 400;
  transition:
    background 0.3s,
    transform 0.3s;
}
.sl-item:hover {
  background: var(--blush);
  transform: translateX(5px);
}
.sl-item::before {
  content: "◆";
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .serve-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .serve-list {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
#partners {
  padding: 72px 0;
  background: var(--mocha);
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 92, 0.1);
}
.partners-label {
  text-align: center;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 44px;
}
.partners-belt {
  display: flex;
  width: max-content;
  animation: partScroll 32s linear infinite;
}
.partners-belt:hover {
  animation-play-state: paused;
}
.pb-item {
  padding: 0 52px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: color 0.3s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 52px;
}
.pb-item::after {
  content: "·";
  color: rgba(201, 168, 92, 0.25);
}
.pb-item:hover {
  color: var(--gold);
}
@keyframes partScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
#pricing {
  padding: 100px 0;
  background: var(--ivory);
}
.pricing-hdr {
  text-align: center;
  margin-bottom: 76px;
}
.pricing-hdr .sec-title {
  margin: 14px 0 18px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pcard {
  border: 1px solid var(--blush);
  border-radius: 4px;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s;
}
.pcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 72px rgba(22, 12, 6, 0.14);
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blush);
}
.pcard.feat {
  border-color: var(--gold);
}
.pcard.feat::before {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.p-rec {
  position: absolute;
  top: 22px;
  right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius);
}
.p-tier {
  display: inline-block;
  background: var(--ivory);
  color: var(--warm);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.pcard h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 8px;
}
.p-sub {
  font-size: 14px;
  color: var(--caramel);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.6;
}
.p-div {
  height: 1px;
  background: var(--blush);
  margin-bottom: 28px;
}
.p-list {
  list-style: none;
  margin-bottom: 42px;
}
.p-list li {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--warm);
  padding: 11px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ivory);
  font-weight: 300;
}
.p-list li:last-child {
  border-bottom: none;
}
.p-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}
.p-btn {
  display: block;
  text-align: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 15px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.35s;
}
.p-btn:hover,
.pcard.feat .p-btn {
  background: var(--gold);
  color: var(--ink);
}
@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   INLINE QUOTE FORM #2
═══════════════════════════════════════════ */
.inline-form {
  background: var(--cream);
  border: 1px solid var(--blush);
  border-radius: 4px;
  padding: 60px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.inline-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.inline-form h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 8px;
}
.inline-form p {
  font-size: 15px;
  color: var(--caramel);
  font-weight: 300;
  margin-bottom: 36px;
}
.if-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.if-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.if-group input,
.if-group select,
.if-group textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--mocha);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.if-group input:focus,
.if-group select:focus,
.if-group textarea:focus {
  border-color: var(--gold);
  background: var(--goldpale);
}
.if-group input::placeholder,
.if-group textarea::placeholder {
  color: rgba(92, 58, 38, 0.35);
}
.if-group textarea {
  resize: none;
  height: 110px;
}
.if-group.span2 {
  grid-column: span 2;
}
.if-group.span3 {
  grid-column: span 3;
}
@media (max-width: 760px) {
  .inline-form {
    padding: 36px 28px;
  }
  .if-grid {
    grid-template-columns: 1fr;
  }
  .if-group.span2,
  .if-group.span3 {
    grid-column: auto;
  }
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
#faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
}
.faq-left h2 {
  color: var(--mocha);
  margin: 14px 0 22px;
}
.faq-left .sec-body {
  margin-bottom: 36px;
}
.faq-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: var(--ivory);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  margin-bottom: 18px;
  transition: border-color 0.3s;
}
.faq-badge:hover {
  border-left-color: var(--gold2);
}
.faq-badge-ico {
  font-size: 30px;
}
.faq-badge-txt strong {
  display: block;
  font-weight: 600;
  color: var(--mocha);
  margin-bottom: 3px;
  font-size: 15px;
}
.faq-badge-txt span {
  font-size: 13px;
  color: var(--caramel);
}
.faq-item {
  border-bottom: 1px solid var(--blush);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--mocha);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover {
  color: var(--gold);
}
.fq-ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  transition: all 0.35s;
}
.faq-item.on .fq-ico {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s var(--ease);
}
.faq-item.on .faq-a {
  max-height: 400px;
}
.faq-a p {
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 1.88;
  color: var(--warm);
  padding-bottom: 24px;
  font-weight: 300;
}
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ═══════════════════════════════════════════
   CONTACT (FULL SECTION #3)
═══════════════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact-aura {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 92, 0.07),
    transparent 70%
  );
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
  position: relative;
  z-index: 1;
}
.contact-left h2 {
  color: var(--cream);
  margin: 14px 0 22px;
  line-height: 1.15;
}
.contact-left .sec-body {
  color: rgba(245, 239, 230, 0.5);
  margin-bottom: 52px;
}
.c-info {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.c-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(201, 168, 92, 0.09);
  border: 1px solid rgba(201, 168, 92, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s;
}
.c-info:hover .c-ico {
  background: rgba(201, 168, 92, 0.2);
}
.c-text strong {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 168, 92, 0.6);
  font-weight: 600;
  margin-bottom: 5px;
}
.c-text span {
  font-size: 15px;
  color: rgba(255, 255, 255);
  font-weight: 300;
  line-height: 1.6;
}
.cf-main {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.cfg label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  font-weight: 600;
  margin-bottom: 8px;
}
.cfg input,
.cfg textarea,
.cfg select {
  width: 100%;
  background: rgba(245, 239, 230, 0.05);
  border: 1px solid rgba(201, 168, 92, 0.15);
  border-radius: var(--radius);
  padding: 15px 19px;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.cfg input:focus,
.cfg textarea:focus,
.cfg select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 92, 0.07);
}
.cfg input::placeholder,
.cfg textarea::placeholder {
  color: rgba(245, 239, 230, 0.2);
}
.cfg textarea {
  resize: none;
  height: 140px;
}
.cfg select {
  cursor: pointer;
  appearance: none;
}
.cfg select option {
  background: var(--ink);
}
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   MINI FORM BANNER #4
═══════════════════════════════════════════ */
.mini-form-banner {
  background: linear-gradient(135deg, var(--goldpale), var(--ivory));
  padding: 80px 0;
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
}
.mfb-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mfb-text {
  flex: 1;
  min-width: 280px;
}
.mfb-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 8px;
}
.mfb-text p {
  font-size: 15px;
  color: #000000;
  font-weight: 300;
}
.mfb-form {
  flex: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-end;
  min-width: 300px;
}
.mfb-field {
  flex: 1;
  min-width: 160px;
}
.mfb-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  margin-bottom: 7px;
}
.mfb-field input,
.mfb-field select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--mocha);
  outline: none;
  transition: border-color 0.3s;
}
.mfb-field input:focus,
.mfb-field select:focus {
  border-color: var(--gold);
}
.mfb-field input::placeholder {
  color: rgba(92, 58, 38, 0.35);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
#wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-tip {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 8px 17px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s;
  pointer-events: none;
}
#wa:hover .wa-tip {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.42);
  transition:
    transform 0.35s var(--ease3),
    box-shadow 0.35s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 44px rgba(37, 211, 102, 0.58);
  animation: none;
}
.wa-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow:
      0 6px 28px rgba(37, 211, 102, 0.4),
      0 0 0 0 rgba(37, 211, 102, 0.28);
  }
  60% {
    box-shadow:
      0 6px 28px rgba(37, 211, 102, 0.4),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* Back to top */
#btt {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(201, 168, 92, 0.4);
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.4s var(--ease);
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(201, 168, 92, 0.55);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--choc);
  padding: 84px 0 40px;
  border-top: 1px solid rgba(201, 168, 92, 0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201, 168, 92, 0.1);
  margin-bottom: 36px;
}
.f-logo {
  font-family: "Bodoni Moda", serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--cream);
  margin-bottom: 18px;
}
.f-logo em {
  color: var(--gold);
  font-style: italic;
}
.f-brand p {
  font-size: 16px;
  line-height: 1.85;
  color: #ffffff;
  max-width: 260px;
  margin-bottom: 30px;
  font-weight: 300;
}
.f-social {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 92, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 230, 0.38);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 92, 0.1);
}
.f-col h6 {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}
.f-col ul {
  list-style: none;
}
.f-col li {
  margin-bottom: 12px;
}
.f-col a {
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0;
}
.f-col a:hover {
  color: var(--gold);
  gap: 4px;
}
.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255);
  font-weight: 300;
}
.f-legal {
  display: flex;
  gap: 20px;
}
.f-legal a {
  font-size: 12px;
  color: #ffffff;
  transition: color 0.3s;
}
.f-legal a:hover {
  color: var(--gold);
}
.f-award {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 1.5px;
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .f-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── FOUNDER STORY (inside Shop section) ── */
.founder-story {
  margin-top: 80px;
  padding: 64px 0 0;
  border-top: 1px solid rgba(201, 168, 92, 0.2);
}
.fs-inner {
  max-width: 860px;
  margin: 0 auto;
}
.fs-header {
  text-align: center;
  margin-bottom: 40px;
}
.fs-columns {
  position: relative;
  padding-left: 64px;
}
.fs-quote-mark {
  position: absolute;
  left: 0;
  top: -16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  pointer-events: none;
}
.fs-text .sec-body {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--mocha);
}
.fs-text .sec-body:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .fs-columns {
    padding-left: 24px;
  }
  .fs-quote-mark {
    font-size: 80px;
  }
}
