/* ============================================================
   LUXURY DESSERT BERLIN — Global Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --ivory:        #f9f5ef;
  --cream:        #f2ebe0;
  --champagne:    #e8d8bc;
  --gold:         #c9a96e;
  --gold-light:   #e4c98a;
  --chocolate:    #2b1a0e;
  --chocolate-md: #4a2c1a;
  --chocolate-lt: #7a4f35;
  --warm-white:   #fdfaf5;
  --text-dark:    #1c1208;
  --text-mid:     #5a3e28;
  --text-light:   #9a7a5e;
  --border:       rgba(201,169,110,0.25);

  --serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:   'Jost', 'Helvetica Neue', sans-serif;

  --nav-h:  80px;
  --max-w:  1440px;
  --gap:    clamp(2rem, 5vw, 5rem);
  --section-py: clamp(5rem, 10vw, 9rem);

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: none; font-family: inherit; }

/* ── Custom Cursor ────────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  top: -4px; left: -4px;
  transition: transform 0.1s var(--ease-luxury);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  top: -20px; left: -20px;
  transition: transform 0.18s var(--ease-luxury), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  top: -30px; left: -30px;
  border-color: var(--gold-light);
  background: rgba(201,169,110,0.07);
}
@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ── Loading Screen ───────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--chocolate);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.6s var(--ease-luxury), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-brand {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--champagne);
  text-transform: uppercase;
}
.loader-brand span { color: var(--gold); font-style: italic; }
.loader-bar {
  width: 120px; height: 1px;
  background: rgba(201,169,110,0.25);
  overflow: hidden;
  position: relative;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderLine 1s var(--ease-luxury) forwards;
}
@keyframes loaderLine { to { left: 0; } }

/* ── Navigation ───────────────────────────────────────────── */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  transition: background 0.5s var(--ease-luxury), box-shadow 0.5s;
}
nav#main-nav.scrolled {
  background: rgba(249,245,239,0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(43,26,14,0.06);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--warm-white);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  transition: color 0.4s;
}
.nav-logo em {
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 200;
  opacity: 0.7;
}
nav#main-nav.scrolled .nav-logo { color: var(--chocolate); }
.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }
nav#main-nav.scrolled .nav-links a { color: var(--text-mid); }
nav#main-nav.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--warm-white);
  transition: all 0.4s var(--ease-luxury);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--chocolate);
}
nav#main-nav.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--chocolate);
}
nav#main-nav.scrolled .nav-cta:hover {
  background: var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 1.5px;
  background: var(--warm-white);
  transition: all 0.4s var(--ease-luxury);
  display: block;
}
nav#main-nav.scrolled .nav-hamburger span { background: var(--chocolate); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--chocolate);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-cta {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 400;
  transition: all 0.3s;
}
.mobile-menu .m-cta:hover {
  background: var(--gold);
  color: var(--chocolate);
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section { padding: var(--section-py) 0; }
.section--dark { background: var(--chocolate); color: var(--champagne); }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }

/* Fade-in reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.section--dark .eyebrow { color: var(--gold-light); }

/* Headings */
.h-display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h1 { font-size: clamp(3rem, 7vw, 7rem); }
.h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

.italic { font-style: italic; }
.gold   { color: var(--gold); }

/* Divider */
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider--center { margin: 1.5rem auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  transition: all 0.45s var(--ease-luxury);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-luxury);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-primary {
  background: var(--gold);
  color: var(--chocolate);
  border: 1px solid var(--gold);
}
.btn-primary::before { background: var(--chocolate); }
.btn-primary:hover { color: var(--champagne); }

.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 1px solid var(--chocolate);
}
.btn-outline::before { background: var(--chocolate); }
.btn-outline:hover { color: var(--champagne); }

.btn-outline-light {
  background: transparent;
  color: var(--champagne);
  border: 1px solid rgba(232,216,188,0.5);
}
.btn-outline-light::before { background: var(--gold); }
.btn-outline-light:hover { color: var(--chocolate); border-color: var(--gold); }

.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform 0.4s var(--ease-luxury); }
.btn:hover svg { transform: translateX(4px); }

/* ── Gold Line Ornament ───────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.1em;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease-luxury) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,12,8,0.82) 0%,
    rgba(28,12,8,0.4) 50%,
    rgba(28,12,8,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--warm-white);
  margin-bottom: 1.8rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 200;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
  letter-spacing: 0.03em;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: clamp(1.5rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--chocolate);
  padding: 1.5rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.trust-track {
  display: flex;
  gap: 0;
  animation: trustScroll 30s linear infinite;
}
@keyframes trustScroll {
  to { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 3rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  white-space: nowrap;
}
.trust-item::after {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold);
  opacity: 0.6;
}

/* ── Signature Offerings ─────────────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(3rem, 5vw, 5rem);
}
.offering-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  group: true;
}
.offering-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
}
.offering-card:hover img { transform: scale(1.07); }
.offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,12,8,0.88) 0%, rgba(28,12,8,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  transition: background 0.5s;
}
.offering-card:hover .offering-overlay {
  background: linear-gradient(to top, rgba(28,12,8,0.95) 0%, rgba(28,12,8,0.3) 60%);
}
.offering-number {
  font-family: var(--serif);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}
.offering-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.offering-desc {
  font-size: 0.8rem;
  font-weight: 200;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-luxury), opacity 0.6s;
  opacity: 0;
  letter-spacing: 0.02em;
}
.offering-card:hover .offering-desc {
  max-height: 120px;
  opacity: 1;
}
.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s 0.1s var(--ease-luxury), opacity 0.6s 0.1s;
}
.offering-card:hover .offering-link {
  max-height: 40px;
  opacity: 1;
}

/* ── Story / Experience ───────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.story-media {
  position: relative;
}
.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.story-img-accent {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2.5rem;
  right: -2.5rem;
  border: 6px solid var(--warm-white);
  box-shadow: 0 20px 60px rgba(43,26,14,0.2);
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.4rem;
  font-weight: 300;
}

/* ── Featured Work / Gallery ─────────────────────────────── */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 2px;
}
.gm-1 { grid-column: 1/6; grid-row: 1/3; }
.gm-2 { grid-column: 6/9; grid-row: 1/2; }
.gm-3 { grid-column: 9/13; grid-row: 1/2; }
.gm-4 { grid-column: 6/10; grid-row: 2/3; }
.gm-5 { grid-column: 10/13; grid-row: 2/3; }
.gm-6 { grid-column: 1/5; grid-row: 3/4; }
.gm-7 { grid-column: 5/9; grid-row: 3/4; }
.gm-8 { grid-column: 9/13; grid-row: 3/4; }

.gm-item {
  overflow: hidden;
  position: relative;
}
.gm-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
}
.gm-item:hover img { transform: scale(1.06); }
.gm-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,12,8,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gm-item:hover .gm-item-overlay { background: rgba(28,12,8,0.3); }
.gm-item-label {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--warm-white);
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.4s;
  font-style: italic;
}
.gm-item:hover .gm-item-label { opacity: 1; }

/* ── Process ──────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}
.process-step {
  background: var(--ivory);
  padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: background 0.4s;
}
.process-step:hover { background: var(--cream); }
.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--chocolate);
  margin-bottom: 1rem;
}
.step-desc {
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--text-mid);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.step-icon {
  width: 28px; height: 28px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-slider {
  display: flex;
  transition: transform 0.8s var(--ease-luxury);
}
.testimonial {
  min-width: 100%;
  padding: 0 clamp(1.5rem, 8vw, 12rem);
  text-align: center;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--chocolate);
  line-height: 1.5;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: clamp(6rem, 10vw, 10rem);
  color: var(--champagne);
  font-family: var(--serif);
  line-height: 0;
  position: absolute;
  top: 2.5rem;
  left: -3rem;
}
.testimonial-author {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.testimonial-event {
  font-size: 0.78rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.testimonials-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--champagne);
  transition: all 0.4s;
}
.t-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}
.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  pointer-events: none;
}
.t-prev, .t-next {
  pointer-events: all;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: all 0.4s;
  background: var(--warm-white);
}
.t-prev:hover, .t-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--chocolate);
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  gap: 2rem;
  cursor: pointer;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--chocolate);
  line-height: 1.3;
}
.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease-luxury), background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--chocolate);
  border-color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-luxury), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding-bottom: 1.8rem;
  font-size: 0.9rem;
  font-weight: 200;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 700px;
  letter-spacing: 0.02em;
}

/* ── Final CTA Section ────────────────────────────────────── */
.cta-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-section .hero-media img {
  object-position: center 60%;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 6rem 2rem;
}
.cta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-content p {
  font-size: 1rem;
  font-weight: 200;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--text-dark);
  color: var(--champagne);
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}
.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 200;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-desc {
  font-size: 0.82rem;
  font-weight: 200;
  color: rgba(232,216,188,0.55);
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: all 0.4s;
  font-size: 0.8rem;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 0.9rem;
}
.footer-col ul li a {
  font-size: 0.82rem;
  font-weight: 200;
  color: rgba(232,216,188,0.55);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 200;
  color: rgba(232,216,188,0.3);
  letter-spacing: 0.08em;
}
.footer-bottom a { color: rgba(201,169,110,0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Sticky Mobile CTA ────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  background: rgba(249,245,239,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 -1px 0 var(--border);
  gap: 0.75rem;
}

/* ── Page Header ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: clamp(50vh, 65vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

/* ── About Page ───────────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(4rem, 7vw, 8rem);
  align-items: center;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: clamp(4rem, 6vw, 6rem);
}
.value-card {
  background: var(--cream);
  padding: clamp(2rem, 3.5vw, 3rem);
  transition: background 0.4s;
}
.value-card:hover { background: var(--champagne); }
.value-icon {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.value-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--chocolate);
  margin-bottom: 0.8rem;
}
.value-text {
  font-size: 0.83rem;
  font-weight: 200;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 4rem;
}
.team-card .team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
.team-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--chocolate);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ── Services Page ────────────────────────────────────────── */
.services-list { margin-top: 4rem; }
.service-item {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  overflow: hidden;
}
.service-item:nth-child(even) { direction: rtl; }
.service-item:nth-child(even) > * { direction: ltr; }
.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
}
.service-item:hover .service-img img { transform: scale(1.05); }
.service-body {
  background: var(--cream);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-item:nth-child(odd) .service-body { background: var(--ivory); }
.service-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--chocolate);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.88rem;
  font-weight: 200;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.service-features li {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-mid);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.service-features li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Gallery Page ─────────────────────────────────────────── */
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--text-mid);
  transition: all 0.3s;
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--chocolate);
}
.gallery-grid {
  columns: 3;
  column-gap: 2px;
}
.gallery-cell {
  break-inside: avoid;
  margin-bottom: 2px;
  overflow: hidden;
  position: relative;
  cursor: none;
}
.gallery-cell img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-luxury);
}
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,12,8,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-cell:hover .gallery-cell-overlay { background: rgba(28,12,8,0.25); }
.gallery-cell-text {
  color: var(--warm-white);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-cell:hover .gallery-cell-text { opacity: 1; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--chocolate);
  line-height: 1.4;
}

/* Contact Form */
.form-group { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 200;
  color: var(--chocolate);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  letter-spacing: 0.02em;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--cream);
  border: 1px solid var(--border);
}
.form-success.show { display: block; }
.form-success .check-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.whatsapp-float svg { color: white; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid .offering-card:last-child { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic { grid-template-rows: repeat(5, 200px); }
  .gm-6, .gm-7, .gm-8 { display: none; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { display: none; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .story-grid, .about-intro-grid { grid-template-columns: 1fr; }
  .story-img-accent { display: none; }
  .service-item { grid-template-columns: 1fr; direction: ltr !important; }
  .service-item:nth-child(even) > * { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .offerings-grid .offering-card:last-child { display: block; }
  .process-steps { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .gallery-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm-1, .gm-2, .gm-3, .gm-4, .gm-5 { grid-column: auto; grid-row: auto; aspect-ratio: 1; }
  .gm-6, .gm-7, .gm-8 { display: none; }
  .testimonial { padding: 0 1rem; }
  .testimonial-quote::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .story-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
