/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #F5F0EB;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ===== Header ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid #E5DDD4;
  background: #F5F0EB;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #1A1A1A;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #8A8078;
  transition: color 0.3s;
}
.header-nav a:hover { color: #1A1A1A; }
.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #1A1A1A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.btn-book:hover { background: #333; }
.mobile-menu { display: none; font-size: 24px; cursor: pointer; color: #1A1A1A; background: none; border: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 780px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.1), rgba(26,26,26,0.75));
  z-index: 2;
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 80px;
  z-index: 3;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #C9A962;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.05;
}
.hero-sub {
  font-size: 15px;
  color: #D4CCC4;
  line-height: 1.7;
  max-width: 480px;
}

/* ===== Opening Line ===== */
.opening {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.opening-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: #1A1A1A;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
}
.gold-line { width: 48px; height: 2px; background: #C9A962; }
.gold-line-thin { width: 60px; height: 1px; background: #C9A962; }
.opening-by {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #8A8078;
}

/* ===== Chef Story ===== */
.chef-story {
  display: flex;
  background: #1A1A1A;
  min-height: 640px;
}
.chef-portrait {
  width: 580px;
  min-width: 580px;
  overflow: hidden;
}
.chef-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px 60px 48px;
  gap: 24px;
}
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #C9A962;
}
.chef-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
}
.chef-bio {
  font-size: 14px;
  color: #A09890;
  line-height: 1.8;
}
.chef-stats {
  display: flex;
  gap: 48px;
  padding-top: 24px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: #C9A962;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #706860;
}

/* ===== Trust Bar ===== */
.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 80px;
  border-top: 1px solid #E5DDD4;
  border-bottom: 1px solid #E5DDD4;
}
.trust-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #B0A89E;
}
.trust-logos {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logos span { color: #C4BAB0; }

/* ===== Services ===== */
.services {
  padding: 100px 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.svc-header-left { display: flex; flex-direction: column; gap: 12px; }
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.1;
}
.svc-desc {
  font-size: 14px;
  color: #8A8078;
  line-height: 1.7;
  text-align: right;
  max-width: 340px;
}
.svc-grid {
  display: flex;
  gap: 16px;
  height: 520px;
}
.svc-featured {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.svc-side {
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0), rgba(26,26,26,0.87));
}
.svc-featured .svc-card-overlay {
  background: linear-gradient(to bottom, rgba(26,26,26,0), rgba(26,26,26,0.93));
}
.svc-card-content {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-featured .svc-card-content {
  bottom: 40px;
  left: 40px;
  right: 40px;
  gap: 12px;
}
.svc-card-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #C9A962;
}
.svc-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
}
.svc-featured .svc-card-name { font-size: 36px; }
.svc-card-desc {
  font-size: 12px;
  color: #B0A89E;
  line-height: 1.5;
  max-width: 360px;
}
.svc-featured .svc-card-desc { font-size: 13px; line-height: 1.6; max-width: 440px; }

/* ===== Voices Ticker ===== */
.voices {
  background: #1A1A1A;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.voice-card {
  background: #222222;
  border: 1px solid #333333;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.voice-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: #E5DDD4;
  line-height: 1.5;
}
.voice-author {
  font-size: 10px;
  color: #706860;
}

/* ===== Pull Quote ===== */
.pull-quote {
  background: #1A1A1A;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.pq-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: rgba(201,169,98,0.25);
  line-height: 0.5;
}
.pq-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.3;
  text-align: center;
  max-width: 900px;
}

/* ===== Gallery ===== */
.gallery {
  padding: 100px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-header-left { display: flex; flex-direction: column; gap: 8px; }
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.15;
}
.gallery-link {
  font-size: 12px;
  font-weight: 500;
  color: #C9A962;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}
.gallery-link:hover { opacity: 0.7; }
.gallery-row-1 {
  display: flex;
  gap: 12px;
  height: 380px;
}
.gallery-row-1 .g-large { flex: 1; position: relative; overflow: hidden; }
.gallery-row-1 .g-col {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-row-1 .g-col > div { flex: 1; overflow: hidden; }
.gallery-row-2 {
  display: flex;
  gap: 12px;
  height: 280px;
}
.gallery-row-2 > div { flex: 1; overflow: hidden; }
.g-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.g-overlay-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #C9A962;
}
.g-overlay-loc { font-size: 11px; color: #D4CCC4; }

/* ===== Event Stories ===== */
.events-wrap {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-card {
  display: flex;
  border: 1px solid #E5DDD4;
  overflow: hidden;
  background: #F5F0EB;
}
.event-card-img {
  width: 240px;
  min-width: 240px;
  height: 140px;
  overflow: hidden;
}
.event-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  flex: 1;
}
.event-type {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #C9A962;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #1A1A1A;
}
.event-meta { font-size: 11px; color: #8A8078; line-height: 1.5; }
.event-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: #6B5B4E;
  line-height: 1.4;
}

/* ===== Testimonial ===== */
.testimonial {
  background: #F0EBE4;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.t-stars { font-size: 14px; color: #C9A962; letter-spacing: 6px; }
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: #2A2A2A;
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
}
.t-author { text-align: center; }
.t-name { font-size: 13px; font-weight: 600; color: #1A1A1A; letter-spacing: 1px; }
.t-detail { font-size: 11px; color: #8A8078; margin-top: 4px; }
.t-dots { display: flex; gap: 8px; align-items: center; padding-top: 16px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: #D4CCC4; }
.t-dot.active { background: #C9A962; }
.t-dot-sm { width: 6px; height: 6px; }

/* ===== CTA ===== */
.cta {
  background: #1A1A1A;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.05;
  text-align: center;
}
.cta-sub { font-size: 16px; color: #8A8078; text-align: center; }
.cta-buttons { display: flex; gap: 16px; align-items: center; }
.btn-gold {
  padding: 16px 40px;
  background: #C9A962;
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s;
  text-align: center;
}
.btn-gold:hover { background: #d4b872; }
.btn-outline {
  padding: 16px 40px;
  border: 1px solid #C9A962;
  color: #C9A962;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
  text-align: center;
}
.btn-outline:hover { background: #C9A962; color: #1A1A1A; }

/* ===== Footer ===== */
.footer {
  padding: 48px 48px 28px;
  border-top: 1px solid #E5DDD4;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 360px; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.footer-desc { font-size: 12px; color: #8A8078; line-height: 1.6; max-width: 320px; }
.footer-nav { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: #8A8078;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-col a:hover { color: #1A1A1A; }
.footer-divider { width: 100%; height: 1px; background: #E5DDD4; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 10px; color: #B0A89E; }
.footer-credit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: #B0A89E;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .header { padding: 16px 20px; }
  .header-logo { font-size: 13px; letter-spacing: 4px; }
  .header-nav { display: none; }
  .mobile-menu { display: block; }

  .hero { height: 560px; }
  .hero-content { bottom: 40px; left: 24px; right: 24px; max-width: none; }
  .hero-tag { font-size: 9px; letter-spacing: 3px; }
  .hero-title { font-size: 42px; }
  .hero-sub { font-size: 13px; max-width: none; }

  .opening { padding: 60px 32px; }
  .opening-quote { font-size: 20px; }

  .chef-story { flex-direction: column; min-height: auto; }
  .chef-portrait { width: 100%; min-width: auto; height: 400px; }
  .chef-text { padding: 40px 24px; gap: 20px; }
  .chef-name { font-size: 40px; }
  .chef-bio { font-size: 13px; }
  .chef-stats { gap: 32px; }
  .stat-number { font-size: 28px; }

  .trust-bar { padding: 28px 20px; }
  .trust-logos { gap: 24px; }

  .services { padding: 60px 24px; gap: 32px; }
  .svc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-title { font-size: 36px; }
  .svc-desc { text-align: left; max-width: none; }
  .svc-grid { flex-direction: column; height: auto; }
  .svc-featured { height: 280px; }
  .svc-side { width: 100%; }
  .svc-card { height: 220px; }
  .svc-featured .svc-card-content { bottom: 20px; left: 20px; right: 20px; }
  .svc-featured .svc-card-name { font-size: 24px; }
  .svc-featured .svc-card-desc { font-size: 12px; }

  .voices { padding: 40px 24px; }
  .voices-grid { grid-template-columns: 1fr; }
  .voice-card { padding: 20px; }
  .voice-quote { font-size: 14px; }

  .pull-quote { padding: 60px 28px; }
  .pq-mark { font-size: 80px; }
  .pq-text { font-size: 32px; }

  .gallery { padding: 60px 24px; gap: 28px; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-title { font-size: 30px; }
  .gallery-row-1 { flex-direction: column; height: auto; }
  .gallery-row-1 .g-large { height: 240px; }
  .gallery-row-1 .g-col { width: 100%; flex-direction: row; height: 180px; }
  .gallery-row-2 { height: 180px; }

  .events-wrap { gap: 16px; }
  .event-card { flex-direction: column; }
  .event-card-img { width: 100%; min-width: auto; height: 160px; }
  .event-card-text { padding: 16px; gap: 6px; }
  .event-title { font-size: 18px; }
  .event-meta { font-size: 10px; }
  .event-quote { font-size: 13px; }

  .testimonial { padding: 60px 24px; }
  .t-stars { font-size: 12px; letter-spacing: 4px; }
  .t-quote { font-size: 18px; }

  .cta { padding: 60px 24px; gap: 28px; }
  .cta-title { font-size: 44px; }
  .cta-sub { font-size: 14px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn-gold, .btn-outline { width: 100%; }

  .footer { padding: 32px 24px 20px; gap: 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { gap: 32px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}
