/* === V2 — Warm Modern Chef Design === */
:root {
  --bg: #faf8f5;
  --bg-dark: #1a1a1a;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --gold: #c8a250;
  --gold-light: #e8d5a0;
  --accent: #8b6914;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
a { color: var(--gold); text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Label */
.label {
  display: block;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.label-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 100%);
  z-index: 2;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}
.hero-label {
  font-size: .85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 12px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 32px;
}

/* === SECTIONS === */
.section {
  padding: 80px 0;
}
.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .label { color: var(--gold-light); }
.section-dark p { color: rgba(255,255,255,.75); }

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}

/* About photo */
.about-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 14px; }

.stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0d8cc;
}
.stats div { text-align: center; }
.stats strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--gold);
}
.stats span { font-size: .8rem; color: var(--text-light); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 32px;
  text-align: center;
}
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }

.step { text-align: center; padding: 24px 16px; }
.step-n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--text-light); }

/* Price box */
.price-box {
  max-width: 480px;
  margin: 40px auto 0;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--gold);
  padding: 48px 36px;
  text-align: center;
}
.price-from { font-size: .85rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 2px; }
.price-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 8px 0;
}
.cur { font-size: 1.2rem; vertical-align: super; margin-right: 4px; }
.price-per { color: rgba(255,255,255,.5); margin-bottom: 24px; }
.price-box ul {
  list-style: none;
  text-align: left;
  margin: 0 0 24px;
}
.price-box li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.price-box li::before { content: '✓ '; color: var(--gold); }

/* Contact */
.contact-info h2 { margin-bottom: 12px; }
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .95rem;
}
.contact-row a { color: var(--text); }

.contact-form-wrap {
  background: var(--white);
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
}
.contact-form-wrap h3 {
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--bg);
}
.contact-form-wrap textarea { min-height: 100px; resize: vertical; }
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 48px 24px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-links { margin-top: 12px; }
.footer-links a { color: rgba(255,255,255,.6); }
.copy { margin-top: 16px; font-size: .8rem; }
