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

:root {
  --green: #226B4A;
  --sage: #4F7A61;
  --light-green: #EDF4EF;
  --cream: #FAF9F4;
  --dark: #1C1C1C;
  --gray: #6B6B6B;
  --border: #E0DDD5;
  --gold: #9B7E3C;
  --white: #FFFEF9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--dark); line-height: 1.75; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
.serif { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }

/* ── Nav ── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,249,244,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
nav { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--green); letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--dark); transition: color .2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: var(--green) !important; color: #fff !important; padding: 10px 22px !important; border-radius: 4px !important; font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.06em !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--sage) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); padding: 20px 24px 28px; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--dark); display: block; }
.mobile-menu .nav-cta { display: inline-block; margin-top: 8px; }

/* ── Sections ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.page-top { padding-top: 68px; }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background-color: #1a2e22; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; opacity: 0.45; }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; margin: 0 auto; text-align: center; }
.hero-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.hero h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: #a8d4b8; }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 36px; line-height: 1.65; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 30px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all .2s; border: none; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--sage); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-green-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-green-outline:hover { background: var(--green); color: #fff; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll::after { content:''; display:block; width:1px; height:32px; background:rgba(255,255,255,0.3); }

/* ── Section labels ── */
.label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.section-title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.section-title span { color: var(--green); }
.section-sub { font-size: 16px; color: var(--gray); max-width: 540px; line-height: 1.7; }

/* ── Services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2px; background: var(--border); margin-top: 60px; border: 1px solid var(--border); }
.service-card { background: var(--white); padding: 40px 32px; transition: background .2s; }
.service-card:hover { background: var(--light-green); }
.service-icon { font-size: 32px; margin-bottom: 20px; }
.service-card h3 { font-size: 26px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 6px; }
.service-link::after { content: '→'; transition: transform .2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── About strip ── */
.about-strip { background: var(--dark); }
.about-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-strip img { width: 100%; height: 520px; object-fit: cover; border-radius: 2px; }
.about-text .label { color: #a8d4b8; }
.about-text h2 { color: #fff; font-size: clamp(30px, 3.5vw, 48px); margin-bottom: 20px; }
.about-text p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 16px; }
.about-quote { border-left: 2px solid var(--sage); padding-left: 20px; margin: 28px 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: #a8d4b8; line-height: 1.5; }

/* ── Blog grid ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 52px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-card-img { height: 220px; background: var(--light-green); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.blog-card h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--gray); margin-bottom: 18px; line-height: 1.65; }
.blog-read { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); }

/* ── Testimonials ── */
.testimonials { background: var(--light-green); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 52px; }
.testi-card { background: #fff; border-radius: 4px; padding: 36px 32px; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-family: 'Cormorant Garamond', serif; font-size: 19px; line-height: 1.55; color: var(--dark); margin-bottom: 20px; font-style: italic; }
.testi-name { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); }
.testi-event { font-size: 11px; color: var(--gray); }

/* ── CTA Banner ── */
.cta-banner { background: var(--green); padding: 80px 24px; text-align: center; }
.cta-banner h2 { font-size: clamp(32px, 4vw, 56px); color: #fff; margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; font-size: 13px; padding: 14px 36px; }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── Page Hero (inner pages) ── */
.page-hero { padding: 120px 24px 72px; background: var(--dark); text-align: center; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); color: #fff; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }

/* ── Services detail ── */
.service-detail { padding: 80px 0; }
.service-detail:nth-child(odd) { background: var(--white); }
.service-detail:nth-child(even) { background: var(--cream); }
.service-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-detail:nth-child(even) .service-inner { direction: rtl; }
.service-detail:nth-child(even) .service-inner > * { direction: ltr; }
.service-img { border-radius: 2px; overflow: hidden; }
.service-img img { width: 100%; height: 460px; object-fit: cover; }
.service-info .label { color: var(--sage); }
.service-info h2 { font-size: clamp(30px, 3.5vw, 48px); margin-bottom: 8px; }
.service-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--sage); margin-bottom: 20px; }
.service-info p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.includes-title { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); margin: 24px 0 12px; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.includes-list li { font-size: 14px; color: var(--gray); display: flex; align-items: flex-start; gap: 10px; }
.includes-list li::before { content: '✦'; color: var(--green); font-size: 10px; flex-shrink: 0; margin-top: 4px; }
.price-note { font-size: 13px; color: var(--gray); font-style: italic; margin-top: 10px; }

/* ── Menus ── */
.menu-season { margin-bottom: 56px; }
.menu-season h3 { font-size: 34px; color: var(--green); margin-bottom: 6px; }
.menu-season .season-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 28px; }
.menu-courses { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.course-block { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 24px 22px; }
.course-block h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.course-block ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.course-block li { font-size: 14px; color: var(--dark); line-height: 1.5; }
.course-block .note { font-size: 11px; color: var(--gray); font-style: italic; margin-top: 4px; }
.dietary-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0 16px; }
.diet-badge { font-size: 11px; font-weight: 600; background: var(--light-green); color: var(--green); padding: 6px 14px; border-radius: 20px; }

/* ── Meal prep steps ── */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; background: var(--border); border: 1px solid var(--border); margin: 52px 0; }
.step-block { background: var(--white); padding: 36px 28px; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; color: var(--light-green); font-weight: 700; line-height: 1; margin-bottom: 14px; }
.step-block h4 { font-size: 20px; margin-bottom: 8px; }
.step-block p { font-size: 14px; color: var(--gray); }

/* ── Blog post ── */
.blog-post-hero { padding: 120px 24px 60px; background: var(--dark); text-align: center; }
.blog-post-hero .blog-tag { color: #a8d4b8; margin-bottom: 16px; }
.blog-post-hero h1 { font-size: clamp(36px, 5vw, 64px); color: #fff; max-width: 760px; margin: 0 auto 16px; }
.blog-post-hero .meta { font-size: 13px; color: rgba(255,255,255,0.5); }
.blog-post-img { max-width: 860px; margin: -40px auto 0; padding: 0 24px; }
.blog-post-img img { width: 100%; height: 440px; object-fit: cover; border-radius: 4px; }
.blog-body { max-width: 720px; margin: 60px auto; padding: 0 24px 80px; }
.blog-body p { font-size: 16px; color: var(--dark); line-height: 1.9; margin-bottom: 22px; }
.blog-body h2 { font-size: 28px; color: var(--green); margin: 36px 0 12px; }
.blog-body .cta-line { font-size: 15px; font-style: italic; color: var(--sage); border-top: 1px solid var(--border); padding-top: 24px; margin-top: 36px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; padding: 80px 0; }
.contact-info h3 { font-size: 34px; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.contact-detail { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.c-item { display: flex; gap: 12px; align-items: flex-start; }
.c-icon { font-size: 18px; margin-top: 2px; }
.c-text strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage); margin-bottom: 2px; }
.c-text span { font-size: 15px; color: var(--dark); }
form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 6px; }
input, select, textarea { width: 100%; background: #fff; border: 1.5px solid var(--border); border-radius: 4px; padding: 12px 14px; font-size: 15px; font-family: 'Jost', sans-serif; color: var(--dark); transition: border-color .2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; cursor: pointer; }
.form-submit { margin-top: 8px; }
.form-submit button { width: 100%; padding: 16px; background: var(--green); color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background .2s; font-family: 'Jost', sans-serif; }
.form-submit button:hover { background: var(--sage); }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 8px; }
.success-msg { display: none; background: var(--light-green); border: 1px solid var(--green); border-radius: 4px; padding: 20px 24px; text-align: center; font-size: 15px; color: var(--green); }

/* ── Footer ── */
footer { background: #111; color: rgba(255,255,255,0.55); padding: 52px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: #a8d4b8; font-size: 24px; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 220px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col a:hover { color: #a8d4b8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 12px; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: rgba(255,255,255,0.4); font-size: 13px; transition: color .2s; }
.social-links a:hover { color: #a8d4b8; }

/* ── About page ── */
.about-intro { max-width: 1160px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img img { width: 100%; height: 580px; object-fit: cover; border-radius: 2px; }
.about-copy h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
.about-copy p { font-size: 15px; color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
.about-copy blockquote { border-left: 3px solid var(--green); padding: 12px 0 12px 24px; margin: 28px 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; color: var(--green); line-height: 1.45; }
.philosophy { background: var(--light-green); padding: 80px 24px; }
.philosophy-inner { max-width: 1160px; margin: 0 auto; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; }
.pillar { padding: 36px 28px; background: #fff; border-radius: 4px; }
.pillar-icon { font-size: 30px; margin-bottom: 16px; }
.pillar h4 { font-size: 22px; margin-bottom: 10px; }
.pillar p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-strip .container, .service-inner, .contact-grid, .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) .service-inner { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .blog-post-img img { height: 240px; }
  .about-img img, .service-img img { height: 320px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
