/* ============================================================
   Chef Ido Sirton — Melbourne
   Warm Mediterranean luxe. Fire, clay, cream, gold.
   Rebuilt stylesheet — matches every class used in the pages.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces — warm stone. Lifted from near-black so photography reads as colour. */
  --bg:        #2B2621;
  --bg-alt:    #352F28;
  --bg-card:   #3E362E;

  /* Ink */
  --cream:     #FFFFFF;
  --cream-70:  rgba(255,255,255,0.92);
  --cream-45:  rgba(255,255,255,0.78);
  --cream-20:  rgba(255,255,255,0.64);
  --cream-06:  rgba(255,255,255,0.15);

  /* Accent — antique brass, not yellow gold */
  --gold:      #C6A265;
  --gold-dim:  rgba(198,162,101,0.35);

  /* Type */
  --heading:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:      'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --pad:       clamp(20px, 5vw, 64px);
  --nav-h:     76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { margin: 0; font-family: var(--heading); font-weight: 300; line-height: 1.15; }
p { margin: 0; }

em { font-style: italic; font-weight: 500; }

::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: 1220px; margin: 0 auto; }

.section-pad { padding: 100px var(--pad); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.gap-0 { gap: 0; }

/* ---------- TYPE HELPERS ---------- */
.label {
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 14px;
}
.section-title em { font-style: italic; font-weight: 500; }

.body-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream-70);
  font-weight: 400;
  margin-top: 16px;
}

.gold-line {
  width: 55px;
  height: 1px;
  background: var(--gold);
  margin-top: 30px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 300;
  margin-top: 14px;
}
.section-header h2 em { font-style: italic; font-weight: 500; }
.section-header p {
  font-size: 1.02rem;
  color: var(--cream-45);
  line-height: 1.8;
  margin-top: 18px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.4s ease, height 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16,13,11,0.80) 0%, rgba(16,13,11,0.35) 55%, rgba(16,13,11,0) 100%);
  transition: opacity 0.4s ease;
}
.nav.scrolled::after { opacity: 0; }

.nav.scrolled {
  background: rgba(28,25,22,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--cream-06);
  height: 64px;
}

.nav-logo {
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--cream);
  white-space: nowrap;
}
.nav-logo b { font-weight: 600; color: var(--gold); }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-70);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
}
.mobile-menu a {
  font-family: var(--heading);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
.hero, .page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) var(--pad) 60px;
  overflow: hidden;
}
.page-hero { min-height: 62vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 22s ease-out forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,22,0.22) 0%, rgba(28,25,22,0.12) 42%, rgba(28,25,22,0.80) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-shadow: 0 2px 20px rgba(18,15,12,0.9), 0 1px 4px rgba(18,15,12,0.8);
}
.hero-content::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 165%; height: 210%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(18,15,12,0.78) 0%,
    rgba(18,15,12,0.62) 38%,
    rgba(18,15,12,0.28) 62%,
    rgba(18,15,12,0) 78%);
}
/* Brass is too low-contrast over a bright photo — lift it for hero use only. */
.hero-content .label { color: #EBCF96; }
.hero-content h1 {
  font-family: var(--heading);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.hero-content h1 em { font-style: italic; font-weight: 500; }

.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: var(--cream-70);
  font-weight: 400;
  line-height: 1.8;
  max-width: 560px;
  margin: 24px auto 0;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-45);
}
.scroll-hint div {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.55); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-outline, .btn-gold-outline {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 32px;
  border: 1px solid transparent;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #1C1916;
  border-color: var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream-20);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(247,243,234,0.10); transform: translateY(-2px); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn-gold-outline:hover { border-color: var(--gold); background: rgba(198,162,101,0.09); transform: translateY(-2px); }

/* ---------- IMAGE + BADGE ---------- */
.img-badge-wrap { position: relative; }
.img-badge-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.badge-box {
  position: absolute;
  right: -22px; bottom: -22px;
  background: var(--gold);
  color: #1C1916;
  padding: 26px 30px;
  text-align: center;
  min-width: 118px;
}
.badge-box .num {
  font-family: var(--heading);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}
.badge-box .unit {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- EXPERIENCE CARDS ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exp-card {
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.exp-card:hover { transform: translateY(-6px); }

.exp-card-img { overflow: hidden; height: 250px; }
.exp-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.exp-card:hover .exp-card-img img { transform: scale(1.06); }

.exp-card-body { padding: 30px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.exp-card-body .sub {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.exp-card-body h3 {
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 400;
  margin-top: 8px;
}
.exp-card-body p {
  font-size: 0.98rem;
  color: var(--cream-45);
  line-height: 1.8;
  margin-top: 12px;
  flex: 1;
}

.exp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.exp-tags span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-45);
  border: 1px solid var(--cream-06);
  padding: 6px 11px;
  font-weight: 500;
}

/* ---------- PRIVATE CHEF TEASER ---------- */
.pc-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.pc-list-item { display: flex; gap: 14px; align-items: flex-start; }
.pc-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}
.pc-list-item strong {
  font-size: 0.94rem;
  font-weight: 500;
  display: block;
  color: var(--cream);
}
.pc-list-item span {
  font-size: 0.93rem;
  color: var(--cream-45);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.pc-image { position: relative; min-height: 460px; }
.pc-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--bg-alt);
  text-align: center;
}
.test-inner { max-width: 780px; margin: 0 auto; }
.test-star { color: var(--gold); font-size: 1.1rem; margin-bottom: 30px; }

.test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.test-slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }

.test-slide blockquote {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
}
.test-author {
  margin-top: 26px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--cream);
}
.test-event {
  margin-top: 4px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.test-dots { display: flex; gap: 10px; justify-content: center; margin-top: 42px; }
.test-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream-20);
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.test-dots button.active { background: var(--gold); transform: scale(1.3); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--cream-70);
  font-weight: 400;
  margin-top: 18px;
}

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info div {
  font-size: 0.96rem;
  color: var(--cream-45);
  font-weight: 400;
}

.contact-socials { display: flex; gap: 22px; }
.contact-socials a {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.3s;
}
.contact-socials a:hover { opacity: 0.65; }

/* Form */
.form-group { display: flex; flex-direction: column; gap: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--cream-06);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 400;
  padding: 14px 16px;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.form-group select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.form-group select option { background: var(--bg-card); color: var(--cream); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-20); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-alt);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--cream-06);
  padding: 48px var(--pad);
  text-align: center;
}
.ft-logo {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream-70);
  letter-spacing: 0.04em;
}
.ft-copy {
  font-size: 0.74rem;
  color: var(--cream-20);
  margin-top: 10px;
  letter-spacing: 0.08em;
}

/* ---------- FLOATING SOCIAL BUTTONS ---------- */
.whatsapp-float,
.social-float a {
  position: fixed;
  right: 22px;
  z-index: 90;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float {
  bottom: 22px;
  background: #25D366;
}
.whatsapp-float:hover,
.social-float a:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,0.45); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* Stacked Instagram / Facebook buttons */
.social-float a { position: fixed; }
/* Instagram has no single brand colour — the official mark is a corner-to-corner
   gradient running yellow > orange > magenta > violet. */
.social-float .ig {
  bottom: 82px;
  background: radial-gradient(circle at 30% 107%,
    #FDF497 0%, #FDF497 5%, #FD5949 45%, #D6249F 60%, #285AEB 90%);
}
.social-float .fb { bottom: 142px; background: #1877F2; }
.social-float svg { width: 21px; height: 21px; fill: #fff; }

/* ---------- SCROLL REVEAL ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.12s; }
.fade-in.d2 { transition-delay: 0.24s; }
.fade-in.d3 { transition-delay: 0.36s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section-pad { padding: 70px var(--pad); }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.gap-0 { gap: 40px; }
  .two-col > div[style*="order:1"],
  .two-col > div[style*="order:2"] { order: 0 !important; }

  .img-badge-wrap img { height: 380px; }
  .badge-box { right: 16px; bottom: -18px; padding: 20px 24px; }
  .badge-box .num { font-size: 2.1rem; }

  .pc-image { min-height: 320px; }
  .pc-image img { position: relative; height: 320px; }

  .contact-grid { grid-template-columns: 1fr; gap: 46px; }

  .hero-content h1 { font-size: clamp(2.3rem, 9vw, 3.4rem); }

  /* Homepage private-chef teaser: kill the desktop side padding */
  .two-col.gap-0 > div[style*="padding:50px"] { padding: 0 !important; }
}

@media (max-width: 620px) {
  .exp-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 46vh; }
  .badge-box { right: 12px; }
  .whatsapp-float, .social-float a { right: 16px; width: 46px; height: 46px; }
  .whatsapp-float { bottom: 16px; }
  .social-float .ig { bottom: 70px; }
  .social-float .fb { bottom: 124px; }
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
  .hero-bg { transform: none; }
}

@media print {
  .nav, .mobile-menu, .whatsapp-float, .social-float, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; }
}