/* ===== Pricing tiles (card grid) ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

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

.package {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}

.package:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.package h2 {
    font-family: var(--serif);
}

.package h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 0 0 10px;
}

.package ul {
  margin: 0;
  padding-left: 18px;
}

.package ul li {
  margin: 8px 0;
}

.pricing-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* small note under sessions */
#sessions .note {
  color: var(--muted);
  margin-top: 12px;
}
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---- Custom Font: Higuen Serif ---- */
@font-face {
  font-family: 'Higuen Serif';
  src: url('fonts/Higuen Serif.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* -----------------------------
   Maysen Bradley Photography
   Luxury / Editorial Base Theme
   ----------------------------- */

/* CSS Reset (lightweight) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
    text-transform: uppercase;
}

section {
    border: none;
}

.container {
    border: none;
}

/* Theme Tokens */
:root {
  --bg: #ffffff;
  --text: #161616;
  --muted: #6f6f6f;
  --line: #ececec;
  --accent: #0f0f0f; /* button / hover */
  --cream: #fbfaf8; /* soft background */
  --brand-dark: #2d3142;
  --max: 1100px;
  --pad: clamp(16px, 4vw, 48px);
  --radius: 16px;

  /* Typography */
  --sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Higuen Serif', 'Playfair Display', ui-serif, Georgia, serif;
  --h1: clamp(34px, 6vw, 60px);
  --h2: clamp(24px, 3.6vw, 34px);
  --h3: clamp(18px, 2.6vw, 22px);
  --lead: clamp(14px, 2.2vw, 18px);
}

/* Base */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
}

.container {
  /* max-width: var(--max); */
  margin: 0 auto;
  /* padding-inline: var(--pad); */
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad);
}

/* 
.logo {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
*/

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  opacity: .9;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  font-weight: 700;
}

/* Brand container with left + center logos */
.brand-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}

.brand-left img {
  height: 100px;
  width: auto;
}

.brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand-center img {
  height: 200px;
  width: auto;
}

/* ---------------- Page Hero ---------------- */
.page-hero {
  padding: clamp(64px, 10vw, 140px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: var(--h1);
  line-height: 1.1;
  margin: 0 0 8px;
}

.page-hero .subtitle {
  color: var(--muted);
  font-size: var(--lead);
  max-width: 820px;
  margin: 0 auto;
}

/* ---------------- Home Hero (index) ---------------- */
.hero {
  padding: clamp(60px, 12vw, 140px) 0;
  text-align: center;
}

/* ---- Hero images (three floating photos) ---- */
.hero { position: relative; }

.hero-images {
  position: absolute;
  inset: 0;
  z-index: 1;        /* below text */
  pointer-events: none;
}

.hero-images img {
  position: absolute;
  object-fit: cover;
  border-radius: 0;            /* no rounded corners */
  border: 1px solid #000000;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  opacity: 0.65;               /* subtle transparency */
}

/* 1) top-left (small) */
.hero-images img:nth-child(1) {
  top: clamp(24px, 4vh, 40px);
  left: clamp(24px, 4vw, 40px);
  width: clamp(100px, 12vw, 160px);
  aspect-ratio: 1 / 1;
}

/* 2) center (large) */
.hero-images img:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 32vw, 520px);
  aspect-ratio: 4 / 3;
}

/* 3) bottom-right (small) */
.hero-images img:nth-child(3) {
  right: clamp(24px, 4vw, 40px);
  bottom: clamp(24px, 4vh, 40px);
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 1 / 1;
}

/* ensure text stays above */
.hero-inner { position: relative; z-index: 5; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 20px;
}

/* Buttons */
.button,
.btn {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.btn:hover,
.button:hover {
  background: var(--text);
  color: #fff;
}

/* ---------------- About Layout ---------------- */
.about {
  padding: clamp(40px, 6vw, 70px) 0;
}



.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: start;
  width: 80%;
}

.about-container {
    display: flex;
    justify-content: center;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-copy p {
  margin: 0 0 16px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy {
  font-size: var(--lead);
  color: var(--text);
}

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

/* ---------------- Highlights / Expect ---------------- */
.highlights {
  padding: clamp(40px, 6vw, 70px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  width: 80%;
}

.highlights h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  margin: 0 0 14px;
  text-align: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pill-list li {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
}

.pill-list-container {
    justify-content: center;
}

/* ---------------- Featured Grid (home) ---------------- */
#featured {
  background: #fff;
  border: none;
}

#featured h2 {
  font-family: var(--serif);
  font-size: 4em;
  margin: 0 0 14px;
  text-align: center;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.grid .span-4 {
  grid-column: span 4;
  border-radius: 0;
}

.grid .span-6 {
  grid-column: span 6;
  border-radius: 0;
}

.grid img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid .span-4,
  .grid .span-6 {
    grid-column: span 6;
  }
}

/* ---------------- Collections (home) ---------------- */
#collections {
    border: none;
}

#collections h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  margin: 0 0 10px;
}

#collections ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 10px 0 0;
}

#collections li {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  color: var(--muted);
}

.home-wedding-collection { 
    width: 1000px;
}

.wedding-collection-img {
    display: flex;
    justify-content: center;
}

/* ---------------- CTA ---------------- */
.cta {
  padding: clamp(48px, 8vw, 84px) 0;
  text-align: center;
}

.cta h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  margin: 0 0 8px;
}

.cta p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 16px;
}

/* ---------------- Footer ---------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: var(--muted);
}

.footer-grid a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------- Generic Sections ---------------- */
section {
  background: #fff;
}

section + section {
  border-top: 1px solid var(--line);
}

/* ---------------- Utilities ---------------- */
.text-center {
  text-align: center;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
}

.hide {
  display: none !important;
}

/* Optional: smooth hover for links */
.nav-links a {
  transition: opacity .2s ease;
}

/* Optional: make images softly rounded by default */
img {
  border-radius: 12px;
}

/* Ensure buttons don’t shrink on small screens */
.btn,
.button {
  white-space: nowrap;
}

/* ---- Imported from inline index defaults ---- */
.brand {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .04em;
}


section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.grid .span-6 {
  grid-column: span 6;
}

.grid .span-4 {
  grid-column: span 4;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid .span-6,
  .grid .span-4 {
    grid-column: span 6;
  }
}



/* ================= Amaretto‑inspired Editorial Tweaks ================= */

/* Global rhythm & headings */
:root {
  --space-xl: clamp(64px, 10vw, 140px);
}

section {
  padding: var(--space-xl) 0;
}

h1,
h2,
h3 {
  letter-spacing: .02em;
}

/* Nav: uppercase, airy */
.site-header .nav {
  padding-block: 18px;
}

.nav-links a {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.logo {
  letter-spacing: .06em;
}

/* HERO: full‑bleed cover with overlay */
.hero--cover {
  position: relative;
  min-height: 92vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
}

.hero--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .35));
}

/* ---- Hero (white variant) overrides ---- */
.hero--cover { background: #fff; background-image: none; }
.hero--cover::after { content: none; }
.hero--cover h1, .hero--cover .subtitle { color: #111; }

.hero--cover .hero-inner {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero--cover h1 {
  color: #000000;
  font-family: var(--serif);
  font-size: var(--h1);
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

.hero--cover .subtitle {
  color: #eaeaea;
  font-size: var(--lead);
  margin: 8px auto 22px;
  z-index: 2;
  position: relative;
}

.hero--cover .btn {
  border-color: #fff;
  color: #fff;
}

.hero--cover .btn:hover {
  background: #fff;
  color: #000;
}

/* Services (Offerings) — editorial numbered list */
#services {
    margin: 0;
    border: none;
}

.service-list {
  margin: 0;
  padding: 0;
  display: grid;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}

.service-list li {
  list-style: none;
  border-top: 1px solid black;
  padding: 14px 350px;
  /* text-align: center; */
}

.service-list li:first-child {
  padding: 14px 0px 14px 475px;
}

.service-list li:nth-child(5) {
  padding: 14px 475px 14px 0px;
}

.service-list li:last-child {
  border-bottom: 1px solid black;
  padding: 14px 0px 14px 520px;
}

.service-list a {
  display: block;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity .2s ease, border-color .2s ease;
}

.service-list a:hover {
  opacity: .7;
  border-color: var(--text);
}

/* Portfolio filter (anchor nav) */
.filter-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.filter-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 14px 0;
  margin: 0;
}

.filter-nav a {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
}

.filter-nav a:hover {
  background: #f7f7f7;
  border-color: #ddd;
  color: var(--text);
}

/* Portfolio grids a touch wider */
#featured .container,
.portfolio.container {
  max-width: 1200px;
}

/* Buttons: thinner outline for quieter luxury feel */
.btn,
.button {
  border-width: 1px;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* =============== Squarespace‑style Overrides (fonts/spacing/components) =============== */

/* Font palette + type scale overrides */
:root {
  --sans: 'Work Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Higuen Serif', 'Noto Serif', ui-serif, Georgia, serif;
  --h1: clamp(40px, 7vw, 72px);
  --h2: clamp(26px, 4vw, 40px);
  --h3: clamp(18px, 2.8vw, 24px);
  --lead: clamp(15px, 2.2vw, 19px);
  --max: 1200px; /* slightly wider content like the reference site */
}

/* Headings a touch airier */
h1,
h2,
h3 {
  letter-spacing: .02em;
}

h1,
.page-hero h1,
.hero h1 {
  font-family: var(--serif);
}

/* Nav: uppercase with subtle tracking already set; make size/weight feel like the reference */
.nav-links a {
  font-weight: 500;
}

.logo {
  font-family: var(--serif);
  font-weight: 700;
}

/* Buttons: thinner outline + slightly larger padding for a luxe, quiet look */
.button,
.btn {
  padding: 13px 22px;
  border-width: 1px;
  border-radius: 999px;
}

/* Section rhythm: more whitespace like Squarespace templates */
section {
  padding: clamp(64px, 9vw, 140px) 0;
}

/* Hero cover: increase headline impact on large screens */
.hero--cover h1 {
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 600;
}

.hero--cover .subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
}

/* Hero sub section */

.hero-sub-container {
  display: flex;
  flex-direction: column;    /* stack p and button vertically */
  align-items: center;        /* center horizontally */
  justify-content: center;    /* center vertically within section */
  gap: 16px;                  /* space between p and button */
  text-align: center;         /* center the text inside */
}

.hero-sub { 
    background-color: #2d3142;
    color: white;
}

.subtitle {
  width: 80%;
  margin: 0 auto;            /* center the block */
  text-align: center;
  font-size: 1.7em;
  font-family: 'Higuen Serif'; 
  
        /* center the text */
}

.hero-btn {
    padding: 13px 22px;
    border-width: 1px;
    border-radius: 999px;
    border: 1px solid white; 
}

/* ---------------- Intro ------------------ */
#intro {
    display: flex;
    flex-direction: column;    /* stack p and button vertically */
    align-items: center;        /* center horizontally */
    justify-content: center;    /* center vertically within section */
    gap: 16px;                  /* space between p and button */
    text-align: center;       /* center the text inside */
    border: none;
    background-color: #ececec;
}

#intro-container {
    display: flex;
    flex-direction: column;    /* stack p and button vertically */
    align-items: center;        /* center horizontally */
    justify-content: center;    /* center vertically within section */
    gap: 16px;                  /* space between p and button */
    text-align: center;
}

.intro-container {
    width: 80%;
}

.intro-container p {
    font-size: 1.1em;
}

.intro-cover {
    font-size: 4em;
    text-transform: uppercase;
}

/* Portfolio headings a bit larger */
.portfolio h2 {
  font-size: var(--h2);
  font-weight: 600;
}

/* ---------------- Booking / Contact Layout (Contact Page) ---------------- */
.booking-section {
  text-align: center;
  margin: 0;
  padding: 40px var(--pad);
  background: var(--cream);
  border-radius: 0;
}

.booking-section h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  margin-bottom: 10px;
}

.booking-section p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 18px;
}

/* Ensure the full-width booking band has no top border */
section.booking-section {
  border-top: none !important;
}

.booking-button {
  margin-top: 4px;
}

.contact-intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.contact-intro h2 {
  font-family: var(--serif);
  font-size: var(--h3);
  margin-bottom: 6px;
}

.contact-intro p {
  color: var(--muted);
}
/* ---------------- Booking Embed (Contact Page) ---------------- */
.booking-embed {
  max-width: 1100px;
  margin: 0 auto 32px;
}

.booking-embed iframe {
  width: 100%;
  min-height: 800px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.embed-note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* Direct contact block (Contact page) */
.direct-contact {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 40px;
}

.direct-contact-inner {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 24px 26px;
  background: var(--brand-dark);
  color: var(--cream);
}

.direct-contact h2 {
  font-family: var(--serif);
  font-size: var(--h3);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0 0 8px;
  color: var(--cream);
}

.direct-copy {
  margin: 4px 0 14px;
  font-size: 0.98rem;
  color: var(--cream);
}

.direct-email {
  margin: 0 0 8px;
}

.email-link {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--cream);
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--cream);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
  
.email-link:hover {
  background: var(--cream);
  color: var(--brand-dark);
}

.direct-location {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* Footer: lighter, quiet */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

/* ===== Font rendering fixes (Higuen Serif) ===== */
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Avoid synthetic bold on custom serif (use real bold later if available) */
.logo {
  font-weight: 400;
}

.hero--cover h1 {
  font-weight: 400;
}

.page-hero h1 {
  font-weight: 400;
}

.portfolio h2 {
  font-weight: 400;
}

/* Optional: tighten tracking slightly now that weight is lighter */
.hero--cover h1 {
  letter-spacing: .03em;
}

.page-hero h1 {
  letter-spacing: .02em;
}

/* ---------------- Services Editorial List: no hover/interaction ---------------- */
.service-list a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}

.service-list a:hover {
  opacity: 1;
}
. /* ===== Serif weight & synthesis safety (prevent faux bold/outline) ===== */
/* Apply to all spots that use the editorial serif so the browser won't synthesize bold/italic */
.hero--cover h1,
.page-hero h1,
.portfolio h2,
.service-list,
.service-list li,
.service-list a,
.brand,
.logo,
.about h2,
#featured h2,
#collections h2,
.cta h2,
h1,
h2,
h3 {
  font-weight: 400 !important;    /* ensure Regular, avoids faux bold */
  font-synthesis: none !important; /* block synthetic bold/italic rendering */
}

/* Also disable synthesis globally as a fallback (safe for modern browsers) */
body {
  font-synthesis-weight: none;
  font-synthesis-style: none;
}
/* === Collections image grid === */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 90%;
  margin: 0 auto;            /* center the grid block */
}

.collection-grid-container {          /* enable centering */
  justify-content: space-evenly;    /* center the grid wrapper */
}

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

.collections-grid .collection-card {
  display: block;
  padding: 25px;
}

.collections-grid .collection-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}


/* ===== Parallax band (image scrolls behind the site) ===== */
.parallax {
  position: relative;
  min-height: clamp(320px, 0vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-image: url('portfolio/IMG_7973.jpg'); /* change to any image you prefer */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* key for parallax */
}

/* soft dark overlay to keep text readable */
.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.35));
  pointer-events: none;
}

.parallax .parallax-title {
  font-family: var(--serif);
  font-size: clamp(28px, 5.5vw, 56px);
  letter-spacing: .03em;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.parallax .parallax-sub {
  margin: 0 0 16px;
  color: #ececec;
  position: relative;
  z-index: 1;
}

.parallax .btn {
  position: relative;
  z-index: 1;
  border-color: #fff;
  color: #fff;
}

.parallax .btn:hover {
  background: #fff;
  color: #000;
}

/* iOS/mobile fallback: disable fixed attachment for better performance */
@media (max-width: 900px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* ===== Package card thumbnails ===== */
.package .thumb {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;      /* keeps a consistent crop */
  object-fit: cover;
  border-radius: 12px;       /* matches site aesthetic */
  margin-bottom: 12px;       /* space before title */
}

/* If you prefer square crops, change aspect-ratio to 1 / 1 */

/* MOBILE OVERRIDE */
/* ===== Services (mobile responsiveness) ===== */
@media (max-width: 900px) {
  /* Scale the type slightly on smaller screens */
  .service-list {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  /* Reset large desktop paddings and center the lines */
  .service-list li {
    padding: 12px 16px !important;
    text-align: center !important;  /* overrides inline align styles */
  }

  /* Ensure the special-cased items also reset */
  .service-list li:first-child,
  .service-list li:nth-child(5),
  .service-list li:last-child {
    padding: 12px 16px !important;
  }
}
/* ===== Mobile Nav (CSS-only hamburger) ===== */
.nav-toggle { display: none; }
.hamburger { display: none; }

@media (max-width: 900px) {
  /* Shrink logos on mobile for better fit */
  .brand-left img { height: 64px; }
  .brand-center img { height: 120px; }
  /* Mobile: show only the left logo (6.svg); hide the centered logo */
  .brand-center { display: none; }

  /* Show hamburger button */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    height: 22px;
    cursor: pointer;
    margin-left: auto; /* push to right */
    z-index: 30;       /* above sliding panel */
  }
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
  }

  /* Turn the link row into a slide-in panel */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: #fff;
    border-left: 1px solid var(--line);
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 20;
  }

  /* When the checkbox is checked, reveal the menu */
  .nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }
}

/* ===== Socials: animated marquee + links ===== */
.socials {
  background: var(--brand-dark);
  color: var(--cream);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0; /* marquee is full-bleed height */
}

/* Marquee wrapper */
.marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background: var(--brand-dark);
  border: none;
}

/* Scrolling track */
.marquee__track {
  display: inline-block;
  will-change: transform;
  animation: marquee-left 18s linear infinite;
  padding-block: 18px;
  border: none;
}

.marquee span {
  font-family: var(--serif);
  font-size: clamp(34px, 7vw, 80px);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cream);
}

@keyframes marquee-left {
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}

/* Social buttons under marquee */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 22px var(--pad) 30px;
  border: none;
}

.btn-ghost {
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  font-size: 0.95rem;
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--brand-dark);
}

/* Dark variant (if you ever add section--dark) */

/* Mobile tweaks */
@media (max-width: 900px) {
  .marquee__track { padding-block: 14px; animation-duration: 22s; }
  .social-links { gap: 10px; padding-bottom: 22px; }
}
/* ===== Pricing page headings: use editorial serif ===== */
#sessions h2,
#weddings h2 {
  font-family: var(--serif) !important;  /* Higuen Serif */
  font-size: 4em;
  font-weight: 400;                      /* avoid faux bold */
  letter-spacing: .02em;
  display: flex;
  justify-content: center;
}
#
/* ===== Pricing: alternating media/details rows ===== */
.packages-rows {
  display: grid;
  gap: 36px;                 /* space between each row */
}

.package-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal, fluid halves */
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

/* swap order on alternating rows */
.package-row.reverse .package-media { order: 2; }
.package-row.reverse .package-info  { order: 1; }

/* Normalize media box so every row image is identical size */
.package-media {
  width: 100%;
  aspect-ratio: 3 / 2;          /* consistent canvas across rows */
  overflow: hidden;              /* crop overflow for mismatched sources */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

.package-media .thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;             /* crops to the 3:2 box */
  border-radius: 0;              /* radius now on wrapper */
}

.package-info h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 26px);
  margin: 0 0 10px;
}

.package-info ul {
  margin: 0;
  padding-left: 18px;
}

.package-info ul li {
  margin: 6px 0;
}

/* subtle divider between sections if desired */
#sessions .packages-rows + .note { margin-top: 12px; }

/* Mobile stacking */
@media (max-width: 900px) {
  .package-row {
    grid-template-columns: 1fr;   /* stack image over text */
    gap: 16px;
  }
  .package-row.reverse .package-media,
  .package-row.reverse .package-info {
    order: unset;                 /* default order when stacked */
  }
  .package-media { aspect-ratio: 4 / 3; }   /* a bit taller on phones */
}
/* ===== Footer: navigation + meta ===== */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  background: var(--brand-dark);
  padding: 24px 0;
  margin-top: 40px;
  color: var(--cream);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--serif);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cream);
}

.footer-copy {
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-nav a {
  opacity: .85;
  color: var(--cream);
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-contact {
  font-size: 13px;
  gap: 6px;
}

.footer-contact a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact .dot {
  opacity: .6;
}

@media (max-width: 780px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}