/* ============================================
   Humble Handfasting — Site Styles
   ============================================ */

:root {
  --parchment: #f5efe3;
  --cream: #faf6ec;
  --oat: #e8dfc9;
  --forest: #2d3b2a;
  --forest-light: #4a5e44;
  --moss: #6b7a5a;
  --clay: #b8663f;
  --ink: #2a2623;
  --muted: #6e645a;
  --gold: #b89968;
  --rule: #d9ceb6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.brand-knot { width: 22px; height: 22px; flex-shrink: 0; }
.nav-links {
  display: flex; gap: 36px;
  font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a.active { font-weight: 500; }
.nav-cta {
  background: var(--forest); color: var(--cream);
  padding: 10px 22px; border-radius: 2px;
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--forest-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--forest); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 120px 32px 100px;
  color: var(--cream);
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,18,0.35) 0%, rgba(20,26,18,0.65) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 900px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 em { font-style: italic; color: #ece0c2; }
.hero-sub {
  color: var(--cream);
  font-size: clamp(17px, 1.8vw, 21px);
  opacity: 0.95;
  max-width: 620px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Smaller hero for internal pages */
.hero-compact { min-height: 50vh; padding: 100px 32px 80px; }
.hero-compact h1 { font-size: clamp(38px, 5.5vw, 64px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--cream); color: var(--forest);
  padding: 16px 34px;
  font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  font-weight: 500;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); }

.btn-secondary {
  color: var(--cream);
  border-bottom: 1px solid rgba(245,239,227,0.6);
  padding: 16px 4px;
  font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s;
  font-weight: 400;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--cream); }

.btn-dark {
  background: var(--forest); color: var(--cream);
  padding: 18px 40px;
  font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s;
  font-weight: 500;
  border: none; cursor: pointer;
  font-family: inherit;
}
.btn-dark:hover { background: var(--forest-light); }

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */
.divider {
  display: flex; align-items: center; justify-content: center;
  margin: 80px auto; max-width: 200px;
}
.divider-line { flex: 1; height: 1px; background: var(--rule); }
.divider-knot { margin: 0 16px; width: 28px; height: 28px; opacity: 0.6; }

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-narrow { max-width: 780px; }
.section-wide { max-width: 1280px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
  font-weight: 500;
}
.eyebrow-light { color: var(--gold); opacity: 0.9; }

h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--forest);
  margin-bottom: 32px;
  font-weight: 400;
}

h3 {
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 500;
}

.lead, .intro-text {
  font-size: 22px;
  line-height: 1.65;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  max-width: 720px;
}
.lead p + p, .intro-text p + p { margin-top: 22px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ============================================
   HOME: Offerings
   ============================================ */
.offerings {
  background: var(--parchment);
  padding: 100px 32px;
}
.offerings-inner { max-width: 1100px; margin: 0 auto; }
.offerings-head { text-align: center; margin-bottom: 60px; }
.offerings-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.offering-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(45,59,42,0.2);
}
.offering-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.offering-card p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 16px;
  flex: 1;
}
.offering-price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--clay);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 24px;
}
.card-link {
  color: var(--forest);
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 4px;
  align-self: flex-start;
  font-weight: 500;
}
.card-link:hover { color: var(--clay); border-color: var(--clay); }

/* ============================================
   WHY HANDFASTING (dark section)
   ============================================ */
.why {
  background: var(--forest);
  color: var(--cream);
  padding: 120px 32px;
  text-align: center;
}
.why-inner { max-width: 780px; margin: 0 auto; }
.why h2 { color: var(--cream); margin-bottom: 36px; }
.why p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; line-height: 1.65;
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 20px;
  color: rgba(245,239,227,0.92);
}
.why em { color: var(--gold); font-style: italic; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 60px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--clay);
  line-height: 1; margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}
.step h3 { font-size: 24px; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 16px; }

/* ============================================
   TWO-COLUMN IMAGE + TEXT
   ============================================ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 100px 32px;
}
.two-col-reverse .two-col-img { order: 2; }
.two-col-img img {
  width: 100%; height: auto;
  border-radius: 2px;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.3);
}
.two-col-img.tall img { aspect-ratio: 4/5; object-fit: cover; }

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  max-width: 1600px;
  margin: 0 auto;
}
.gallery-strip img {
  width: 100%; aspect-ratio: 1/1.2;
  object-fit: cover;
}

/* ============================================
   PRICING PAGE: Package blocks
   ============================================ */
.package {
  max-width: 900px; margin: 0 auto 60px;
  padding: 60px 48px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.package-head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 20px;
}
.package-head h2 {
  color: var(--forest);
  font-size: 36px; margin: 0;
}
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--clay);
}
.package-desc {
  color: var(--muted);
  font-size: 18px;
  margin: 20px 0 28px;
  font-family: 'Cormorant Garamond', serif;
}
.package-list {
  list-style: none;
}
.package-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 16px;
  color: var(--ink);
}
.package-list li::before {
  content: "—"; position: absolute; left: 0;
  color: var(--clay);
  font-weight: 500;
}

.addons-block {
  max-width: 900px; margin: 0 auto;
  padding: 40px 48px;
  background: var(--parchment);
  border-radius: 4px;
}
.addons-block h3 {
  font-size: 22px; margin-bottom: 20px;
}

.legal-note {
  max-width: 900px; margin: 60px auto 0;
  padding: 32px 40px;
  background: var(--oat);
  border-left: 3px solid var(--clay);
  border-radius: 2px;
}
.legal-note h3 { font-size: 20px; margin-bottom: 12px; }
.legal-note p { color: var(--muted); font-size: 16px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 780px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--forest);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  font-size: 28px; color: var(--clay);
  transition: transform 0.25s;
  font-weight: 300;
  line-height: 1;
}
details[open] .faq-q::after { transform: rotate(45deg); }
details[open] .faq-q { color: var(--clay); }
.faq-a {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  max-width: 780px; margin: 0 auto;
  padding: 80px 32px;
}
.form {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 48px;
  margin-top: 40px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 24px;
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--parchment);
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 8px; }

.contact-alt {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 16px;
}
.contact-alt a { color: var(--forest); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: 120px 32px;
  background: var(--parchment);
}
.final-cta h2 { margin-bottom: 24px; }
.final-cta p {
  font-size: 19px; color: var(--muted);
  margin-bottom: 44px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink); color: var(--oat);
  padding: 60px 32px 40px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand .brand { color: var(--cream); }
.footer-tagline {
  font-size: 17px; color: rgba(232,223,201,0.6);
  margin-top: 12px; font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; font-size: 14px; }
.footer-links a { color: var(--oat); text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(232,223,201,0.4);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 20px 32px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .offerings-grid, .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 70px 24px; }
  .hero { min-height: 75vh; padding: 100px 24px 80px; }
  .hero h1 { font-size: 44px; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 24px;
  }
  .two-col-reverse .two-col-img { order: 0; }

  .gallery-strip { grid-template-columns: 1fr 1fr; }

  .package { padding: 40px 28px; }
  .package-head h2 { font-size: 28px; }

  .form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 36px; }
  .lead, .intro-text { font-size: 19px; }
  .why p { font-size: 19px; }
}
