:root {
  --cream: #faf5ee;
  --cream-deep: #f1e7d9;
  --ink: #2e2620;
  --muted: #6f655a;
  --wine: #7a2e2e;
  --wine-deep: #5e2121;
  --gold: #c08a3e;
  --line: #e6dccd;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(70, 50, 30, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.1; }

.container { width: min(1140px, 90%); margin: 0 auto; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-deep); }
.btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-full { width: 100%; text-align: center; border: none; }

/* NAV */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
#nav.scrolled {
  background: rgba(250, 245, 238, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0.7rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.5rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; line-height: 1; color: #fff;
  transition: color 0.3s ease;
}
#nav.scrolled .brand { color: var(--wine); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; transition: color 0.2s ease;
}
#nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1.5px solid currentColor; padding: 0.5rem 1.2rem; border-radius: 50px;
}
#nav.scrolled .nav-cta { color: var(--wine) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: background 0.3s; }
#nav.scrolled .nav-toggle span { background: var(--ink); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: url('images/Photoroom_20251020_174039.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(40,28,20,0.72) 0%, rgba(40,28,20,0.35) 60%, rgba(40,28,20,0.25) 100%);
}
.hero-content { position: relative; max-width: 640px; padding: 7rem 0 3rem; }
.hero-content .eyebrow { color: #e8c98f; }
.hero h1 { font-size: clamp(3rem, 8vw, 5.5rem); margin-bottom: 1.2rem; }
.hero-sub { font-size: 1.2rem; font-weight: 300; max-width: 460px; margin-bottom: 2.2rem; opacity: 0.95; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 6rem 0; }
.section-cream { background: var(--cream-deep); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.section-lead { color: var(--muted); margin-top: 0.8rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li { padding-left: 1.8rem; position: relative; margin-bottom: 0.6rem; }
.about-list li::before {
  content: '✦'; position: absolute; left: 0; color: var(--gold);
}

/* FEATURES */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.feature-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600;
  color: var(--gold); margin-bottom: 0.5rem;
}
.feature h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.feature p { color: var(--muted); }
.features-note { text-align: center; color: var(--muted); font-style: italic; margin-top: 2.5rem; }

/* GALLERY */
.gallery { columns: 3; column-gap: 1rem; }
.gallery img {
  width: 100%; height: auto; margin-bottom: 1rem; border-radius: 10px;
  break-inside: avoid; box-shadow: 0 8px 24px rgba(70,50,30,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow); }

/* PRICING */
.pricing-subhead {
  font-size: 2rem; text-align: center; color: var(--wine);
  margin: 1rem 0 1.6rem;
}
.pricing-subhead:not(:first-of-type) { margin-top: 3.5rem; }
.pricing-sublead { text-align: center; color: var(--muted); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.price-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center;
  position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--wine); color: #fff; border-color: var(--wine); }
.price-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); }
.price-card.featured .price { color: #e8c98f; }
.price-serves { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.price-card.featured .price-serves { color: rgba(255,255,255,0.8); }
.price-card ul { list-style: none; text-align: left; }
.price-card li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-top: 1px solid var(--line); font-size: 0.95rem; }
.price-card.featured li { border-color: rgba(255,255,255,0.18); }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }
.price-card.featured li::before { color: #e8c98f; }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.35rem 1.1rem; border-radius: 50px; font-weight: 500;
}
.grazing-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: var(--wine); color: #fff; border-radius: var(--radius);
  padding: 2.2rem 2.6rem; margin-top: 2.5rem; box-shadow: var(--shadow);
}
.grazing-banner h3 { font-size: 1.9rem; margin-bottom: 0.4rem; }
.grazing-banner p { color: rgba(255,255,255,0.85); max-width: 620px; }
.grazing-banner .btn-primary { background: var(--gold); white-space: nowrap; }
.grazing-banner .btn-primary:hover { background: #a9742f; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2rem; font-style: italic; }

/* ORDER */
.order-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.order-intro h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.order-intro p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-list { list-style: none; }
.contact-list li { margin-bottom: 0.7rem; font-size: 1.05rem; }
.contact-list a:hover { color: var(--wine); }
.delivery-note {
  background: var(--cream-deep); border-left: 3px solid var(--gold);
  border-radius: 8px; padding: 0.9rem 1.1rem; margin-top: 1.5rem;
  font-size: 0.92rem; color: var(--ink);
}
.order-form {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow);
}
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; color: var(--muted); }
.req { color: var(--wine); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--line);
  border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: #fff;
  color: var(--ink); transition: border 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

/* FOOTER */
footer { background: var(--ink); color: #d9cdbe; padding: 3.5rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
footer .brand { color: #fff; }
.footer-tag { font-size: 0.9rem; color: #a99a88; margin-top: 0.3rem; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; color: #8a7c6c; margin-top: 2.5rem; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .about-grid, .order-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .grazing-banner { flex-direction: column; text-align: center; }
  .features, .pricing-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .about-img { order: -1; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 70%;
    background: var(--cream); flex-direction: column; justify-content: center;
    gap: 2rem; transition: right 0.35s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--ink) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 101; }
  .hero-content { padding-top: 8rem; }
}
@media (max-width: 520px) {
  .gallery { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .order-form { padding: 1.8rem; }
}
