/* ============================================================
   GOURMET CULINAIRES — Master Stylesheet
   Color Palette: #111111 | #FFFFFF | #BFA46F | #F5F2ED | #333333
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --white:   #FFFFFF;
  --gold:    #BFA46F;
  --gold-lt: #d4bc87;
  --beige:   #F5F2ED;
  --grey:    #333333;
  --grey-lt: #888888;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans:  'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-cormo: 'Cormorant Garamond', 'Georgia', serif;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 48px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 80px rgba(0,0,0,0.18);
}

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--grey);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad { padding: 120px 0; }
.section-pad-top { padding-top: 120px; }

/* ---------- CUSTOM CURSOR ---------- */
#cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,164,111,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 0.3s;
}

body::after {
  content: '';
  position: fixed;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  top: 0; left: 0;
}

/* ---------- PAGE LOADER ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-brand { text-align: center; }

.loader-gc {
  display: block;
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  animation: pulse-gc 1.5s ease-in-out infinite;
}

.loader-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 8px;
}

@keyframes pulse-gc {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: load-fill 2s ease forwards;
}

@keyframes load-fill { to { width: 100%; } }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  padding: 16px 0;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-gc {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-name {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  letter-spacing: 0.12em;
  transition: all 0.3s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::before { transform: translateX(100%); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(191,164,111,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn.full-width { width: 100%; justify-content: center; }

/* ---------- GOLD DIVIDER ---------- */
.gold-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-divider.center { margin: 24px auto; }

/* ---------- SECTION TYPOGRAPHY ---------- */
.section-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--black);
}

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

.section-intro {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-lt);
}

.section-header { text-align: center; margin-bottom: 72px; }

/* ---------- SCROLL REVEAL ---------- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: ken-burns 8s ease-out forwards;
}

@keyframes ken-burns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0.85) 0%,
    rgba(17,17,17,0.5) 60%,
    rgba(17,17,17,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
  margin-left: calc((100vw - 1280px) / 2);
  margin-left: max(40px, calc((100vw - 1280px) / 2));
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-family: var(--font-cormo);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 50px; }
  50% { opacity: 0.4; height: 30px; }
}

.hero-slide-controls {
  position: absolute;
  bottom: 48px;
  right: 60px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slide-btn {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.slide-btn.active { background: var(--gold); width: 50px; }

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: var(--black);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.marquee-track .dot { color: var(--gold); }

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visuals { position: relative; padding-bottom: 80px; }

.about-img-main {
  width: 85%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img-main img {
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-overlay {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-overlay img {
  transition: transform 0.8s ease;
}
.about-img-overlay:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.badge-label {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.7);
  text-align: center;
  line-height: 1.3;
}

.about-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--grey-lt);
  margin-bottom: 20px;
}

.about-quote {
  font-family: var(--font-cormo);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0 40px;
  line-height: 1.5;
}

/* ---------- VISUAL BREAK ---------- */
.visual-break {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.72);
}

.vb-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
  max-width: 800px;
}

.vb-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.vb-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.vb-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}

/* ---------- EXPERTISE ---------- */
.expertise-section { background: var(--beige); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.expertise-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ec-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.ec-img img {
  transition: transform 0.7s ease;
}
.expertise-card:hover .ec-img img { transform: scale(1.08); }

.ec-number {
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}

.ec-body {
  padding: 32px 36px 40px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}

.expertise-card:hover .ec-body { border-color: var(--gold); }

.ec-body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
}

.ec-body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--grey-lt);
  margin-bottom: 24px;
}

.ec-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.ec-link:hover { gap: 14px; }

/* ---------- STATS BAND ---------- */
.stats-band {
  background: var(--black);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; }

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* ---------- PHILOSOPHY ---------- */
.philosophy-section { background: var(--white); }

.identity-matrix {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 80px;
  border: 1px solid rgba(191,164,111,0.2);
}

.identity-col {
  flex: 1;
  padding: 56px 48px;
}

.we-are { background: var(--black); }
.we-are-not { background: var(--beige); }

.identity-col h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.we-are h3 { color: var(--gold); }
.we-are-not h3 { color: var(--grey-lt); }

.we-are h3 i { color: var(--gold); }
.we-are-not h3 i { color: var(--grey-lt); }

.identity-col ul { display: flex; flex-direction: column; gap: 18px; }

.identity-col li {
  font-family: var(--font-cormo);
  font-size: 20px;
  font-style: italic;
  padding-left: 20px;
  position: relative;
}

.identity-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 1px;
}

.we-are li { color: var(--white); }
.we-are li::before { background: var(--gold); }

.we-are-not li { color: var(--grey-lt); text-decoration: line-through; text-decoration-color: rgba(136,136,136,0.4); }
.we-are-not li::before { background: var(--grey-lt); }

.identity-divider {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--white);
  border-left: 1px solid rgba(191,164,111,0.2);
  border-right: 1px solid rgba(191,164,111,0.2);
}

.id-gold-line { flex: 1; width: 1px; background: var(--gold); }

.id-vs {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.pillar-card {
  background: var(--beige);
  padding: 48px 36px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  color: var(--gold);
  transition: all 0.3s;
}

.pillar-card:hover .pillar-icon {
  background: var(--gold);
  color: var(--black);
}

.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--grey-lt);
}

.philosophy-closing {
  text-align: center;
  padding: 60px;
  background: var(--black);
}

.philosophy-closing blockquote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.philosophy-closing p {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--beige); }

.gallery-strip {
  display: flex;
  gap: 0;
  height: 520px;
  overflow: hidden;
}

.gallery-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.gallery-item:hover { flex: 3; }

.gallery-item img {
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.gallery-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  background: rgba(17,17,17,0.6);
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- JOURNAL ---------- */
.journal-section { background: var(--white); }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.journal-card {
  overflow: hidden;
  transition: transform 0.4s ease;
}
.journal-card:hover { transform: translateY(-6px); }

.jc-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.jc-img img { transition: transform 0.6s ease; }
.journal-card:hover .jc-img img { transform: scale(1.06); }

.jc-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.jc-body {
  padding: 32px 0 0;
  border-top: 1px solid rgba(17,17,17,0.08);
  margin-top: 0;
}

.jc-date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.jc-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.35;
}

.jc-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--grey-lt);
  margin-bottom: 20px;
}

.jc-read {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.jc-read:hover { gap: 14px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.testi-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.88);
}

.testi-inner {
  position: relative;
  z-index: 2;
  padding: 120px 40px;
}

.testi-slider { max-width: 760px; margin: 0 auto; }

.testi-slide {
  display: none;
  text-align: center;
  animation: fade-in 0.5s ease;
}

.testi-slide.active { display: block; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-quote {
  font-size: 36px;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
}

.testi-text {
  font-family: var(--font-cormo);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 40px;
}

.testi-author { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.testi-author strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.testi-author span {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testi-prev, .testi-next {
  background: none;
  border: 1px solid rgba(191,164,111,0.4);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.testi-prev:hover, .testi-next:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.testi-dots { display: flex; gap: 10px; }

.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.tdot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---------- WHO WE SERVE ---------- */
.serve-section { background: var(--beige); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.serve-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.serve-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.serve-card > img {
  height: 240px;
  transition: transform 0.6s ease;
}
.serve-card:hover > img { transform: scale(1.04); }

.serve-icon {
  display: none;
}

.serve-content { padding: 32px 32px 40px; }

.serve-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
}

.serve-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--grey-lt);
}

/* ---------- CONTACT ---------- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-lt);
  margin-bottom: 40px;
  margin-top: -8px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--grey);
}

.contact-info-item i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(191,164,111,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.3s;
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.contact-img {
  height: 300px;
  overflow: hidden;
}

.contact-img img { transition: transform 0.6s ease; }
.contact-img:hover img { transform: scale(1.04); }

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--grey);
  background: var(--beige);
  border: 1px solid rgba(17,17,17,0.1);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-family: var(--font-cormo);
  font-size: 14px;
  font-style: italic;
  color: var(--grey-lt);
  text-align: center;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--beige);
}

.form-success i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--black);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 15px;
  color: var(--grey-lt);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); }

.footer-top { padding: 100px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-tagline {
  font-family: var(--font-cormo);
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(191,164,111,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 14px; }

.footer-col li {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  transition: color 0.3s;
}

.footer-col li i { color: var(--gold); font-size: 12px; }

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-inner p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer-bottom-inner p:last-child {
  font-family: var(--font-cormo);
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
}

/* ---------- BACK TO TOP ---------- */
#backToTop {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 48px; height: 48px;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 14px;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gold-lt);
  transform: translateY(-4px);
}

/* ---------- PARALLAX ---------- */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .expertise-grid { gap: 28px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visuals { padding-bottom: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .identity-matrix { flex-direction: column; }
  .identity-divider { flex-direction: row; width: 100%; height: 60px; border-left: none; border-right: none; border-top: 1px solid rgba(191,164,111,0.2); border-bottom: 1px solid rgba(191,164,111,0.2); }
  .id-gold-line { flex: 1; height: 1px; width: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0 0 0 auto; width: 280px; background: var(--black); padding: 100px 40px 40px; gap: 32px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .hamburger { display: flex; }
  .hero-content { margin-left: 0; padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .gallery-strip { flex-direction: column; height: auto; }
  .gallery-item { height: 240px; flex: none; }
  body { cursor: auto; }
  #cursor-glow { display: none; }
  body::after { display: none; }
  .visual-break { background-attachment: scroll; }
  .testi-bg { background-attachment: scroll; }
  .parallax-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { padding: 14px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .section-pad { padding: 60px 0; }
}
