/* ============================================================
   CHEF TUNES — style.css
   Warm dark aesthetic, no frameworks
   ============================================================ */

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

:root {
  --ink:        #0e0c0a;
  --ink-soft:   #1c1916;
  --surface:    #161310;
  --card:       #1f1b17;
  --card-hover: #28231e;
  --border:     rgba(255,255,255,0.07);
  --gold:       #c9a96e;
  --gold-light: #e0c898;
  --cream:      #f5f0e8;
  --text:       #d4cfc8;
  --text-muted: #857e74;
  --white:      #ffffff;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1160px;
  --nav-h: 68px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--surface);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* --- UTILITIES --- */
.container {
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding-block: 96px; }
.center { text-align: center; }
.hidden { display: none !important; }

.section-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   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-inline: clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(14, 12, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,169,110,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a1410 0%, #0e0c0a 50%, #12100d 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--ink-soft); }

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

.about-badge-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.credential-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.credential-card:hover {
  border-color: rgba(201,169,110,0.25);
  background: var(--card-hover);
}

.credential-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.credential-label {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
}
.credential-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.about-text p {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}
.about-text .btn { margin-top: 0.5rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  padding: 2.5rem;
  position: relative;
  transition: background 0.25s var(--ease);
}
.service-card:hover { background: var(--card-hover); }
.service-card + .service-card { border-left: 1.5px solid var(--border); }
.service-card:nth-child(3) { border-top: 1.5px solid var(--border); border-left: none; }
.service-card:nth-child(4) { border-top: 1.5px solid var(--border); }

.service-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.18);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.2s;
}
.service-link:hover { color: var(--gold-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--ink-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.25s;
}
.testimonial-card:hover { border-color: rgba(201,169,110,0.2); }

.testimonial-text {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  flex: 1;
}
.testimonial-text::before { content: '\201C'; color: var(--gold); margin-right: 2px; }

.testimonial-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.12) 0%, transparent 65%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 96px;
}

.cta-inner {
  text-align: center;
  max-width: 620px;
}

.cta-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.97rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}
.footer-nav a {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-instagram:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(133,126,116,0.5);
  margin-top: 0.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.1) 0%, transparent 60%),
    var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero-heading {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto;
}

.contact-section { background: var(--surface); }

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

/* INFO SIDEBAR */
.contact-info-heading {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-info-list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.info-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 2px;
}

.contact-info-list strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.contact-info-list p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-langs {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.contact-langs strong { color: var(--cream); }

/* FORM */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-row { margin-bottom: 1.25rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}
.form-row.two-col + .form-row.two-col { margin-top: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.req { color: var(--gold); }

input, select, textarea {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.6; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23857e74' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--ink-soft); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) hue-rotate(5deg) saturate(0.7);
  cursor: pointer;
}

textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* SUCCESS */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-badge-col {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .credential-card { flex: 1; min-width: 140px; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 680px) {
  .section { padding-block: 64px; }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card + .service-card { border-left: none; border-top: 1.5px solid var(--border); }
  .service-card:nth-child(3) { border-left: none; }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap { padding: 1.75rem; }

  .footer-nav { flex-wrap: wrap; gap: 1.25rem; justify-content: center; }

  /* Mobile Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: rgba(14,12,10,0.98);
    backdrop-filter: blur(16px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { max-height: 360px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta {
    margin: 1rem 2rem !important;
    text-align: center !important;
    display: block !important;
    border-radius: 2px !important;
  }
}
