/* ============================================================
   KODY NG STUDIOS — Design System
   kodyngstudios.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@300;400;500&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */

:root {
  /* Colors */
  --color-cream:        #F5F0E8;
  --color-cream-alt:    #ECE3D3;
  --color-charcoal:     #2C2416;
  --color-taupe:        #8B7355;
  --color-hero-dark:    #1A1814;
  --color-white:        #FFFFFF;
  --color-divider:      #C4B49A;
  --color-card-border:  #D4C9B0;
  --color-overlay:      rgba(26, 24, 20, 0.45);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Cormorant Garamond', Georgia, serif;
  --font-label:    'Montserrat', sans-serif;

  /* Line Height */
  --line-height-display: 1.1;
  --line-height-body:    1.8;
  --line-height-label:   1.4;

  /* Layout */
  --max-width:     1200px;
  --content-width: 780px;
  --gutter:        clamp(24px, 5vw, 80px);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 140px;
  --space-3xl: 180px;

  /* Breakpoints (reference only — use media queries) */
  --bp-sm:  480px;
  --bp-md:  768px;
  --bp-lg:  1024px;
  --bp-xl:  1280px;
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: var(--line-height-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================================
   Typography
   ============================================================ */

h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: var(--line-height-display);
  color: var(--color-charcoal);
  letter-spacing: -0.01em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: var(--line-height-display);
  color: var(--color-charcoal);
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.3;
  color: var(--color-charcoal);
}

p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: var(--line-height-body);
  text-wrap: pretty;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

/* ============================================================
   Layout Utilities
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

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

.section--sm {
  padding: var(--space-lg) 0;
}

.section--dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--color-white);
}

.section--hero-dark {
  background: var(--color-hero-dark);
  color: var(--color-white);
}

.section--hero-dark h1,
.section--hero-dark h2,
.section--hero-dark h3,
.section--hero-dark p {
  color: var(--color-white);
}

/* Split Layout (50/50) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split__photo {
  position: relative;
  overflow: hidden;
}

.split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-2xl);
}

.split--reverse .split__photo {
  order: 2;
}

.split--reverse .split__content {
  order: 1;
}

.split--shift-right {
  padding-left: var(--gutter);
}

/* Style statement — landscape photo, uncropped, centered with text */
.style-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.style-statement__photo {
  flex: 1 1 55%;
}

.style-statement__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.style-statement__content {
  flex: 1 1 45%;
}

@media (max-width: 768px) {
  .style-statement {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

/* ============================================================
   Section Anatomy Components
   ============================================================ */

.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
  display: block;
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--color-taupe);
  margin: var(--space-sm) 0 var(--space-md);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header .eyebrow {
  margin-bottom: var(--space-sm);
}

.section-header h1,
.section-header h2 {
  margin-bottom: 0;
}

/* Centered section header */
.section-header--center {
  text-align: center;
}

.section-header--center .divider {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-charcoal);
  padding: 16px 40px;
}

.btn-primary:hover {
  background: var(--color-taupe);
}

.btn-ghost {
  color: var(--color-charcoal);
  background: transparent;
  border: 1px solid var(--color-charcoal);
  padding: 14px 38px;
}

.btn-ghost:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* Ghost on dark backgrounds */
.btn-ghost--light {
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-ghost--light:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
}

/* White button (for dark footer/sections) */
.btn-white {
  color: var(--color-charcoal);
  background: var(--color-white);
  padding: 16px 40px;
}

.btn-white:hover {
  background: var(--color-cream);
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-divider);
  padding: 0 var(--gutter);
  height: 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(44, 36, 22, 0.08);
}

/* Centered logo */
.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav__logo img {
  height: 96px;
  width: auto;
}

/* Left + right link groups */
.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav__links li {
  display: flex;
  align-items: center;
}

.nav__links--left {
  justify-content: flex-start;
}

.nav__links--right {
  justify-content: flex-end;
}

/* Fix: nav__links a color override must not bleed into the CTA button */
.nav__links .nav__cta {
  color: var(--color-white) !important;
}

.nav__links a {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 0 18px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--color-taupe);
}

/* Blog dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-toggle::after {
  content: '▾';
  font-size: 9px;
  transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--color-cream);
  border: 1px solid var(--color-divider);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  margin-left: 0;
  padding: 10px 20px;
  font-size: 11px;
}

.nav__dropdown-menu a:hover {
  background: rgba(139, 115, 85, 0.08);
}

/* Nav CTA */
.nav__cta {
  margin-left: 32px;
  padding: 10px 24px !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  justify-self: end;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__mobile a:hover {
  color: var(--color-taupe);
}

.nav__mobile .nav__mobile-cta {
  margin-top: var(--space-md);
  color: var(--color-white);
}

.nav__mobile .nav__mobile-cta:hover {
  color: var(--color-white);
}

/* ============================================================
   Hero (Full-bleed)
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 92svh;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  margin-top: -110px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-hero-dark);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.25);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--gutter);
  margin-top: calc(110px + var(--space-xl));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-white);
  opacity: 0.7;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.hero__tagline strong {
  font-weight: 400;
  font-style: italic;
}

.hero__location {
  font-family: var(--font-label);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.5;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-white);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonial {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-charcoal);
  text-wrap: balance; /* even out lines so quotes never orphan */
}

.testimonial--light {
  color: var(--color-white);
}

.testimonial-attr {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-top: var(--space-md);
}

.testimonial-attr::before {
  content: '—  ';
}

.testimonial-attr--light {
  color: rgba(245, 240, 232, 0.6);
}

/* Testimonial section wrappers */
.testimonial-section {
  padding: var(--space-xl) 0;
  text-align: center;
}

.testimonial-section .container--narrow {
  max-width: 760px;
}

/* Dark testimonial variant */
.testimonial-section--dark {
  background: var(--color-charcoal);
}

.testimonial-section--dark .testimonial {
  color: var(--color-white);
}

/* Two-column testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  text-align: left;
}

/* Full-bleed photo-background testimonial */
.testimonial-feature {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.testimonial-feature__bg {
  position: absolute;
  inset: 0;
  background: var(--color-hero-dark);
}

.testimonial-feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.testimonial-feature__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.testimonial-feature__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* When a full-bleed testimonial sits directly above a dark section, fade the
   photo's bottom into the dark background so the image's bright lower edge
   doesn't read as a hard seam line against the section below. */
.testimonial-feature:has(+ .cta-section) .testimonial-feature__overlay,
.testimonial-feature:has(+ .section--dark) .testimonial-feature__overlay {
  background:
    linear-gradient(to bottom, transparent 52%, var(--color-hero-dark) 90%),
    var(--color-overlay);
}

/* ============================================================
   Package Cards
   ============================================================ */

.package-card {
  border: 1px solid var(--color-card-border);
  background: var(--color-cream);
  padding: 48px 32px;
  position: relative;
}

.package-card.featured {
  border-color: var(--color-taupe);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-taupe);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

.package-price {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1;
  margin: var(--space-md) 0 var(--space-sm);
}

.package-price__from {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 2px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.package-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .package-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

.package-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

/* ============================================================
   Process Steps
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.process-step__number {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.process-step__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  opacity: 0.8;
}

.process-step__rule {
  width: 24px;
  height: 1px;
  background: var(--color-taupe);
  margin-bottom: var(--space-md);
}

/* ============================================================
   Gallery / Portfolio Grid
   ============================================================ */

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

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ============================================================
   Blog Cards
   ============================================================ */

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card__photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.blog-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card__tag {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: var(--space-xs);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.blog-card__excerpt {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__link {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-taupe);
  transition: letter-spacing 0.3s ease;
}

.blog-card__link:hover {
  letter-spacing: 0.25em;
}

/* ============================================================
   Differentiators / "Why Choose Us"
   ============================================================ */

.differentiators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl) var(--space-2xl);
}

.differentiator__number {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
}

.differentiator__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

.differentiator__body {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.8;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  background: var(--color-hero-dark);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-section h1,
.cta-section h2,
.cta-section p {
  color: var(--color-white);
}

.cta-section .eyebrow {
  color: rgba(139, 115, 85, 0.8);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: #0e0c09;
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
  text-align: center;
}

.footer__studio-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
}

.footer__location {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 4px;
}

.footer__email {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--color-taupe);
}

.footer__rule {
  width: 40px;
  height: 1px;
  background: rgba(196, 180, 154, 0.25);
  margin: var(--space-md) auto;
}

.footer__copyright {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.2);
}

@media (max-width: 768px) {
  .footer__location { color: rgba(245, 240, 232, 0.6); }
  .footer__email { color: rgba(245, 240, 232, 0.78); }
  .footer__copyright { color: rgba(245, 240, 232, 0.45); }
}

/* ============================================================
   Scroll Reveal Animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__scroll-line {
    animation: none;
  }
}

/* ============================================================
   Lightbox
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 20, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox__inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.5;
  padding: var(--space-md);
  transition: opacity 0.3s ease;
}

.lightbox__nav:hover {
  opacity: 1;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ============================================================
   Investment Page
   ============================================================ */

/* Package card extras */
.package-tax {
  font-size: 0.45em;
  font-weight: 300;
  color: var(--color-taupe);
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.package-tax-label {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-taupe);
  margin-top: -4px;
  margin-bottom: var(--space-md);
}

.package-divider {
  width: 100%;
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-md) 0;
}

.package-card.featured .package-divider {
  background: rgba(139, 115, 85, 0.4);
}

.package-summary {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
}

.package-complimentary {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-divider);
}

.package-card.featured .package-complimentary {
  border-color: rgba(139, 115, 85, 0.3);
}

.package-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--color-taupe);
  text-align: center;
  margin-top: var(--space-xl);
  opacity: 0.85;
}

/* Package list */
.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-list li {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--color-charcoal);
  padding-left: 20px;
  position: relative;
  opacity: 0.85;
}

.package-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-taupe);
  font-size: 12px;
  top: 2px;
}

/* Everything includes grid */
.investment-includes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.investment-include__icon {
  font-size: 16px;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.1em;
}

.investment-include__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.investment-include__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
}

/* Add-ons grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  max-width: 860px;
  margin: 0 auto;
}

.addon {
  background: var(--color-cream);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.addon__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-charcoal);
}

.addon__price {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-taupe);
  white-space: nowrap;
}

/* FAQ accordion */
.investment-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-lg);
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--color-cream);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--color-taupe);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-taupe);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item__icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
}

.faq-item.open .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item__answer p {
  padding-bottom: var(--space-md);
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .investment-includes {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .investment-includes {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   About Page
   ============================================================ */

/* Philosophy pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.about-pillar {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-divider);
}

.about-pillar__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--color-taupe);
  margin-bottom: var(--space-md);
}

.about-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.about-pillar__body {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.about-stat__number span {
  font-size: 0.55em;
  color: var(--color-taupe);
}

.about-stat__label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* My Team */
.about-team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 1040px;
  margin: 0 auto;
}

.about-team-member {
  text-align: center;
}

.about-team-member__photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  background: var(--color-card-border);
}

.about-team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-member__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 4px;
}

.about-team-member__role {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: var(--space-sm);
}

.about-team-member__bio {
  font-size: 17px;
  line-height: var(--line-height-body);
  color: rgba(44, 36, 22, 0.75);
  max-width: 460px;
  margin: 0 auto;
  text-wrap: balance; /* even out lines so the last line never orphans */
}

/* space between multi-paragraph bios */
.about-team-member__bio + .about-team-member__bio {
  margin-top: 0.85em;
}

@media (max-width: 600px) {
  .about-team {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Pull quote */
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-charcoal);
  quotes: none;
}

.about-quote__attr {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-taupe);
  font-style: normal;
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Page Hero (shorter variant — portfolio, about, etc.)
   ============================================================ */

.page-hero {
  position: relative;
  width: 100%;
  height: 56vh;
  min-height: 380px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -110px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-hero-dark);
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,24,20,0.2) 0%,
    rgba(26,24,20,0.5) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--gutter);
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0;
}

.page-hero__subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 1.9vw, 24px);
  color: rgba(245, 240, 232, 0.95);
  letter-spacing: 0.03em;
  margin-top: var(--space-md);
  margin-bottom: 0;
}

/* ============================================================
   Portfolio Filter Bar
   ============================================================ */

.portfolio-filter-bar {
  background: var(--color-cream);
  padding: var(--space-xl) 0 var(--space-md);
  position: sticky;
  top: 0;
  z-index: 50;
}

.portfolio-filters {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.portfolio-filter {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44, 36, 22, 0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  transition: color 0.3s ease;
  position: relative;
}

.portfolio-filter::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-taupe);
  transition: width 0.3s ease;
}

.portfolio-filter:hover {
  color: var(--color-charcoal);
}

.portfolio-filter.active {
  color: var(--color-charcoal);
}

.portfolio-filter.active::after {
  width: calc(100% - 44px);
}

/* Cinema / empty category state */
.portfolio-empty {
  text-align: center;
  padding: var(--space-2xl) 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--color-taupe);
}

/* ============================================================
   Portfolio Grid
   ============================================================ */

.container--portfolio {
  max-width: 1400px;
  padding: var(--space-md) var(--gutter) var(--space-lg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 6px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-hero-dark);
}

.portfolio-item--featured {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

/* Hover overlay */
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.82) 0%,
    rgba(26, 24, 20, 0.1) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item__overlay,
.portfolio-item:focus-within .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__couple {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item__couple,
.portfolio-item:focus-within .portfolio-item__couple {
  transform: translateY(0);
}

.portfolio-item__location {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  display: block;
  transform: translateY(8px);
  transition: transform 0.4s ease 0.05s;
}

.portfolio-item:focus-within .portfolio-item__location,
.portfolio-item:hover .portfolio-item__location {
  transform: translateY(0);
}

/* Entry animation (added by JS after render) */
@keyframes portfolioItemIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-item--enter {
  animation: portfolioItemIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-item--enter {
    animation: none;
  }
}

/* Empty state */
.portfolio-empty {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: rgba(245, 240, 232, 0.4);
  text-align: center;
  padding: var(--space-3xl) 0;
}

/* ============================================================
   Cinema play button overlay
   ============================================================ */

.portfolio-item--cinema .portfolio-item__overlay {
  opacity: 1;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.75) 0%,
    rgba(26, 24, 20, 0.15) 60%,
    transparent 100%
  );
}

.portfolio-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(245, 240, 232, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.portfolio-item__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent rgba(245, 240, 232, 0.9);
  margin-left: 4px;
}

.portfolio-item--cinema:hover .portfolio-item__play {
  border-color: var(--color-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-item--cinema:hover .portfolio-item__play::after {
  border-color: transparent transparent transparent var(--color-white);
}

/* ============================================================
   Portfolio Masonry (aspect-ratio preserving)
   ============================================================ */
.portfolio-gallery {
  padding: var(--space-sm) 0 var(--space-xl);
  background: var(--color-cream);
}

.portfolio-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.masonry__item[hidden] {
  display: none;
}

.masonry {
  column-count: 3;
  column-gap: 10px;
}

.masonry__item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: var(--color-card-border);
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  border-radius: 2px;
}

.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.masonry__item:focus-visible {
  outline: 2px solid var(--color-taupe);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .masonry { column-count: 2; }
}

@media (max-width: 540px) {
  .masonry { column-count: 1; }
}

/* ---- Cinema (YouTube films) ---- */
.cinema-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cinema-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--color-hero-dark);
  border-radius: 2px;
}

.cinema-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.cinema-item:hover img,
.cinema-item:focus-visible img {
  opacity: 1;
}

.cinema-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 1px solid rgba(245, 240, 232, 0.85);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cinema-item__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent rgba(245, 240, 232, 0.95);
}

.cinema-item:hover .cinema-item__play {
  background: rgba(139, 115, 85, 0.6);
  transform: translate(-50%, -50%) scale(1.08);
}

.cinema-item__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--color-white);
  background: linear-gradient(to top, rgba(26, 24, 20, 0.75), transparent);
  text-align: left;
}

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

/* ============================================================
   Video Modal
   ============================================================ */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 20, 0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: var(--space-lg) var(--gutter);
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal__inner {
  width: 100%;
  max-width: 1000px;
}

.video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.video-modal__title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.8);
  letter-spacing: 0.03em;
}

.video-modal__close {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.video-modal__close:hover {
  color: var(--color-white);
}

.video-modal__player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}

.video-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   Lightbox Caption
   ============================================================ */

.lightbox__caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  padding-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lightbox__caption-couple {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.lightbox__caption-location {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-taupe);
}

/* ============================================================
   Inline text link style
   ============================================================ */

.text-link {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-taupe);
  text-decoration: none;
  transition: letter-spacing 0.3s ease;
}

.text-link:hover {
  letter-spacing: 0.25em;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .differentiators {
    gap: var(--space-lg);
  }

  .split__content {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__logo {
    grid-column: 2;
  }

  .nav__hamburger {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .nav__mobile {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(40px, 10vw, 64px);
    letter-spacing: 0.15em;
  }

  /* Split layouts stack */
  .split {
    grid-template-columns: 1fr;
  }

  .split--shift-right {
    padding-left: 0;
  }

  .split__photo {
    aspect-ratio: 4/3;
    min-height: unset;
  }

  .split__photo--full {
    aspect-ratio: auto;
  }

  .split__photo--full img {
    height: auto;
  }

  .split--reverse .split__photo {
    order: 0;
  }

  .split--reverse .split__content {
    order: 1;
  }

  .split__content {
    padding: var(--space-lg) var(--gutter);
  }

  /* Grids */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-grid--two {
    grid-template-columns: 1fr;
  }

  .differentiators {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }

  .page-hero {
    height: 45vh;
    min-height: 300px;
    padding-top: 110px;
    box-sizing: border-box;
  }

  .page-hero__title {
    font-size: clamp(36px, 9vw, 56px);
    letter-spacing: 0.12em;
  }

  /* Typography scale down */
  h1 {
    font-size: clamp(34px, 8vw, 48px);
  }

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

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

  .section--sm {
    padding: var(--space-md) 0;
  }

  .testimonial-feature {
    padding: var(--space-xl) 0;
  }

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

  .testimonial-section {
    padding: var(--space-lg) 0;
  }

  .portfolio-gallery {
    padding-bottom: var(--space-lg);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .portfolio-item--featured {
    grid-row: span 1;
  }

  .hero__title {
    letter-spacing: 0.1em;
  }

  .page-hero__title {
    font-size: clamp(30px, 8vw, 44px);
    letter-spacing: 0.08em;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    align-self: stretch;
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   Experience Page — Process Timeline
   ============================================================ */

.process-container {
  width: 100%;
  padding: 0 var(--gutter);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(44, 36, 22, 0.15);
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--color-taupe);
  opacity: 0.45;
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--color-charcoal);
  letter-spacing: 0.01em;
}

.process-step__body {
  font-size: 16px;
  line-height: var(--line-height-body);
  color: rgba(44, 36, 22, 0.7);
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .investment-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-step__title {
    font-size: 20px;
  }
}

/* ============================================================
   Contact / Inquiry Form
   ============================================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.form-required {
  color: var(--color-taupe);
}

/* Required indicator rendered via CSS so the asterisk isn't part of the label's
   text — keeps Netlify's form-notification email titles clean (e.g. "Email:"
   instead of "Email *:"). */
.form-label--required::after {
  content: ' *';
  color: var(--color-taupe);
}

.form-input {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44, 36, 22, 0.25);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: rgba(44, 36, 22, 0.3);
  font-style: italic;
}

.form-input:focus {
  border-bottom-color: var(--color-taupe);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B7355' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: var(--line-height-body);
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  padding: var(--space-xs) 0;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(44, 36, 22, 0.3);
  border-radius: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--color-taupe);
  border-color: var(--color-taupe);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: 1.5px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-group-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: -8px;
}

.contact-submit {
  align-self: flex-start;
  margin-top: var(--space-sm);
  padding: 16px 48px;
}

/* ============================================================
   Journal / Blog
   ============================================================ */

/* Landing hero */
.journal-hero {
  background: var(--color-charcoal);
  padding: calc(68px + var(--space-lg)) var(--gutter) var(--space-lg);
  text-align: center;
}

.journal-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0;
}

.journal-hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(245, 240, 232, 0.55);
  max-width: 520px;
  margin: 10px auto 0;
  line-height: var(--line-height-body);
}

/* 4-tile category grid */
.journal-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: calc(100vh - 160px);
}

@media (max-width: 768px) {
  .journal-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 50vw);
    height: auto;
  }
}

@media (max-width: 480px) {
  .journal-categories {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 60vw);
  }
}

.journal-tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.journal-tile__bg {
  position: absolute;
  inset: 0;
}

.journal-tile__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.journal-tile:hover .journal-tile__bg img {
  filter: brightness(1);
}

.journal-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,10,0.75) 0%, rgba(20,16,10,0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.journal-tile:hover .journal-tile__overlay {
  background: linear-gradient(to top, rgba(20,16,10,0.6) 0%, rgba(20,16,10,0.1) 60%, transparent 100%);
}

.journal-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg);
}

.journal-tile__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 8px;
  transition: letter-spacing 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-tile:hover .journal-tile__label {
  letter-spacing: 0.12em;
}

.journal-tile__sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
  letter-spacing: 0.04em;
  margin: 0;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.journal-tile:hover .journal-tile__sub {
  opacity: 1;
  transform: translateY(0);
}

/* Subcategory hero */
.journal-sub-hero {
  background: var(--color-cream);
  padding: calc(var(--space-2xl) + 80px) var(--gutter) var(--space-xl);
}

.journal-sub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.journal-back {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-taupe);
  text-decoration: none;
  margin-bottom: var(--space-md);
  transition: color 0.2s ease;
}

.journal-back:hover {
  color: var(--color-charcoal);
}

/* Post card grid */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-lg);
}

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

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

.journal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.journal-card__photo {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.journal-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journal-card__category {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-taupe);
}

.journal-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 0;
  transition: color 0.2s ease;
}

.journal-card:hover .journal-card__title {
  color: var(--color-taupe);
}

.journal-card__excerpt {
  font-size: 15px;
  line-height: var(--line-height-body);
  color: rgba(44, 36, 22, 0.65);
  margin: 0;
}

.journal-card__date {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(44, 36, 22, 0.4);
  margin-top: 4px;
}

/* Post article */
.post-article {
  background: var(--color-cream);
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-lg) var(--gutter);
}

.post-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: var(--space-lg);
  text-align: center;
  text-wrap: balance; /* short display block: even every line so the last line never orphans */
}

.post-body p {
  font-size: 18px;
  line-height: var(--line-height-body);
  color: rgba(44, 36, 22, 0.8);
  margin-bottom: var(--space-md);
  text-wrap: balance; /* even every line so a paragraph never ends on a short orphan line */
}

/* photo-story posts (weddings/engagements/destination): center the caption text so it sits
   symmetric on the page, matching the centered intro. guides stay left-aligned (long-form). */
.post-article--weddings .post-body p,
.post-article--engagements .post-body p,
.post-article--destination .post-body p {
  text-align: center;
}

.post-body > :first-child {
  margin-top: 0;
}

.post-subhead {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.3vw, 29px);
  line-height: 1.25;
  color: var(--color-charcoal);
  margin: var(--space-lg) 0 var(--space-sm);
}

.post-subhead--sm {
  font-size: 19px;
  letter-spacing: 0.01em;
  margin: var(--space-md) 0 8px;
}

.post-list {
  margin: 0 0 var(--space-md);
  padding-left: 1.35em;
}

.post-list li {
  font-size: 18px;
  line-height: var(--line-height-body);
  color: rgba(44, 36, 22, 0.8);
  margin-bottom: 10px;
  padding-left: 4px;
}

.post-list li::marker {
  color: var(--color-taupe);
}

.post-body strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.post-photo-full {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 4px;
}

.post-photo-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 4px;
}

.post-photo-pair .photo-reveal {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.post-photo-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* two verticals side by side */
.post-photo-pair--portrait .photo-reveal {
  aspect-ratio: 2 / 3;
}

/* a lone vertical — centered, sized like one column of a pair */
.post-photo-portrait {
  max-width: 48%;
  margin: 0 auto 4px;
  overflow: hidden;
}

.post-photo-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- gallery width experiment (to revert: delete this block) --- */
.post-photo-full,
.post-photo-pair {
  max-width: var(--gallery-max, 2000px);
  margin-left: auto;
  margin-right: auto;
}
/* --- end gallery width experiment --- */

@media (max-width: 600px) {
  /* landscape pairs stack; portrait pairs stay 2-up (verticals fit) */
  .post-photo-pair:not(.post-photo-pair--portrait) {
    grid-template-columns: 1fr;
  }
  .post-photo-portrait {
    max-width: 80%;
  }
}

.post-details {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(44, 36, 22, 0.1);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

.post-detail__label {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: 4px;
}

.post-detail__value {
  font-size: 15px;
  color: var(--color-charcoal);
}

/* ============================================================
   Thank You Page
   ============================================================ */

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  padding: var(--space-xl) var(--gutter);
}

.thank-you-inner {
  max-width: 560px;
  text-align: center;
}

.thank-you__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  margin-bottom: 0;
  line-height: 1;
}

.thank-you__body {
  font-size: 18px;
  line-height: var(--line-height-body);
  color: rgba(44, 36, 22, 0.7);
  margin-bottom: var(--space-xl);
  text-wrap: balance;
}

.thank-you__spam {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--color-charcoal);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding: 16px 30px;
  margin-top: calc(var(--space-lg) * -1);
  margin-bottom: var(--space-xl);
}

.thank-you__spam strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.thank-you__spam-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-taupe);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you__links {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Testimonial Carousel
   ============================================================ */

.testimonials-section {
  background: var(--color-cream);
  padding: var(--space-lg) var(--gutter);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.testimonials-header .eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
}

.testimonial-carousel {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: testimonial-fade 0.45s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes testimonial-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Photo/placeholder hidden — this carousel is a typographic quote */
.testimonial-card__photo,
.testimonial-card__photo-placeholder {
  display: none;
}

.testimonial-card__body {
  padding: 0 var(--space-md);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-charcoal);
  max-width: 880px;
  margin: 0 auto var(--space-md);
}

.testimonial-card__name {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-taupe);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.testimonial-btn {
  background: none;
  border: 1px solid var(--color-card-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-charcoal);
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.testimonial-btn:hover {
  border-color: var(--color-taupe);
  background: var(--color-taupe);
  color: #fff;
}

.testimonial-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-card-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testimonial-dot.active {
  background: var(--color-taupe);
  transform: scale(1.4);
}

.testimonial-counter {
  display: none;
}

@media (max-width: 768px) {
  .testimonial-card__body {
    padding: 0 var(--space-sm);
  }

  .testimonial-card {
    min-height: 290px;
  }

  .testimonial-card__quote {
    font-size: 18px;
  }

  /* 20 dots overflow a phone — arrows only, kept on-screen */
  .testimonial-dots {
    display: none;
  }

  .testimonial-nav {
    gap: var(--space-2xl);
  }
}

.nowrap-heading {
  white-space: nowrap;
}

@media (max-width: 700px) {
  .nowrap-heading {
    white-space: normal;
  }
}

/* Tighter section spacing on mobile — placed after base rules to win the cascade */
@media (max-width: 768px) {
  .testimonials-section {
    padding: var(--space-md) var(--gutter);
  }

  .thank-you-section {
    padding: var(--space-lg) var(--gutter);
  }
}

/* ============================================================
   Decorative accent lines — opt-in per section via .has-accent.
   Thin asymmetric rules reaching in from the edges
   (upper-left + lower-right). Add .has-accent--top alongside it
   to show only the upper line (used where a bottom line would
   read as a divider against the following section).
   ============================================================ */
.has-accent {
  position: relative;
}

.has-accent::before,
.has-accent::after {
  content: '';
  position: absolute;
  height: 2px;
  width: clamp(70px, 11vw, 190px);
  background: var(--color-taupe);
  opacity: 0.65;
  pointer-events: none;
}

.has-accent::before {
  top: 20%;
  left: 0;
}

.has-accent::after {
  bottom: 20%;
  right: 0;
}

/* Decorative edge accents sit in the wide side margins on desktop. On narrower
   screens the centered text runs close to the edges, so the accents overlap the
   copy — hide them there. */
@media (max-width: 1024px) {
  .has-accent::before,
  .has-accent::after {
    display: none;
  }
}

/* ============================================================
   About intro: keep the portrait a natural size and let it
   stick in place while the longer story scrolls beside it.
   ============================================================ */
@media (min-width: 769px) {
  .split--sticky-photo .split__photo {
    align-self: start;
    position: sticky;
    top: 130px;
  }

  /* Show the full portrait, uncropped, rather than filling a fixed box */
  .split--sticky-photo .split__photo img {
    height: auto;
  }
}
