/* ============================================
   RETTRATA — Main Stylesheet
   ============================================ */

/* === VARIABLES === */
:root {
  --bg:          #0c0b09;
  --bg-alt:      #111009;
  --bg-surface:  #191714;
  --bg-elevated: #211e17;
  --text:        #ede6d4;
  --text-muted:  #9a9080;
  --text-dim:    #5a5448;
  --gold:        #c8a870;
  --gold-light:  #ddc090;
  --gold-pale:   #f0ddb8;
  --gold-dim:    rgba(200,168,112,.12);
  --border:      rgba(200,168,112,.18);
  --border-s:    #2a2620;
  --nav-bg:      rgba(12,11,9,0);
  --nav-scrolled:rgba(12,11,9,.96);

  --ff-display: 'Forum', 'Times New Roman', serif;
  --ff-accent:  'Aboreto', 'Futura', sans-serif;
  --ff-script:  'Great Vibes', cursive;
  --ff-body:    'Raleway', 'Helvetica Neue', sans-serif;

  --ease:      cubic-bezier(.4,0,.2,1);
  --t:         .3s;
  --t-slow:    .7s;
  --max-w:     1320px;
}

[data-theme="light"] {
  --bg:          #f4efe2;
  --bg-alt:      #ece6d6;
  --bg-surface:  #e0d8c4;
  --bg-elevated: #d8d0bc;
  --text:        #1a1610;
  --text-muted:  #6a6050;
  --text-dim:    #9a9080;
  --gold:        #8a5e24;
  --gold-light:  #6a441a;
  --gold-pale:   #4a2a08;
  --gold-dim:    rgba(138,94,36,.1);
  --border:      rgba(138,94,36,.22);
  --border-s:    #ccc4b0;
  --nav-bg:      rgba(244,239,226,0);
  --nav-scrolled:rgba(244,239,226,.97);
}

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

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */

.section-label {
  font-family: var(--ff-accent);
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* === NAV === */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 48px;
  background: var(--nav-bg);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--t) var(--ease), padding var(--t) var(--ease), backdrop-filter var(--t);
}

.nav.scrolled {
  background: var(--nav-scrolled);
  padding: 14px 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: var(--ff-script);
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
  transition: color var(--t);
}
.nav-logo-sub {
  font-family: var(--ff-accent);
  font-size: .52rem;
  letter-spacing: .3em;
  color: var(--gold);
  margin-top: 2px;
}

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

.nav-links a {
  font-family: var(--ff-accent);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-cta a {
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 9px 22px 11px;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.nav-links .nav-cta a::after { display: none; }
.nav-links .nav-cta a:hover { background: var(--gold-dim); border-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text); padding: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--t);
}
.nav-icon-btn:hover { color: var(--gold); }
.nav-icon-btn svg { width: 18px; height: 18px; }

.lang-btn {
  font-family: var(--ff-accent);
  font-size: .6rem; letter-spacing: .18em;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  padding: 5px 11px;
  transition: all var(--t);
}
.lang-btn:hover { color: var(--gold); border-color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--text);
  transition: all var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text);
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 24px; right: 36px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 1.4rem; font-weight: 300;
  transition: color var(--t);
}
.mobile-close:hover { color: var(--gold); }

/* === HERO === */

.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
  pointer-events: none;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.08) 40%,
    rgba(0,0,0,.55) 78%,
    rgba(0,0,0,.78) 100%
  );
}

.hero-content {
  position: absolute; bottom: 90px; left: 50%;
  transform: translateX(-50%);
  text-align: center; z-index: 2;
  width: 90%; max-width: 1000px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff; line-height: .95;
  margin-bottom: 18px;
}

.hero-sub {
  font-family: var(--ff-accent);
  font-size: clamp(.62rem, 1.4vw, .82rem);
  letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Arrow buttons */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: none;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.hero-arrow:hover { border-color: var(--gold); color: var(--gold); }
.hero-arrow svg { width: 16px; height: 16px; }
.hero-prev { left: 32px; }
.hero-next { right: 32px; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 8px;
}
.hero-dot {
  width: 30px; height: 2px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background var(--t);
}
.hero-dot.active { background: var(--gold); }

/* === BUTTONS === */

.btn {
  display: inline-block;
  font-family: var(--ff-accent);
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
  padding: 14px 38px; cursor: pointer;
  transition: all var(--t) var(--ease);
  border: none; text-align: center; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #0c0b09; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold-dim); }

/* === SECTION GENERIC === */

.section { padding: 100px 48px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

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

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text);
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block; width: 55%; height: 0;
  border-top: 1px dashed var(--border);
  margin: 18px auto 0;
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* === EXPERIENCE SECTION === */

.section-experience {
  background: var(--bg-alt);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.section-experience::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 110%, rgba(200,168,112,.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% -10%, rgba(200,168,112,.04) 0%, transparent 60%);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: end;
}

.experience-col { display: flex; flex-direction: column; align-items: center; text-align: center; }

.experience-col-label {
  font-family: var(--ff-accent);
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px; line-height: 1.8;
}

.experience-col-img {
  width: 100%; object-fit: cover; display: block;
  aspect-ratio: 2/3;
  transition: transform var(--t-slow) var(--ease);
}
.experience-col:hover .experience-col-img { transform: scale(1.02); }
.experience-col-img-wrap { overflow: hidden; width: 100%; }

/* === QUOTE SECTION === */

.section-quote { background: var(--bg); padding: 110px 48px; }

.quote-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.quote-open {
  font-family: var(--ff-display);
  font-size: 6rem; line-height: .5;
  color: var(--gold); opacity: .25;
  display: block; margin-bottom: 24px;
  height: 36px; overflow: hidden;
}

.quote-text {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  font-style: italic;
  color: var(--text); line-height: 1.55;
  margin-bottom: 36px;
}

.quote-author {
  font-family: var(--ff-accent);
  font-size: .65rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
}

/* === MENU CTA === */

.section-menu-cta {
  background: var(--bg-alt);
  padding: 80px 48px; text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--text); margin-bottom: 40px;
}

/* === CHEF SECTION === */

.section-chef { overflow: hidden; }

.chef-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}

.chef-img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }

.chef-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-elevated);
}
.chef-divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.chef-name {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin-bottom: 28px; line-height: 1.15;
}
.chef-text {
  color: var(--text-muted); font-size: .93rem;
  line-height: 1.9; margin-bottom: 20px;
}

/* === GALLERY GRID === */

.section-gallery { overflow: hidden; }

.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); }

.gallery-item { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* === PRIVATE EVENTS === */

.section-private { overflow: hidden; }

.private-grid { display: grid; grid-template-columns: 1fr 1fr; }

.private-img-wrap { overflow: hidden; min-height: 520px; }
.private-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.private-img-wrap:hover .private-img { transform: scale(1.04); }

.private-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-alt);
}
.private-emblem { width: 72px; height: auto; margin-bottom: 36px; }
.private-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin-bottom: 22px; line-height: 1.2;
}
.private-text {
  color: var(--text-muted); font-size: .93rem;
  line-height: 1.9; margin-bottom: 40px;
}

/* === TICKER === */

.section-ticker {
  background: var(--bg-elevated);
  padding: 36px 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap; width: max-content;
  animation: scroll-ticker 35s linear infinite;
}
.section-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--ff-accent);
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 24px;
}
.ticker-item::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === FOOTER === */

.footer {
  background: var(--bg-alt);
  padding: 88px 48px 44px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 72px; margin-bottom: 72px;
}

.footer-brand-name {
  font-family: var(--ff-script);
  font-size: 3.2rem; color: var(--text); line-height: 1; margin-bottom: 6px;
}
.footer-brand-sub {
  font-family: var(--ff-accent);
  font-size: .52rem; letter-spacing: .3em; color: var(--gold);
  margin-bottom: 24px;
}
.footer-tagline {
  font-size: .88rem; color: var(--text-muted);
  max-width: 240px; line-height: 1.75; margin-bottom: 36px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--t);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col-title {
  font-family: var(--ff-accent);
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}

.footer-info { margin-bottom: 8px; font-size: .87rem; color: var(--text-muted); }
.footer-info strong {
  font-family: var(--ff-accent);
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text); font-weight: 500;
  display: block; margin-top: 22px; margin-bottom: 4px;
}
.footer-info:first-of-type strong { margin-top: 0; }

.footer-nl-text { font-size: .87rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.footer-nl-form { display: flex; border: 1px solid var(--border); }
.footer-nl-form input {
  flex: 1; background: transparent; border: none;
  padding: 12px 16px; color: var(--text);
  font-family: var(--ff-body); font-size: .85rem; outline: none;
}
.footer-nl-form input::placeholder { color: var(--text-dim); }
.footer-nl-form button {
  background: var(--gold); color: var(--bg); border: none;
  padding: 12px 20px; cursor: pointer;
  font-family: var(--ff-accent); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase;
  transition: background var(--t); white-space: nowrap;
}
.footer-nl-form button:hover { background: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-family: var(--ff-accent);
  font-size: .57rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: var(--ff-accent);
  font-size: .57rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--t);
}
.footer-legal a:hover { color: var(--gold); }

/* === INNER PAGES === */

.page-hero {
  height: 52vh; min-height: 420px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 64px 48px; position: relative;
  margin-top: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.72));
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: .15em; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.page-hero-sub {
  font-family: var(--ff-accent);
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* — Menu page — */

.menu-cats {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 72px;
}
.menu-cat {
  font-family: var(--ff-accent);
  font-size: .62rem; letter-spacing: .24em; text-transform: uppercase;
  padding: 10px 26px; background: none;
  border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  transition: all var(--t);
}
.menu-cat.active, .menu-cat:hover { border-color: var(--gold); color: var(--gold); }

.menu-section { margin-bottom: 72px; }
.menu-section-title {
  font-family: var(--ff-display);
  font-size: 1.5rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  gap: 24px;
}
.menu-item-name {
  font-family: var(--ff-display);
  font-size: .98rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin-bottom: 5px;
}
.menu-item-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.menu-item-price {
  font-family: var(--ff-accent);
  font-size: .72rem; letter-spacing: .15em;
  color: var(--gold); white-space: nowrap; flex-shrink: 0;
}

/* — Contact page — */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--ff-accent);
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
}
.form-input, .form-textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--ff-body);
  font-size: .9rem; padding: 14px 18px; outline: none; width: 100%;
  transition: border-color var(--t);
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }

.contact-info-title {
  font-family: var(--ff-display);
  font-size: 1.8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 36px;
}
.contact-info-row { display: flex; gap: 16px; margin-bottom: 30px; align-items: flex-start; }
.contact-info-row svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-info-label {
  font-family: var(--ff-accent);
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.contact-info-value { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* — Events page — */

.events-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--border-s);
  margin-bottom: 1px;
}
.event-card { background: var(--bg-alt); padding: 48px 40px; }
.event-icon { width: 40px; height: 40px; margin-bottom: 24px; color: var(--gold); }
.event-card-title {
  font-family: var(--ff-display);
  font-size: 1.2rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.event-card-text { font-size: .9rem; color: var(--text-muted); line-height: 1.8; }

/* — Experience page — */

.experience-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; overflow: hidden;
}
.experience-split-img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.experience-split-content {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-surface);
}
.experience-split-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 24px; line-height: 1.2;
}
.experience-split-text {
  font-size: .93rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px;
}

/* === RESPONSIVE === */

@media (max-width: 1100px) {
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .events-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .section { padding: 72px 24px; }
  .section-experience { padding: 72px 24px; }

  .experience-grid { grid-template-columns: 1fr; }
  .chef-grid,
  .private-grid,
  .experience-split,
  .contact-grid { grid-template-columns: 1fr; }
  .chef-content, .private-content,
  .experience-split-content { padding: 56px 28px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer { padding: 64px 24px 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }

  .page-hero { padding: 48px 24px; }
  .contact-grid { gap: 48px; }
}
