/* ==========================================================================
   Big Dawg Weddings — bigdawgweddings.com
   Palette pulled from the logo: saddle brown, cream, sunset amber, barn red
   ========================================================================== */

:root {
  --brown-900: #241408;
  --brown-800: #33200f;
  --brown-700: #4a2f17;
  --brown-600: #6b4423;
  --brown-500: #8b5a2b;
  --tan-300: #d9b382;
  --cream-200: #f4e3c4;
  --cream-100: #faf3e6;
  --amber-500: #e89b30;
  --amber-400: #f5b942;
  --red-600: #b3341f;
  --red-500: #d1402a;
  --ink: #2b1c10;
  --muted: #6f5a45;
  --line: rgba(107, 68, 35, 0.18);
  --shadow-sm: 0 2px 10px rgba(36, 20, 8, 0.08);
  --shadow-md: 0 12px 32px rgba(36, 20, 8, 0.14);
  --shadow-lg: 0 24px 60px rgba(36, 20, 8, 0.28);
  --radius: 14px;
  --radius-lg: 22px;
  --display: "Rye", "Georgia", serif;
  --body: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: 1160px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

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

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

a { color: var(--red-600); text-decoration: none; }
a:hover { color: var(--red-500); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.75rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red-600);
  margin-bottom: 0.6rem;
}

/* ------------------------------- Buttons -------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(180deg, var(--red-500), var(--red-600));
  color: #fff8ec;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  color: #fff8ec;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  border-color: var(--cream-200);
  color: var(--cream-100);
}
.btn-secondary:hover {
  background: var(--cream-200);
  color: var(--brown-800);
  transform: translateY(-2px);
}

.btn.full { width: 100%; }

/* ------------------------------- Header --------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(36, 20, 8, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--amber-500);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream-100);
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--amber-400); }
.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--amber-500);
  background: var(--brown-900);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--cream-200);
  color: var(--cream-100);
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a {
  color: var(--cream-200);
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 0.25rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--amber-400);
  transition: width 0.22s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { width: 100%; }

.site-nav .nav-cta {
  background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
  color: var(--brown-900);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
}
.site-nav .nav-cta::after { display: none; }
.site-nav .nav-cta:hover {
  color: var(--brown-900);
  filter: brightness(1.06);
}

/* -------------------------------- Hero ---------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 155, 48, 0.35), transparent 55%),
    linear-gradient(160deg, var(--brown-800) 0%, var(--brown-900) 60%, #1a0e05 100%);
  color: var(--cream-100);
  overflow: hidden;
}

.hero::before {
  /* subtle rope-stitch texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(244, 227, 196, 0.045) 0 2px, transparent 2px 9px);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: auto -12% -35% -12%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(232, 155, 48, 0.22), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  color: var(--cream-100);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.hero .eyebrow { color: var(--amber-400); }

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: rgba(244, 227, 196, 0.9);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.6rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-size: 0.94rem;
  color: rgba(244, 227, 196, 0.82);
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(180deg, rgba(250, 243, 230, 0.98), rgba(244, 227, 196, 0.94));
  border: 3px solid var(--amber-500);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  color: var(--brown-800);
}
.hero-card img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 1rem;
  border-radius: var(--radius);
}

.price-block {
  border-top: 2px dashed rgba(107, 68, 35, 0.35);
  padding-top: 1rem;
  display: grid;
  gap: 0.25rem;
}
.price-block span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red-600);
}
.price-block strong {
  font-family: var(--display);
  font-size: 3.1rem;
  line-height: 1;
  color: var(--brown-700);
}
.price-block small {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* -------------------------------- Strip --------------------------------- */

.strip {
  background: var(--brown-700);
  color: var(--cream-200);
  border-top: 3px solid var(--amber-500);
  border-bottom: 3px solid var(--amber-500);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 1.4rem 0;
}
.strip-grid div {
  display: grid;
  gap: 0.1rem;
  padding: 0.2rem 0.5rem;
  border-right: 1px solid rgba(244, 227, 196, 0.18);
}
.strip-grid div:last-child { border-right: none; }
.strip-grid strong {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--amber-400);
}
.strip-grid span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* ------------------------------ Sections -------------------------------- */

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section.band {
  background:
    linear-gradient(180deg, var(--cream-200), #efdcb8);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}
.section-heading p:last-child { color: var(--muted); font-size: 1.06rem; }

/* Services */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--amber-500);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}
.service-card h3 { color: var(--brown-700); }
.service-card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 3px dashed var(--brown-500);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.55), transparent 60%),
    linear-gradient(160deg, var(--tan-300), #c79a68);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.4rem;
  color: var(--brown-800);
  box-shadow: var(--shadow-md);
}
.portrait-placeholder span {
  font-family: var(--display);
  font-size: 3.6rem;
  line-height: 1;
}
.portrait-placeholder small {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.about-copy h2 { color: var(--brown-800); }
.about-copy p { color: var(--brown-700); }

.about-copy blockquote {
  margin: 1.6rem 0 0;
  padding: 1rem 1.3rem;
  border-left: 5px solid var(--red-600);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--brown-800);
}

/* Service area */

.area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: center;
}
.area-copy h2 { color: var(--brown-800); }
.area-copy > p { color: var(--muted); }

.towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.3rem 0;
}
.towns span {
  background: var(--cream-200);
  border: 1px solid var(--line);
  color: var(--brown-700);
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.fine-print {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

.map-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--brown-500);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    repeating-linear-gradient(0deg, rgba(107, 68, 35, 0.07) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(107, 68, 35, 0.07) 0 1px, transparent 1px 34px),
    linear-gradient(150deg, #e9d3aa, #d8bb8c);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.map-markers { position: absolute; inset: 0; }
.marker {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--red-600);
  color: #fff6e8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(36, 20, 8, 0.3);
  white-space: nowrap;
}
.marker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--red-600);
}
.marker.raleigh { top: 46%; left: 68%; }
.marker.durham { top: 34%; left: 38%; }
.marker.chapel { top: 62%; left: 30%; }

/* Testimonials */

.testimonials {
  background: linear-gradient(180deg, var(--brown-800), var(--brown-900));
  color: var(--cream-100);
}
.testimonials h2 { color: var(--cream-100); }
.testimonials .eyebrow { color: var(--amber-400); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin-inline: auto;
}
.quote-card {
  background: rgba(250, 243, 230, 0.07);
  border: 1px solid rgba(244, 227, 196, 0.22);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.quote-card p {
  font-size: 1.03rem;
  color: rgba(244, 227, 196, 0.95);
}
.quote-card strong {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-400);
}
.stars { color: var(--amber-400); letter-spacing: 0.18em; margin-bottom: 0.6rem; }

.sample-note {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(244, 227, 196, 0.6);
}

/* Booking */

.booking { background: var(--cream-200); }

.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: start;
}
.booking-copy h2 { color: var(--brown-800); }
.booking-copy > p { color: var(--muted); }

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 1.4rem 0 1rem;
  padding: 0.9rem 1.2rem;
  background: #fff;
  border: 2px solid var(--amber-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.booking-price span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
}
.booking-price strong {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--red-600);
  line-height: 1;
}

.booking-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.booking-copy li {
  padding-left: 1.7rem;
  position: relative;
  color: var(--brown-700);
  font-weight: 600;
}
.booking-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--red-600);
  font-weight: 800;
}

.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 0.9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown-700);
}
.booking-form input,
.booking-form textarea {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  border: 1.5px solid rgba(107, 68, 35, 0.3);
  border-radius: 10px;
  background: #fffdf8;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.booking-form textarea { resize: vertical; }
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(232, 155, 48, 0.25);
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.form-status {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.form-status.success {
  background: #e7f4e4;
  border: 1px solid #7fb571;
  color: #2f5c26;
}
.form-status.error {
  background: #fbe6e2;
  border: 1px solid var(--red-500);
  color: var(--red-600);
}
.form-status.pending {
  background: var(--cream-200);
  border: 1px solid var(--tan-300);
  color: var(--brown-700);
}

/* Final CTA */

.final-cta {
  background:
    radial-gradient(circle at 80% 30%, rgba(232, 155, 48, 0.28), transparent 60%),
    linear-gradient(120deg, var(--brown-700), var(--brown-900));
  color: var(--cream-100);
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  border-top: 3px solid var(--amber-500);
}
.final-cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 2.6rem);
  flex-wrap: wrap;
  text-align: left;
}
.final-cta img {
  width: 120px;
  border-radius: 50%;
  border: 3px solid var(--amber-500);
}
.final-cta h2 { color: var(--cream-100); margin-bottom: 0.2rem; }
.final-cta p { margin: 0; color: rgba(244, 227, 196, 0.85); }

/* Footer */

footer {
  background: #1a0e05;
  color: rgba(244, 227, 196, 0.78);
  padding: 2.6rem 0 2rem;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 1.6rem;
}
.footer-grid strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--amber-400);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-grid div:nth-child(2) {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}
.footer-grid a { color: rgba(244, 227, 196, 0.8); font-weight: 600; }
.footer-grid a:hover { color: var(--amber-400); }
.footer-grid p { margin: 0 0 0.3rem; }
.footer-grid div:last-child { text-align: right; }

/* ----------------------------- Animations ------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ------------------------------ Responsive ------------------------------ */

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .area-grid,
  .booking-grid { grid-template-columns: 1fr; }

  .hero-card { max-width: 420px; margin-inline: auto; }
  .about-image { max-width: 340px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid div:last-child { text-align: left; }
}

@media (max-width: 780px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(26, 14, 5, 0.98);
    border-bottom: 3px solid var(--amber-500);
    padding: 0.5rem 1.25rem 1.1rem;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(244, 227, 196, 0.12);
  }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta {
    margin-top: 0.8rem;
    text-align: center;
    border-bottom: none;
  }

  .strip-grid { grid-template-columns: 1fr 1fr; gap: 1rem 0; }
  .strip-grid div:nth-child(2) { border-right: none; }

  .final-cta .container { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .brand span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================ Packages & add-ons ======================== */

.packages {
  background:
    linear-gradient(180deg, var(--cream-100) 0%, #f2e6cf 100%);
  border-block: 1px solid var(--line);
}

.btn-outline {
  background: transparent;
  border-color: var(--brown-600);
  color: var(--brown-700);
}
.btn-outline:hover {
  background: var(--brown-700);
  color: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  align-items: start;
}

.package-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.package-card h3 {
  font-size: 1.6rem;
  color: var(--brown-700);
  margin-bottom: 0.15rem;
}
.package-tag {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px dashed rgba(107, 68, 35, 0.28);
}
.package-price strong {
  font-family: var(--display);
  font-size: 2.9rem;
  line-height: 1;
  color: var(--red-600);
}
.package-price span {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(111, 90, 69, 0.55);
}
.package-card ul {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
.package-card li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.97rem;
  color: var(--brown-700);
}
.package-card li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber-500);
  font-size: 0.9rem;
}

.package-card.featured {
  border: 3px solid var(--amber-500);
  background: linear-gradient(180deg, #fffdf7, #fff7e8);
  box-shadow: var(--shadow-md);
  padding-top: 2.5rem;
}
.package-card.featured h3 { color: var(--brown-800); }
.package-flag {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--red-500), var(--red-600));
  color: #fff6e8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* Add-ons */

.addons { margin-top: clamp(3rem, 6vw, 4.5rem); }
.addons .section-heading { margin-bottom: 2.2rem; }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.1rem;
}
.addon-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber-500);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.addon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.addon-card .icon {
  font-size: 1.7rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.addon-card h3 {
  font-size: 1.12rem;
  color: var(--brown-700);
  margin-bottom: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
}
.addon-card h3 em {
  font-family: var(--body);
  font-style: normal;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--red-600);
  background: var(--cream-200);
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
}
.addon-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

.fine-print.center { text-align: center; margin-top: 1.6rem; }

/* ========================= Vow renewals & blessings ===================== */

.renewals {
  background: linear-gradient(180deg, var(--cream-200), #ecd8b2);
  border-block: 1px solid var(--line);
}
.renewal-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}
.renewal-copy h2 { color: var(--brown-800); }
.renewal-copy > p { color: var(--brown-700); }
.renewal-copy ul {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.renewal-copy li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--brown-700);
}
.renewal-copy li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  color: var(--red-600);
  font-weight: 800;
}
.renewal-copy li strong { color: var(--brown-800); }

.renewal-card {
  background: linear-gradient(160deg, var(--brown-700), var(--brown-900));
  color: var(--cream-200);
  border: 3px solid var(--amber-500);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.renewal-icon { font-size: 3rem; display: block; margin-bottom: 0.8rem; }
.renewal-card p {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.45;
  margin: 0;
}

/* ===================== Booking form: select & add-ons =================== */

.booking-form select {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  border: 1.5px solid rgba(107, 68, 35, 0.3);
  border-radius: 10px;
  background: #fffdf8;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%236b4423' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.booking-form select:focus {
  outline: none;
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(232, 155, 48, 0.25);
}

.addon-picker {
  border: 1.5px solid rgba(107, 68, 35, 0.22);
  border-radius: 12px;
  padding: 0.9rem 1rem 1rem;
  margin: 0;
  background: #fffdf8;
}
.addon-picker legend {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-700);
  padding: 0 0.4rem;
}
.addon-picker label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--brown-700);
  padding: 0.28rem 0;
  cursor: pointer;
}
.addon-picker input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--red-600);
  padding: 0;
  margin: 0;
  border-radius: 4px;
}

@media (min-width: 560px) {
  .addon-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }
  .addon-picker legend { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .renewal-grid { grid-template-columns: 1fr; }
}
