/* ===========================================================
   Heirloom Kitchen Films — shared stylesheet
   =========================================================== */

:root {
  --cream: #F3ECDC;
  --paper: #EAE0C8;
  --oak: #B9895B;
  --walnut: #5C4430;
  --ink: #2B1F16;
  --sage: #7C8B6F;
  --dusty-blue: #6E8393;
  --rust: #B5563A;
  --gold: #C9974A;
  --white: #FFFFFF;

  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Karla', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --hand: 'Caveat', cursive;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--walnut);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: 3.4rem; font-weight: 500; }
h2 { font-size: 2.3rem; font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 600; }

p { margin: 0 0 1.1em; }

a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--walnut); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--rust);
  margin-bottom: 14px;
  display: block;
}

.lede {
  font-size: 1.2rem;
  color: var(--walnut);
  max-width: 640px;
}

.script {
  font-family: var(--hand);
  color: var(--rust);
  font-size: 2rem;
  line-height: 1.3;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 15px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
}
.btn-primary:hover { background: var(--walnut); color: var(--white); }

.btn-outline {
  background: transparent;
  border-color: var(--walnut);
  color: var(--walnut);
}
.btn-outline:hover { background: var(--walnut); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--walnut); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--oak);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--walnut);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a.active { color: var(--rust); }
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--walnut); color: var(--white) !important; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,14,9,0.72) 0%, rgba(20,14,9,0.38) 55%, rgba(20,14,9,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 32px;
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content h1 { color: var(--white); font-size: 3.1rem; margin-bottom: 0.35em; }
.hero-content p { color: var(--paper); font-size: 1.15rem; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.page-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,9,0.15) 0%, rgba(20,14,9,0.72) 100%);
}
.page-banner-content { position: relative; z-index: 2; padding: 48px 32px; max-width: var(--max); margin: 0 auto; width: 100%; }
.page-banner-content h1 { color: var(--white); margin-bottom: 6px; }
.page-banner-content p { color: var(--paper); margin: 0; font-size: 1.05rem; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.bg-paper { background: var(--paper); }
.bg-walnut { background: var(--walnut); color: var(--cream); }
.bg-walnut h2, .bg-walnut h3 { color: var(--cream); }
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

hr.rule {
  border: none;
  border-top: 1px solid var(--oak);
  width: 70px;
  margin: 22px auto;
}
.section-head.left hr.rule { margin-left: 0; }

/* ---------- Two-column layout ---------- */
.split {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.split > * { flex: 1 1 420px; }
.split img { border-radius: 4px; }
.split.reverse { flex-direction: row-reverse; }

/* ---------- Value / feature grid ---------- */
.feature-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.feature {
  flex: 1 1 280px;
  background: var(--white);
  border: 1px solid var(--paper);
  padding: 32px 28px;
  border-radius: 4px;
}
.feature .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--oak);
  display: block;
  margin-bottom: 10px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { margin-bottom: 0; color: var(--ink); font-size: 0.98rem; }

/* ---------- Steps (How it works) ---------- */
.step {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--paper);
}
.step:last-child { border-bottom: none; }
.step > * { flex: 1 1 420px; }
.step img { border-radius: 4px; }
.step-num {
  font-family: var(--serif);
  color: var(--oak);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Gallery (Films page) ---------- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.gallery-item { flex: 1 1 320px; }
.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
}
.gallery-item figcaption {
  margin-top: 10px;
  font-family: var(--hand);
  color: var(--sage);
  font-size: 1.15rem;
}
.gallery-item.wide { flex: 1 1 100%; }
.gallery-item.wide img { height: 460px; }

.notice-card {
  background: var(--paper);
  border-left: 4px solid var(--rust);
  padding: 26px 30px;
  border-radius: 3px;
  margin-bottom: 48px;
}
.notice-card p:last-child { margin-bottom: 0; }

/* ---------- Pricing cards (Packages page) ---------- */
.pricing-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}
.price-card {
  flex: 1 1 320px;
  background: var(--white);
  border: 1px solid var(--paper);
  border-radius: 4px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--rust);
  position: relative;
  transform: translateY(-10px);
}
.price-card .tag {
  position: absolute;
  top: -14px;
  left: 34px;
  background: var(--rust);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 700;
}
.price-card h3 { margin-bottom: 4px; }
.price-card .meta {
  color: var(--sage);
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.price-card .amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--rust);
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}
.price-card li {
  padding: 9px 0 9px 26px;
  position: relative;
  border-top: 1px solid var(--paper);
  font-size: 0.94rem;
}
.price-card li:first-child { border-top: none; }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.price-card .btn { text-align: center; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--oak);
  padding: 26px 0;
}
.faq-item:first-child { border-top: 1px solid var(--oak); }
.faq-item h3 {
  margin: 0;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item h3 .plus {
  font-family: var(--sans);
  color: var(--rust);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] h3 .plus { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--ink); }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Form (Book page) ---------- */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.form-field { flex: 1 1 260px; display: flex; flex-direction: column; }
.form-field.full { flex: 1 1 100%; }
label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--walnut);
  margin-bottom: 8px;
}
input, select, textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--oak);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rust);
}
.form-note {
  font-size: 0.88rem;
  color: var(--sage);
  margin-top: 18px;
}
#form-status {
  margin-top: 18px;
  font-weight: 700;
  color: var(--rust);
  display: none;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--walnut);
  color: var(--cream);
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: var(--paper); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 30px;
}
.footer-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid #4a3a2c;
}
.footer-brand { flex: 1 1 320px; }
.footer-brand img { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1) opacity(0.92); }
.footer-brand p { color: #c8b9a0; max-width: 320px; font-size: 0.94rem; }
.footer-col { flex: 1 1 160px; }
.footer-col h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #c8b9a0; font-size: 0.94rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #8a7862;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero { min-height: 560px; }
  .hero-content h1 { font-size: 2.4rem; }
  .nav-links { display: none; }
  .split, .step { gap: 30px; }
  .price-card.featured { transform: none; }
  section { padding: 56px 0; }
}
