@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --forest: #2F4F3E;
  --wheat: #D8B26E;
  --wheat-dark: #8B6914;
  --cream: #FAF6EE;
  --olive: #4A5A44;
  --wheat-light: #E8D4A8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 300;
  color: var(--olive);
  background: var(--cream);
  line-height: 1.8;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Botanical pattern */
.botanical-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232F4F3E' fill-opacity='0.04'%3E%3Cpath d='M30 30c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zm-20 0c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 79, 62, 0.08);
  transition: box-shadow 0.4s;
}

header.scrolled { box-shadow: 0 2px 20px rgba(47, 79, 62, 0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo em {
  font-style: italic;
  color: var(--wheat);
  font-weight: 600;
}

nav ul { display: flex; list-style: none; gap: 2rem; }

nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  transition: color 0.3s;
}

nav a:hover, nav a.active { color: var(--forest); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg-contact {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: 40%;
}

.hero-bg-gallery {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position-x: center;
  background-position-y: 60%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47,79,62,0.85) 0%, rgba(47,79,62,0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 6rem 2rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-leaf {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--cream);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--wheat);
  color: var(--forest);
}

.btn:hover { background: var(--wheat-light); }

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

.btn-outline:hover {
  background: var(--cream);
  color: var(--forest);
}

/* Sections */
section { padding: 6rem 0; }

.section-header { margin-bottom: 4rem; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wheat-dark);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-header p { max-width: 550px; color: var(--olive); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Editorial image */
.editorial-img {
  height: 550px;
  background-size: cover;
  background-position: center;
  border-radius: 0 80px 0 80px;
  overflow: hidden;
}

.editorial-img.round-left { border-radius: 80px 0 80px 0; }

/* Season cards */
.season-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 4px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.season-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(47,79,62,0.1);
}

.season-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.season-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.season-card p { font-size: 0.9rem; }

/* Event showcase */
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
  background: white;
  overflow: hidden;
}

.showcase-item:nth-child(even) { direction: rtl; }
.showcase-item:nth-child(even) > * { direction: ltr; }

.showcase-img {
  height: 350px;
  background-size: cover;
  background-position: center;
}

.showcase-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-text h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.showcase-text p { font-size: 0.95rem; }

/* Chef section */
.chef-section {
  background: var(--forest);
  color: var(--cream);
}

.chef-section h2, .chef-section h3 { color: var(--cream); }
.chef-section .section-label { color: var(--wheat); }
.chef-section p { opacity: 0.85; }

.chef-portrait {
  width: 280px;
  height: 350px;
  background-size: cover;
  background-position: center top;
  border-radius: 140px 140px 0 0;
  margin: 0 auto;
}

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.testimonial cite {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wheat-dark);
  font-style: normal;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--forest), var(--olive));
  color: var(--cream);
}

.cta-section h2 {
  color: var(--cream);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-section p { max-width: 480px; margin: 0 auto 2rem; opacity: 0.9; }

.cta-section .btn { background: var(--wheat); color: var(--forest); }

/* Page hero */
.page-hero {
  height: 55vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 70px;
}

.page-hero .hero-bg::after {
  background: linear-gradient(135deg, rgba(47,79,62,0.8), rgba(74,90,68,0.6));
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--cream);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  grid-auto-flow: row dense;
}

.gallery-instagram {
  grid-row: span 3;
  height: auto !important;
  background: none;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-instagram:hover { transform: none; }

.gallery-item {
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  transition: transform 0.4s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item.wide { grid-column: span 2; }

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.menu-season h3 {
  font-size: 1.75rem;
  border-bottom: 2px solid var(--wheat);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47,79,62,0.08);
}

.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.menu-item p { font-size: 0.85rem; color: #888; }

/* Feature list */
.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  border-bottom: 1px solid rgba(47,79,62,0.08);
  font-size: 0.9rem;
  position: relative;
}

.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--wheat);
}

/* Philosophy */
.philosophy-block {
  padding: 3rem;
  background: white;
  margin-bottom: 2rem;
  border-left: 4px solid var(--wheat);
}

.philosophy-block h3 { font-size: 1.5rem; margin-bottom: 1rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

form .field { margin-bottom: 1.5rem; }

form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(47,79,62,0.15);
  background: white;
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 2px;
}

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

form textarea { min-height: 140px; resize: vertical; }

/* Footer */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p { font-size: 0.85rem; opacity: 0.7; margin-top: 1rem; line-height: 1.8; }

footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 1.25rem;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a { font-size: 0.85rem; opacity: 0.7; transition: opacity 0.3s; }
footer a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 968px) {
  .grid-2, .grid-3, .contact-grid, .footer-grid, .menu-grid { grid-template-columns: 1fr; }
  .showcase-item, .showcase-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--cream);
    padding: 2rem;
    transform: translateY(-150%);
    transition: transform 0.4s;
    border-bottom: 1px solid rgba(47,79,62,0.1);
  }
  nav.open { transform: translateY(0); }
  nav ul { flex-direction: column; gap: 1.25rem; }
  .editorial-img { height: 350px; border-radius: 0 40px 0 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
