/* =========  RESET + TOKENS  ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --cream: #f7f4ee;
  --bone: #ebe6da;
  --gold: #c89a3c;       /* logo gold but slightly muted for body use */
  --gold-light: #e3c47a;
  --hairline: #1a1a1a14;
  --text-muted: #5a554c;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max: 1480px;
  --gutter: clamp(20px, 5vw, 80px);

  --t1: 4rem;     /* hero h1 */
  --t2: 2.4rem;   /* section h2 */
  --t3: 1.5rem;   /* h3 */
  --tlead: 1.125rem; /* lead body */
  --tbody: 1rem;
  --tsmall: 0.8125rem;
  --teyebrow: 0.72rem;
}

@media (min-width: 768px) {
  :root {
    --t1: 6.4rem;
    --t2: 3.4rem;
    --t3: 1.8rem;
    --tlead: 1.25rem;
  }
}

body {
  font-family: var(--sans);
  font-size: var(--tbody);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

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

a { color: inherit; text-decoration: none; }
a.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity .2s;
}
a.text-link:hover { opacity: 0.6; }

/* ========= UTILITIES ========= */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow {
  font-family: var(--sans);
  font-size: var(--teyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow.on-dark { color: rgba(255,255,255,.72); }

.h-display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.h-display .it { font-style: italic; font-weight: 400; }
.h-display .bd { font-style: normal; font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background .25s, color .25s, transform .25s;
  cursor: pointer;
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn.btn-ghost { background: transparent; color: var(--ink); }
.btn.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.btn-light:hover { background: transparent; color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ========= NAV ========= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem var(--gutter);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.nav-logo img { height: 56px; transition: filter .3s; }
.nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1); /* white logo on dark hero */
}
.nav.scrolled .nav-logo img { filter: none; }

.nav-links {
  display: none;
  gap: 2.2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a { color: var(--paper); transition: color .25s; padding-bottom: 4px; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { opacity: 0.65; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.1rem;
  border: 1px solid currentColor;
  color: var(--paper);
  transition: background .25s, color .25s;
}
.nav.scrolled .nav-cta { color: var(--ink); }
.nav-cta:hover { background: var(--paper); color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--paper); }

/* Mobile hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--paper);
  transition: background .3s;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 400;
}
.mobile-menu .close-btn {
  position: absolute; top: 1.5rem; right: var(--gutter);
  background: none; border: none; color: var(--paper);
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-image: url('images/hero/hero-aa.jpg');
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.0) 30%,
    rgba(0,0,0,0.0) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(3rem, 7vw, 6rem);
  color: var(--paper);
}
.hero-eyebrow {
  margin-bottom: 1.2rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow .line {
  width: 32px; height: 1px;
  background: rgba(255,255,255,.6);
}
.hero h1 {
  font-size: var(--t1);
  margin-bottom: 1.6rem;
  max-width: 14ch;
}
.hero-sub {
  font-family: var(--sans);
  font-size: var(--tlead);
  font-weight: 300;
  line-height: 1.5;
  max-width: 38ch;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-actions .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-actions .btn:hover { background: transparent; color: var(--paper); }
.hero-actions .text-link { color: rgba(255,255,255,.85); font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Featured strip below hero */
.featured-strip {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 1.2rem var(--gutter);
  text-align: center;
  font-size: var(--tsmall);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.featured-strip span { white-space: nowrap; }
.featured-strip .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 1.2rem;
  vertical-align: middle;
}

/* ========= APPROACH SECTION ========= */
.approach {
  padding: clamp(5rem, 12vw, 10rem) 0;
  background: var(--paper);
}
.approach .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .approach .wrap { grid-template-columns: 1.1fr 1fr; }
}
.approach-text .eyebrow { margin-bottom: 1.5rem; }
.approach-text h2 {
  font-size: var(--t2);
  margin-bottom: 2rem;
  max-width: 14ch;
}
.approach-text p {
  font-size: var(--tlead);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: var(--ink);
  max-width: 50ch;
}
.approach-text p:last-of-type { margin-bottom: 2.5rem; }
.approach-text .signature {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.approach-text .signature::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--ink);
}

.approach-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone);
}
.approach-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.approach-caption {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  color: var(--paper);
  font-size: var(--tsmall);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}

/* ========= PORTFOLIO PREVIEW ========= */
.portfolio-preview {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hairline);
}
.section-head .lead h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 0.4rem;
}
.section-head .lead h2 .it { font-style: italic; font-weight: 400; }
.section-head .meta {
  font-size: var(--tsmall);
  color: var(--text-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
@media (min-width: 700px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--bone);
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item.tall { grid-row: span 2; aspect-ratio: 2/3; }
.portfolio-item.wide { grid-column: span 2; aspect-ratio: 3/2; }
.portfolio-item.square { aspect-ratio: 1/1; }
.portfolio-item.portrait { aspect-ratio: 3/4; }

.portfolio-cta {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

/* ========= COLLECTIONS ========= */
.collections {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.collections-intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 4rem;
}
.collections-intro h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 1rem 0 1.4rem;
}
.collections-intro h2 .it { font-style: italic; font-weight: 400; }
.collections-intro p {
  color: var(--text-muted);
  font-size: var(--tlead);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 800px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }

.tier {
  background: var(--cream);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,.08); }
.tier.feature { background: var(--ink); color: var(--paper); border-top-color: var(--gold); }
.tier.feature .tier-name,
.tier.feature .tier-desc,
.tier.feature .tier-feat { color: var(--paper); }
.tier.feature .tier-price-amt { color: var(--paper); }
.tier.feature .tier-feat li::before { background: var(--gold); }

.tier-tag {
  font-size: var(--teyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.tier.feature .tier-tag { color: var(--gold); }

.tier-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.tier-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  font-style: italic;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid currentColor;
  opacity: 1;
}
.tier-price-amt {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
}
.tier-price-unit {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.tier-feat {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.tier-feat li {
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.93rem;
  position: relative;
}
.tier-feat li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 1px;
  background: var(--ink);
}
.tier .tier-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.tier .tier-cta::after { content: '→'; transition: transform .2s; }
.tier .tier-cta:hover::after { transform: translateX(4px); }

.collections-addon {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.collections-addon strong { color: var(--ink); font-weight: 600; }

/* ========= EDITORIAL FEATURE STRIP ========= */
.feature-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  position: relative;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 60vh;
}
@media (min-width: 900px) {
  .feature-strip-inner { grid-template-columns: 1.2fr 1fr; }
}
.feature-strip-img {
  background-image: url('images/portfolio/coachella-valley-wedding-photography-aanda-43.jpg');
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  filter: grayscale(0.1);
}
.feature-strip-text {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 6vw, 5rem);
}
.feature-strip-text .eyebrow {
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.feature-strip-text h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.6rem;
  max-width: 16ch;
}
.feature-strip-text h2 .it { font-style: italic; font-weight: 400; }
.feature-strip-text p {
  font-size: var(--tlead);
  line-height: 1.65;
  color: rgba(255,255,255,.84);
  margin-bottom: 1.2rem;
  max-width: 44ch;
}

/* ========= FINAL CTA ========= */
.final-cta {
  background: var(--cream);
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
}
.final-cta .eyebrow { margin-bottom: 1.4rem; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.6rem;
  max-width: 16ch;
  margin-left: auto; margin-right: auto;
}
.final-cta h2 .it { font-style: italic; font-weight: 400; }
.final-cta p {
  font-size: var(--tlead);
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 2.8rem;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}
.footer-brand img {
  height: 70px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.4rem;
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,.7);
  max-width: 28ch;
}
.footer-col h4 {
  font-size: var(--teyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-family {
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.footer-family strong { color: var(--paper); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.06em;
}

/* ========= REVEAL ON SCROLL ========= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }


/* ========= SUB-PAGE HERO (smaller than landing hero) ========= */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.6) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(2.5rem, 6vw, 5rem);
  color: var(--paper);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: 18ch;
  margin-bottom: 1rem;
}
.page-hero h1 .it { font-style: italic; font-weight: 400; }
.page-hero .lead {
  font-size: var(--tlead);
  font-weight: 300;
  color: rgba(255,255,255,.92);
  max-width: 50ch;
}

/* ========= ABOUT ========= */
.about-story {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.about-story .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .about-story .wrap { grid-template-columns: 1fr 1.1fr; }
}
.about-story-text p {
  font-size: var(--tlead);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 56ch;
}
.about-story-text p strong { font-weight: 600; }
.about-story-image { aspect-ratio: 4/5; overflow: hidden; background: var(--bone); }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); }

/* ========= FAQ ========= */
.faq {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.faq h2 {
  font-family: var(--serif);
  font-size: var(--t2);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 3rem;
  max-width: 18ch;
}
.faq h2 .it { font-style: italic; font-weight: 400; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  max-width: 880px;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 1.5rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.6rem;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 60ch;
}

/* ========= PORTFOLIO PAGE — FULL GALLERY ========= */
.gallery-full {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.gallery-full .wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.6rem, 1vw, 1rem);
}
@media (min-width: 700px) { .gallery-full-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-full-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-full-item {
  overflow: hidden;
  background: var(--bone);
  cursor: zoom-in;
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .4s;
  display: block;
}
.gallery-full-item:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gallery-full-item.tall { grid-row: span 2; aspect-ratio: 2/3; }
.gallery-full-item.wide { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-full-item.square { aspect-ratio: 1/1; }
.gallery-full-item.portrait { aspect-ratio: 3/4; }

/* Gallery section dividers */
.gallery-section-label {
  font-family: var(--sans);
  font-size: var(--teyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline);
}
.gallery-section-label:first-of-type { margin-top: 0; }

/* ========= COLLECTIONS PAGE — FULL TIERS ========= */
.collection-full {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--hairline);
}
.collection-full:first-of-type { border-top: none; }
.collection-full .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .collection-full .wrap { grid-template-columns: 1fr 1fr; }
  .collection-full.alt .wrap > :first-child { order: 2; }
}
.collection-full-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone);
}
.collection-full-img img { width: 100%; height: 100%; object-fit: cover; }
.collection-full-text .tier-tag { margin-bottom: 0.6rem; }
.collection-full-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.6rem;
}
.collection-full-text .desc {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.collection-full-text .price-block {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 2rem;
}
.collection-full-text .price-block .amt {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.collection-full-text .feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  list-style: none;
  margin-bottom: 2rem;
}
@media (min-width: 600px) { .collection-full-text .feat-grid { grid-template-columns: 1fr 1fr; } }
.collection-full-text .feat-grid li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
}
.collection-full-text .feat-grid li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Wedding film add-on highlight */
.wedding-film {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.wedding-film .eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
}
.wedding-film h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.wedding-film h2 .it { font-style: italic; font-weight: 400; }
.wedding-film p {
  max-width: 56ch;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}
.wedding-film .price-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
}

/* ========= CONTACT PAGE ========= */
.contact-grid {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.contact-grid .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .contact-grid .wrap { grid-template-columns: 1.4fr 1fr; }
}

.contact-form {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.contact-form h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.field label {
  font-size: var(--teyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--sans); }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

.contact-info { padding: 0 0.5rem; }
.contact-info-block { margin-bottom: 2.4rem; }
.contact-info h3 {
  font-size: var(--teyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.contact-info-block p { font-size: 1.05rem; line-height: 1.5; }
.contact-info-block a { border-bottom: 1px solid var(--hairline); padding-bottom: 1px; }
.contact-info-block a:hover { border-color: var(--ink); }

/* ========= BLOG INDEX ========= */
.blog-grid {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.blog-grid .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 700px) { .blog-grid .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .blog-grid .grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  cursor: pointer;
  transition: transform .25s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bone);
  margin-bottom: 1.4rem;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-meta {
  font-size: var(--teyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========= INDIVIDUAL BLOG POST ========= */
.post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}
.post-meta {
  font-size: var(--teyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}
.post-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 2rem;
}
.post-wrap h1 .it { font-style: italic; font-weight: 400; }
.post-wrap .post-image {
  margin: 2rem 0 3rem;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.post-wrap .post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-wrap h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 3rem 0 1rem;
}
.post-wrap p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.post-wrap p strong { font-weight: 600; }
.post-wrap a.text-link { color: var(--ink); }
.post-wrap ul, .post-wrap ol {
  margin: 1rem 0 1.4rem 1.4rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
.post-wrap li { margin-bottom: 0.5rem; }


/* ========= EDITORIAL FEATURED IMAGE (full-width breakout) ========= */
.gallery-full-item.featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  margin: clamp(0.5rem, 1vw, 1.5rem) 0;
}
@media (min-width: 700px) {
  .gallery-full-item.featured { aspect-ratio: 21/9; }
}

/* ========= BASE PRICES DISCLAIMER ========= */
.base-prices-note {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem) 0;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.base-prices-note .wrap {
  max-width: 720px;
}
.base-prices-note .eyebrow {
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.base-prices-note p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 56ch;
  margin: 0 auto;
}
.base-prices-note p strong {
  font-style: normal;
  font-weight: 600;
}
