:root {
  --bg: #0a0908;
  --surface: #141210;
  --surface-2: #1c1916;
  --accent: #d4923a;
  --accent-dim: rgba(212, 146, 58, 0.15);
  --text: #f0ebe2;
  --text-muted: #9c9183;
  --text-dim: #5c5550;
  --border: rgba(212, 146, 58, 0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,146,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(212,146,58,0.05) 0%, transparent 60%),
    var(--bg);
}

.flame-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.flame {
  position: absolute;
  bottom: -20%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(80px);
  opacity: 0.12;
}

.flame-1 {
  width: 500px; height: 600px;
  left: 40%; top: 10%;
  background: radial-gradient(ellipse, #d4923a 0%, transparent 70%);
  animation: flame-drift 8s ease-in-out infinite alternate;
}

.flame-2 {
  width: 300px; height: 400px;
  left: 55%; top: 20%;
  background: radial-gradient(ellipse, #e8a84a 0%, transparent 70%);
  animation: flame-drift 6s ease-in-out infinite alternate-reverse;
  opacity: 0.08;
}

.flame-3 {
  width: 200px; height: 300px;
  left: 30%; top: 30%;
  background: radial-gradient(ellipse, #c07030 0%, transparent 70%);
  animation: flame-drift 10s ease-in-out infinite;
  opacity: 0.06;
}

@keyframes flame-drift {
  0% { transform: translateY(0) scaleX(1); }
  100% { transform: translateY(-30px) scaleX(1.1); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-line-1 {
  display: block;
  font-style: italic;
  color: var(--text-muted);
}

.hero-line-2 {
  display: block;
  font-weight: 500;
}

.hero-line-3 {
  display: block;
  font-weight: 500;
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.hero-cta-btn:hover {
  background: #e8a040;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 146, 58, 0.3);
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-dim);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 22px;
  border-radius: 8px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero-phone-cta:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

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

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}

/* ─── SHARED SECTION STYLES ─────────────────────────── */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

/* ─── STANDARD ─────────────────────────────────────────── */
.standard {
  background: var(--surface);
  padding: 120px 8vw;
}

.standard-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.standard-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.standard-headline em {
  font-style: italic;
  color: var(--accent);
}

.standard-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.standard-flame-rule {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flame-rule-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial {
  padding: 28px;
  background: var(--surface-2);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonial cite {
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services {
  background: var(--bg);
  padding: 120px 8vw;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(212,146,58,0.06) 100%);
}

.service-visual {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.service-icon-wrap {
  opacity: 0.9;
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─── PROCESS ─────────────────────────────────────────── */
.process {
  background: var(--surface);
  padding: 120px 8vw;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  margin-bottom: 80px;
}

.process-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 80px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  display: none;
}

.process-cta {
  display: flex;
  justify-content: center;
}

.first-booking-offer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 36px;
  max-width: 600px;
}

.offer-badge {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  flex-shrink: 0;
  line-height: 1;
}

.offer-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.offer-body strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.offer-code {
  font-family: monospace;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85em;
}

/* ─── CREDENTIALS ─────────────────────────────────────── */
.credentials {
  background: var(--bg);
  padding: 120px 8vw;
}

.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.chef-portrait {
  text-align: center;
}

.portrait-frame {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: var(--surface);
  padding: 20px;
}

.portrait-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.chef-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chef-label strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

.chef-label span {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.credentials-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}

.credentials-headline em {
  font-style: italic;
  color: var(--accent);
}

.credentials-body {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cred-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cred-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cred-text strong {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.cred-text span {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ─── CLOSING ─────────────────────────────────────────── */
.closing {
  background: var(--surface);
  padding: 140px 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212,146,58,0.06) 0%, transparent 70%);
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0.8;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.closing-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.closing-line {
  width: 80px;
  height: 1px;
  background: var(--border);
}

.closing-cities {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 8vw 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
}

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

.footer-col-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-link-static {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .standard-inner,
  .credentials-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps::before { display: none; }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 600px) {
  .hero { padding: 60px 6vw; }
  .standard, .services, .process, .credentials, .closing { padding: 80px 6vw; }
  .footer { padding: 48px 6vw 32px; }

  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .first-booking-offer {
    flex-direction: column;
    text-align: center;
  }
}