/* ═══════════════════════════════════════════════════════
   Golden Hour Picnic Co. — warm luxury theme
   EDIT: brand colours live in :root below
   ═══════════════════════════════════════════════════════ */
:root {
  --cream: #faf6ef;
  --sand: #f1e8da;
  --ink: #2e2a24;
  --ink-soft: #6b6257;
  --gold: #b08d57;
  --gold-deep: #97754a;
  --white: #fffdf9;
  --radius: 14px;
  --shadow: 0 18px 45px -18px rgba(46, 42, 36, .28);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--gold-deep); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: .9rem;
}

.section { padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 4rem); }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-sub { color: var(--ink-soft); margin-top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  white-space: nowrap;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 10px 24px -10px rgba(176, 141, 87, .65); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-ghost { border-color: rgba(255, 253, 249, .75); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 253, 249, .14); }
.btn-outline { border-color: var(--gold); color: var(--gold-deep); }
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── Navigation ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.scrolled { background: rgba(250, 246, 239, .92); backdrop-filter: blur(10px); box-shadow: 0 6px 24px -18px rgba(46,42,36,.5); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  white-space: nowrap;
  text-decoration: none;
  color: var(--white);
  text-shadow: 0 1px 12px rgba(46, 42, 36, .45);
  transition: color .25s ease;
}
.nav-logo span { color: var(--gold); }
.nav.scrolled .nav-logo { color: var(--ink); text-shadow: none; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  text-decoration: none;
  color: rgba(255, 253, 249, .92);
  font-size: .92rem;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(46, 42, 36, .4);
  transition: color .25s ease;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); text-shadow: none; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: .6rem 1.4rem; font-size: .88rem; }
.nav-burger { display: none; }

/* ── Hero ── */
.hero { position: relative; min-height: 92svh; display: grid; place-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,42,36,.42) 0%, rgba(46,42,36,.18) 45%, rgba(46,42,36,.55) 100%);
}
.hero-content { position: relative; text-align: center; color: var(--white); padding: 6rem 1.5rem 3rem; max-width: 780px; }
.hero-content .eyebrow { color: #e6cfa4; }
.hero-sub { margin: 1.4rem auto 2.2rem; max-width: 560px; font-size: 1.06rem; color: rgba(255, 253, 249, .92); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── About ── */
.about { background: var(--white); }
.about-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 5; object-fit: cover; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text .btn { margin-top: .6rem; }

/* ── Gallery ── */
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 2vw, 1.4rem);
}
.gallery-grid img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-grid img:hover { transform: scale(1.025); box-shadow: var(--shadow); }

/* ── Packages ── */
.packages { background: var(--sand); }
.pkg-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem);
  align-items: stretch;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 34px -20px rgba(46,42,36,.35);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-card img { aspect-ratio: 700 / 520; object-fit: cover; }
.pkg-featured { outline: 2px solid var(--gold); }
.pkg-flag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--white);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}
.pkg-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.pkg-price { color: var(--ink-soft); font-size: .92rem; margin: .35rem 0 1rem; }
.pkg-price strong { color: var(--gold-deep); font-size: 1.25rem; font-family: var(--font-display); }
.pkg-body ul { list-style: none; margin-bottom: 1.5rem; }
.pkg-body li { padding-left: 1.4rem; position: relative; color: var(--ink-soft); font-size: .93rem; margin-bottom: .45rem; }
.pkg-body li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .8rem; }
.pkg-body .btn { margin-top: auto; text-align: center; }

/* ── How it works ── */
.how { background: var(--white); }
.how-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
  list-style: none; text-align: center;
}
.how-num {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--sand); color: var(--gold-deep);
  font-family: var(--font-display); font-size: 1.4rem;
}
.how-grid h3 { margin-bottom: .5rem; }
.how-grid p { color: var(--ink-soft); font-size: .95rem; }

/* ── Testimonials ── */
.quotes { background: var(--sand); }
.quotes-grid {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.5rem);
}
.quotes blockquote {
  background: var(--white);
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px -22px rgba(46,42,36,.35);
}
.quotes p { font-family: var(--font-display); font-size: 1.18rem; margin-bottom: 1rem; }
.quotes cite { color: var(--ink-soft); font-style: normal; font-size: .9rem; }

/* ── Booking form ── */
.book { background: var(--white); }
.book-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}
.book-intro p { color: var(--ink-soft); margin-top: 1.1rem; }
.book-note { font-size: .92rem; }
#bookingForm {
  background: var(--cream);
  border: 1px solid rgba(176, 141, 87, .25);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
#bookingForm label {
  display: block;
  font-size: .85rem; font-weight: 600;
  margin-bottom: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#bookingForm input, #bookingForm select, #bookingForm textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(46, 42, 36, .18);
  border-radius: 9px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
#bookingForm input:focus, #bookingForm select:focus, #bookingForm textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .18);
}
#bookingForm textarea { resize: vertical; }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
.btn-submit { width: 100%; font-size: 1rem; }
.btn-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.form-status { margin-top: 1rem; font-size: .92rem; font-weight: 500; min-height: 1.4em; }
.form-status.ok { color: #3d7a45; }
.form-status.err { color: #b3423a; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(255, 253, 249, .8); text-align: center; padding: 3.5rem 1.5rem 2.5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: .6rem; }
.footer a { color: #e6cfa4; }
.footer-fine { margin-top: 1.6rem; font-size: .8rem; color: rgba(255, 253, 249, .45); }

/* ── Mobile ── */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(46, 42, 36, .96);
    flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--white) !important; font-size: 1.3rem; }
  .nav-inner { gap: .6rem; padding-inline: 1rem; }
  .nav-logo { font-size: .95rem; }
  .nav-cta { margin-left: auto; padding: .55rem 1rem; font-size: .8rem; }
  .nav-burger {
    display: grid; gap: 5px;
    background: none; border: none; cursor: pointer; padding: .4rem; z-index: 60;
  }
  .nav-burger span { width: 24px; height: 2px; background: currentColor; color: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .nav.scrolled .nav-burger span { color: var(--ink); }
  .nav-links.open ~ .nav-burger span { color: var(--white); }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-grid, .book-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; }
  .how-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .quotes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
