/* ===== Abby Jones Photography — Shared Styles ===== */

:root {
  /* Editorial wedding palette — warm, soft, ivory */
  /* Palette — warm neutral with sage/olive accents (~80% white/ivory, 15% cream/gray, 5% green) */
  --ivory: #F8F6F1;         /* Warm Ivory */
  --ivory-deep: #EEEAE1;    /* Soft Cream */
  --bone: #FBFAF6;          /* lighter than ivory for wash blocks */
  --ink: #292B28;           /* Charcoal */
  --ink-soft: #3E493D;      /* Deep Olive (used as ink alt for headings) */
  --muted: #74736D;         /* Warm Gray */
  --sage: #7D8874;          /* Muted Sage — primary accent */
  --terracotta: #7D8874;    /* legacy alias — mapped to sage so existing rules still work */
  --gold: #3E493D;          /* legacy alias — mapped to deep olive so existing rules still work */
  --line: rgba(41, 43, 40, 0.12);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
/* Solid-nav variant used on non-hero pages */
.nav--solid {
  position: relative;
  background: var(--bone);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-style: italic;
}
.nav__links {
  display: flex;
  gap: 40px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links a { transition: color 0.2s ease, opacity 0.2s ease; position: relative; }
.nav__links a:hover { color: var(--sage); opacity: 1; }
.nav__links a.is-active { color: var(--sage); }
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle svg { width: 24px; height: 24px; }
@media (max-width: 720px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bone);
    color: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
}
.hero--short { height: 62vh; min-height: 420px; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.10) 30%,
    rgba(0,0,0,0.05) 60%,
    rgba(0,0,0,0.35) 100%
  );
}
.hero__content {
  position: relative;
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 10vh, 120px);
}
.hero__eyebrow {
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
  opacity: 0.95;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 16ch;
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  max-width: 42ch;
  opacity: 0.95;
  margin-bottom: 40px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}
.hero__cta:hover { background: #fff; transform: translateY(-2px); }
.hero__cta svg { width: 14px; height: 14px; }

/* ===== SECTIONS ===== */
.section { padding: clamp(80px, 12vw, 160px) var(--gutter); }
.section--tight { padding: clamp(56px, 8vw, 100px) var(--gutter); }
.container { max-width: var(--max); margin: 0 auto; }
.section__label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.section__title em { font-style: italic; color: var(--ink-soft); }

/* ===== INTRO BANNER ===== */
.intro { background: var(--ivory); text-align: center; }
.intro__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.35;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto;
  font-weight: 400;
}
.intro__quote::before, .intro__quote::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--ink);
  margin: 28px auto;
  opacity: 0.35;
}
.intro__attr {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about { background: var(--bone); }
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about__image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__text .section__title { margin-bottom: 32px; }
.about__lead {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-weight: 400;
}
.about__body p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}
.about__locations {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.about__location { display: flex; flex-direction: column; gap: 6px; }
.about__location-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.about__location-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
}
@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image { aspect-ratio: 4 / 5; max-width: 480px; margin: 0 auto; }
  .about__locations { gap: 24px; }
}

/* ===== ABOUT — A LITTLE MORE ABOUT ME ===== */
.about-more { background: var(--ivory); }
.section.about-more { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.about-more__intro { max-width: 60ch; margin: 0 auto 32px; text-align: center; }
.about-more__intro .section__label { margin-bottom: 12px; }
.about-more__intro .section__title { color: var(--ink-soft); font-size: clamp(26px, 3vw, 34px); }
.family { margin: 0 auto 48px; max-width: 100%; }
.family__heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 20px;
  text-align: center;
  font-style: italic;
}
.family__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 2.5vw, 40px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.family__text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.family__text { max-width: 46ch; }
.family__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.family__photo { margin: 0; }
.family__photo--tall { grid-row: 1 / span 2; }
.family__ph {
  aspect-ratio: 3 / 4;
  background: var(--ivory-deep);
  border: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.family__photo--tall .family__ph { aspect-ratio: 3 / 4; }
.family__photo:not(.family__photo--tall) .family__ph { aspect-ratio: 4 / 3; }
.family__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: var(--ivory-deep);
}
.family__photo--tall .family__img { aspect-ratio: 3 / 4; }
.family__photo:not(.family__photo--tall) .family__img { aspect-ratio: 4 / 3; }
.family__photo figcaption {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 820px) {
  .family__grid { grid-template-columns: 1fr; }
  .family__photos { grid-template-columns: 1fr 1fr; }
  .family__photo--tall { grid-row: auto; grid-column: 1 / -1; }
  .family__photo--tall .family__ph { aspect-ratio: 4 / 3; }
}

.funfacts { max-width: 1180px; margin: 0 auto; }
.funfacts__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  margin: 0 0 40px;
}
.funfacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 1000px) { .funfacts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .funfacts__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }
.funfact {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  position: relative;
}
.funfact__num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--sage);
  opacity: 0.6;
}
.funfact__ph {
  aspect-ratio: 1 / 1;
  background: var(--ivory-deep);
  border: 1px dashed var(--line);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  overflow: hidden;
}
.funfact__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.funfact__title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.25;
  padding-right: 24px;
}
.funfact__body {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* ===== LOVE LETTER (single testimonial block) ===== */
.loveletter { background: var(--bone); text-align: center; }
/* Home "Kind Words" carousel — soft sage/gray background, tighter vertical padding */
.section.loveletter[data-testimonials] {
  background: #DDE1DA;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.loveletter__quote {
  max-width: 60ch;
  margin: 32px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  border: 0;
  padding: 0;
}
.loveletter__quote footer {
  margin-top: 24px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.tcarousel { max-width: 1000px; margin: 32px auto 0; position: relative; }
.tcarousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tcarousel__track::-webkit-scrollbar { display: none; }
.tslide {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 12px 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
/* Side-by-side layout when a photo is present */
.tslide--has-photo {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 40px 0;
}
.tslide__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.tslide__body { min-width: 0; }
.tslide--has-photo .tslide__quote { margin: 0; }
.tslide--has-photo .tslide__meta { text-align: left; }
.tslide__quote {
  max-width: 60ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  border: 0;
  padding: 0;
}
.tslide__quote p::before { content: "\201C"; }
.tslide__quote p::after { content: "\201D"; }
.tslide__meta {
  margin-top: 24px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Nav arrows */
.tcarousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.tnav {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.tnav:hover { border-color: var(--sage); color: var(--sage); }
.tnav--disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.tnav svg { width: 16px; height: 16px; }

/* Dots */
.tcarousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 12px;
}
.tdot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.tdot:hover { background: var(--muted); }
.tdot--active { background: var(--sage); transform: scale(1.25); }

@media (max-width: 720px) {
  .tslide { padding: 8px 20px 0; }
  .tslide--has-photo {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    padding: 8px 20px 0;
  }
  .tslide__photo { max-width: 240px; margin: 0 auto; }
}

/* Single (standalone) testimonial — used on About page */
.tslide--single {
  margin: 32px auto 0;
  padding: 0;
}
.tslide--single.tslide--has-photo {
  padding: 0;
}

/* Love letter CTA (About page) */
.loveletter__cta {
  margin-top: 64px;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.loveletter__cta-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.4;
}
.loveletter__cta-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  line-height: 1.6;
}
.loveletter__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}
.loveletter__cta-btn:hover { background: var(--sage); transform: translateY(-2px); }
.loveletter__cta-btn svg { width: 14px; height: 14px; }

/* ===== SERVICES ===== */
.services { background: var(--ivory); text-align: center; }
.services__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.services__intro { max-width: 100%; margin: 0 auto 56px; }
.services__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-weight: 500;
}
.services__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 auto;
  max-width: none;
  letter-spacing: 0.01em;
}
.services__title em { font-style: italic; color: var(--ink-soft); }
.services__title-rule {
  width: 40px;
  height: 1px;
  background: var(--ink-soft);
  opacity: 0.5;
  margin: 20px auto 0;
  border: 0;
}
.services__desc { display: none; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.service {
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.4s ease;
}
.service:hover { transform: translateY(-4px); }
.service__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bone);
  margin-bottom: 28px;
}
.service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service:hover .service__photo img { transform: scale(1.03); }
.service__body {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
}
.service__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 28ch;
}
.service__link {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service__link svg { width: 10px; height: 10px; }
@media (max-width: 820px) {
  .services__grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== GALLERY ===== */
.gallery { background: var(--bone); }
.gallery__head { text-align: center; margin-bottom: 80px; }
.gallery__head .section__title { margin-bottom: 16px; }
.gallery__head p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1.2vw, 20px);
}
/* Masonry: each photo shows at its natural aspect ratio, no cropping */
.gallery__grid {
  display: block;
  column-count: 3;
  column-gap: clamp(8px, 1.2vw, 20px);
  grid-template-columns: none;
}
.gallery__item {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: clamp(8px, 1.2vw, 20px);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  aspect-ratio: auto;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 820px) {
  .gallery__grid { column-count: 2; }
}
@media (max-width: 520px) {
  .gallery__grid { column-count: 1; }
}

/* Collection cards (galleries index) */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}
.collection {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: #fff;
  display: block;
}
.collection img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.collection::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.6) 100%);
}
.collection:hover img { transform: scale(1.06); }
.collection__caption {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  z-index: 1;
}
.collection__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}
.collection__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
}
.collections__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 1080px; margin: 0 auto; }
.collections__grid--two .collection { aspect-ratio: 4 / 5; }
@media (max-width: 820px) { .collections__grid { grid-template-columns: 1fr; } .collections__grid--two { grid-template-columns: 1fr; } }

/* Empty gallery state (for coming-soon collections) */
.gallery__empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
  background: var(--ivory);
}
.gallery__empty h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 400;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 17, 14, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 12px;
}
.lightbox__close { top: 20px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close svg, .lightbox__prev svg, .lightbox__next svg { width: 28px; height: 28px; }
.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  padding: 0 20px;
}

/* ===== PRICING ===== */
/* Hero strip — 4 photos with title overlay */
.pricing-hero {
  position: relative;
  isolation: isolate;
  padding: 0;
  background: var(--ivory);
}
.pricing-hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: clamp(320px, 48vw, 560px);
  overflow: hidden;
}
.pricing-hero__strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 20, 0.35);
  z-index: 1;
  pointer-events: none;
}
.pricing-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 4vw, 48px) var(--gutter);
  color: #F8F6F1;
}
.pricing-hero__overlay .section__label {
  color: rgba(248, 246, 241, 0.85);
  margin-bottom: 14px;
}
.pricing-hero__overlay .section__title {
  color: #F8F6F1;
  font-size: clamp(40px, 6vw, 72px);
  margin: 0 0 20px;
}
.pricing-hero__overlay .section__title em {
  color: rgba(248, 246, 241, 0.75);
}
.pricing-hero__sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: rgba(248, 246, 241, 0.92);
}
@media (max-width: 700px) {
  .pricing-hero__strip { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr 1fr; height: clamp(360px, 90vw, 520px); }
}

/* Jump-to buttons */
.pricing-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px) var(--gutter);
  background: var(--bone);
}
.pricing-jump__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid rgba(20, 22, 20, 0.14);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pricing-jump__btn:hover, .pricing-jump__btn:focus-visible {
  background: var(--sage);
  color: #F8F6F1;
  border-color: var(--sage);
}

/* Sage CTA box */
.pricing-cta-wrap { padding: clamp(20px, 3vw, 36px) 0 clamp(64px, 8vw, 120px); background: var(--ivory); }
.pricing-cta {
  background: var(--sage);
  color: #F8F6F1;
  border-radius: 8px;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-cta__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.1;
  color: #F8F6F1;
  margin: 0 0 16px;
  font-weight: 400;
}
.pricing-cta__title em { font-style: italic; color: rgba(248, 246, 241, 0.78); }
.pricing-cta__sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(248, 246, 241, 0.92);
  max-width: 56ch;
  margin: 0 auto 28px;
}
.pricing-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #F8F6F1;
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.pricing-cta__btn:hover { background: #fff; transform: translateY(-1px); }
.pricing-cta__btn svg { width: 16px; height: 16px; }

.pricing { background: #EFEBE3; }
.section.pricing { padding-bottom: clamp(32px, 5vw, 56px); }
.pricing__intro { max-width: 56ch; margin: 0 auto 80px; text-align: center; }
.pricing__intro p {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 24px;
  line-height: 1.75;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.tier {
  background: var(--ivory);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--line);
}
.tier--featured { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.tier--featured .tier__price, .tier--featured .tier__name { color: #fff; }
.tier--featured .tier__desc, .tier--featured .tier__include li { color: rgba(248,244,237,0.75); }
.tier--featured .tier__cta { background: var(--sage); color: #fff; }
.tier__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.tier--featured .tier__label { color: var(--sage); }
.tier__name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}
.tier__price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.tier__price small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}
.tier--featured .tier__price small { color: rgba(248,244,237,0.55); }
.tier__desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.tier__include { list-style: none; margin: 8px 0; }
.tier__include li {
  color: var(--ink-soft);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 22px;
}
.tier--featured .tier__include li { border-color: rgba(248,244,237,0.12); }
.tier__include li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.tier__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.tier__cta:hover { transform: translateY(-2px); }
.addons {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.addons__title {
  font-family: var(--serif);
  font-size: 28px;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 400;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.addon {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--ivory);
}
.addon__name {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
}
.addon__desc { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.addon__price {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }

/* ===== PRICING SECTIONS (flat mockup layout) ===== */
.psections { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(40px, 6vw, 72px); }
.psec { scroll-margin-top: 100px; }

/* Section header row: 01  Weddings ..................... Beginning at  $2,250 */
.psec__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.psec__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.psec__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
.psec__price {
  text-align: right;
  color: var(--ink);
}
.psec__price small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.psec__price strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
}

/* Includes list (used in Elopements & Portraits right column) */
.psec__includes { margin-bottom: 28px; }
.psec__group-head {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 18px;
}
.psec__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.psec__list li {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.psec__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 600;
}

/* Sage inquire button, small pill shape used inside sections */
.psec__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--sage);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.psec__cta:hover { background: var(--ink); transform: translateY(-2px); }
.psec__cta svg { width: 14px; height: 14px; }

/* --- Weddings: 3-tier card grid --- */
.ptiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}
.ptier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
}
.ptier--featured {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--ivory);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(41, 43, 40, 0.12);
}
.ptier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.ptier--featured .ptier__badge { background: var(--ivory); color: var(--sage); }
.ptier__name {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 8px;
  color: inherit;
}
.ptier__price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: inherit;
  margin: 0 0 24px;
  line-height: 1;
}
.ptier__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.ptier__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: inherit;
  line-height: 1.55;
}
.ptier__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 600;
}
.ptier--featured .ptier__list li::before { color: var(--ivory); }

.psec__cta-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* --- Elopements & Portraits: two-column split --- */
.psec__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.psec__hero-vertical {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  max-width: 340px;
  justify-self: start;
}
.psec__hero-vertical img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.psec__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Portraits: 3 photo tiles */
.psec__split--portraits { grid-template-columns: 1.35fr 1fr; }
.psec__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.psec__tile { margin: 0; display: flex; flex-direction: column; }
.psec__tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.psec__tile-cap {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .ptiers { grid-template-columns: 1fr; gap: 20px; }
  .ptier--featured { transform: none; }
  .psec__split, .psec__split--portraits { grid-template-columns: 1fr; }
  .psec__hero-vertical { max-width: 100%; }
  .psec__tiles { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (max-width: 540px) {
  .psec__head { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .psec__price { text-align: left; }
  .psec__tiles { grid-template-columns: 1fr 1fr; }
}

/* ===== INQUIRY FORM ===== */
.inquire { background: var(--bone); }
.section.inquire { padding-top: clamp(40px, 5vw, 64px); padding-bottom: clamp(64px, 9vw, 120px); }
.inquire__container { max-width: 780px; }
.inquire__head { text-align: center; margin-bottom: 32px; }
.inquire__head .section__title { margin-top: 8px; margin-bottom: 16px; }
.inquire__head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 14px;
  max-width: 62ch;
}
.inquire__form-wrap { margin: 0 auto; }
.inquire__detail {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 56px;
  text-align: center;
}

/* Top photo strip on the Inquire page (4 vertical photos across, no gaps) */
.inquire-photos { background: var(--bone); }
.inquire-photos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}
.inquire-photos__grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .inquire-photos__grid { grid-template-columns: repeat(2, 1fr); }
}
.inquire__detail-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
  display: block;
}
.inquire__detail-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.form {
  background: var(--ivory);
  padding: clamp(28px, 4vw, 48px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form__row--single { grid-template-columns: 1fr; }
.form__field { display: flex; flex-direction: column; }
.form__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form__input, .form__select, .form__textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.2s ease;
  width: 100%;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form__textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form__hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.form__submit {
  margin-top: 8px;
  padding: 18px 36px;
  background: var(--sage);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: var(--sans);
  width: 100%;
}
.form__submit:hover { background: var(--ink); transform: translateY(-2px); }
.form__submit:disabled { opacity: 0.5; cursor: wait; }
.form__honey {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form__status {
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 14px;
  display: none;
}
.form__status.is-visible { display: block; }
.form__status--ok { background: rgba(166, 167, 147, 0.2); color: var(--ink); border-left: 3px solid var(--sage); }
.form__status--err { background: rgba(193, 138, 108, 0.15); color: var(--ink); border-left: 3px solid var(--terracotta); }
@media (max-width: 820px) {
  .inquire__detail { flex-direction: column; align-items: center; gap: 24px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ===== CTA / CONTACT ===== */
.contact { background: var(--ink); color: var(--ivory); text-align: center; }
.contact__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  color: #fff;
}
.contact__title em { font-style: italic; color: var(--sage); }
.contact__sub {
  max-width: 50ch;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(248, 244, 237, 0.75);
}
.contact__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: var(--sage); color: #fff; }
.btn--primary:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: rgba(248, 244, 237, 0.35); }
.btn--ghost:hover { border-color: var(--sage); color: var(--sage); background: rgba(125, 136, 116, 0.08); }
.btn--dark { background: var(--ink); color: var(--ivory); }
.btn--dark:hover { background: var(--sage); color: #fff; }
.btn svg { width: 14px; height: 14px; }
.contact__detail {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(248, 244, 237, 0.12);
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(248, 244, 237, 0.7);
}
.contact__detail-item { display: flex; flex-direction: column; gap: 6px; }
.contact__detail-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.45);
}
.contact__detail-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ivory);
}
.contact__detail-value a:hover { color: var(--sage); }

/* ===== COMING SOON BANNER ===== */
.coming-soon {
  background: var(--ivory);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
}
.coming-soon__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.coming-soon__title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
.coming-soon__title em { font-style: italic; }
.coming-soon__desc {
  max-width: 52ch;
  margin: 0 auto 40px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--ivory); text-align: center; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.testimonial {
  background: var(--bone);
  padding: 40px 32px;
  text-align: left;
}
.testimonial__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.testimonial__attr {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 820px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(248, 244, 237, 0.55);
  padding: 36px var(--gutter);
  border-top: 1px solid rgba(248, 244, 237, 0.08);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer a { color: rgba(248, 244, 237, 0.7); }
.footer a:hover { color: var(--sage); }

/* PalmWeb credit chip */
.footer__palmweb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(248, 244, 237, 0.06);
  border: 1px solid rgba(248, 244, 237, 0.12);
  border-radius: 999px;
  color: rgba(248, 244, 237, 0.9);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.footer__palmweb:hover {
  background: rgba(248, 244, 237, 0.12);
  border-color: rgba(248, 244, 237, 0.28);
  color: #fff;
  transform: translateY(-1px);
}
.footer__palmweb-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.75);
}
.footer__palmweb-logo {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* ===== GALLERIES INDEX (mockup layout) ===== */
.galleries-intro { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(32px, 4vw, 56px); }
.galleries-intro .section__title { margin-top: 12px; margin-bottom: 20px; }
.galleries-intro__sub {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.gtile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.gtile:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 12px 32px rgba(41, 43, 40, 0.08);
}
.gtile__img { overflow: hidden; aspect-ratio: 4 / 5; }
.gtile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.gtile:hover .gtile__img img { transform: scale(1.04); }
.gtile__caption {
  padding: 24px 20px 28px;
  text-align: center;
}
.gtile__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.2;
}
.gtile__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.gtile__arrow {
  display: inline-flex;
  color: var(--ink-soft);
  transition: transform .25s ease, color .25s ease;
}
.gtile__arrow svg { width: 24px; height: 24px; }
.gtile:hover .gtile__arrow { transform: translateX(4px); color: var(--sage); }

.galleries-outro { padding-top: clamp(20px, 3vw, 36px); padding-bottom: clamp(64px, 9vw, 120px); }
.galleries-outro__text {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 auto 24px;
  max-width: 60ch;
  line-height: 1.7;
}
.galleries-outro__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--sage);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s ease, transform .2s ease;
}
.galleries-outro__btn:hover { background: var(--ink); transform: translateY(-2px); }
.galleries-outro__btn svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .gallery-tiles { grid-template-columns: 1fr; gap: 20px; max-width: 480px; }
}
