/* ============================================================
   EVERLIGHT PHOTO AGENCY — Shared Design System
   Version 1.0 · Australia 2025
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cinzel+Decorative:wght@400&family=DM+Sans:ital,wght@0,200;0,300;0,400;0,500;1,300&display=swap');

/* ── CSS Variables ── */
:root {
  --white-linen:  #FAF7F2;
  --warm-cream:   #F4EFE6;
  --linen:        #EDE4D6;
  --champagne:    #D4B996;
  --taupe:        #B89880;
  --mid:          #7A6F66;
  --warm-gray:    #545454;
  --dark:         #2A2620;
  --border:       rgba(184, 152, 128, 0.22);
  --border-mid:   rgba(184, 152, 128, 0.40);

  --font-display: 'Cinzel', serif;
  --font-accent:  'Cinzel Decorative', serif;
  --font-body:    'DM Sans', sans-serif;

  --transition:   0.3s ease;
  --max-width:    1280px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white-linen);
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
}
.eyebrow-num {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--taupe);
  text-transform: uppercase;
  font-weight: 300;
}
.eyebrow-title {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 400;
}
.eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), transparent);
  opacity: 0.6;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--taupe);
  color: var(--white-linen);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 15px 36px;
  transition: background var(--transition), color var(--transition);
}
.btn-primary:hover { background: var(--dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--taupe);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--taupe);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline:hover { background: var(--taupe); color: var(--white-linen); border-color: var(--taupe); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: gap var(--transition);
}
.btn-ghost:hover { gap: 16px; }
.btn-ghost .arrow { font-style: normal; }

/* ── Diamond Decorator ── */
.diamond {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--taupe);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.diamond-sm {
  width: 4px;
  height: 4px;
}
.diamond-lg {
  width: 7px;
  height: 7px;
}

/* ── Logo images ── */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white-linen);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(42,38,32,0.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--taupe);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--taupe); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--taupe); }

.nav-cta {
  background: var(--taupe);
  color: var(--white-linen);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 11px 24px;
  font-weight: 400;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--dark); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--linen);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Hero photo fill — img inside .hero-photo-side fills absolutely */
.hero-photo-side > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gallery, team, about, portfolio img containers */
.gallery-cell img,
.portfolio-cell img,
.team-photo img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gallery cell hover zoom on real images */
.gallery-cell img,
.portfolio-cell img {
  transition: transform 0.5s ease;
}
.gallery-cell:hover img,
.portfolio-cell:hover img { transform: scale(1.04); }
.hero-content-side {
  display: flex;
  align-items: center;
  padding: 80px 72px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-inner { max-width: 520px; text-align: center;}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 22px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.hero-ever  { font-weight: 600; color: var(--dark); display: block; }
.hero-light { font-weight: 400; color: var(--taupe); display: block; }
.hero-rule {
  width: 52px;
  height: 1px;
  background: var(--champagne);
  margin: 28px 0;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 2.4;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    align-content: flex-start;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll-line { width: 32px; height: 1px; background: var(--champagne); opacity: 0.6; }
.hero-scroll-text {
  font-size: 7px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.65;
}

.hero-photo-side {
  position: relative;
  overflow: hidden;
  background: var(--warm-cream);
}
.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--warm-cream);
}
.hero-photo-placeholder svg { opacity: 0.2; }
.hero-photo-placeholder span {
  font-size: 8px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.5;
}
.hero-aside {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.hero-aside-line { width: 1px; height: 64px; background: rgba(184,152,128,0.3); }
.hero-aside-text {
  font-size: 7px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  writing-mode: vertical-lr;
  opacity: 0.55;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--warm-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.04em;
  display: block;
}
.stat-label {
  font-size: 8px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 5px;
  font-weight: 300;
}

/* ── ABOUT ── */
.about-section {
  background: var(--white-linen);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 72px;
  align-items: start;
}
.about-divider { background: var(--border); align-self: stretch; }
.about-eyebrow {
  font-size: 7.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
  font-weight: 300;
  display: block;
}
.about-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 22px;
}
.about-text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 28px;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--warm-cream);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
}
.about-quote-block {
  border-left: 2px solid var(--champagne);
  padding-left: 26px;
  margin-bottom: 28px;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.about-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}

/* ── GALLERY ── */
.gallery-section {
  background: var(--warm-cream);
  padding: 88px 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.gallery-cell {
  position: relative;
  overflow: hidden;
  background: rgba(184,152,128,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-cell:first-child { grid-row: span 2; background: rgba(184,152,128,0.18); }
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gallery-placeholder svg { opacity: 0.2; }
.gallery-placeholder span {
  font-size: 7.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0.5;
}
.gallery-cell-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 7px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-cell:hover .gallery-cell-label { opacity: 0.7; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ── PACKAGES ── */
.packages-section { background: var(--linen); padding: 96px 60px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 0;
}
.pkg-card {
  background: var(--white-linen);
  padding: 44px 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease, border-color 0.35s ease;
  cursor: default;
}
.pkg-card:hover { background: var(--champagne); border-color: var(--taupe); }
.pkg-card.featured {
  background: var(--warm-cream);
  border-color: var(--champagne);
}
.pkg-card.featured:hover { background: var(--linen); border-color: var(--taupe); }
.pkg-featured-tag {
  display: inline-block;
  background: var(--champagne);
  color: var(--dark);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 18px;
  font-weight: 400;
}
.pkg-badge {
  font-size: 7.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
  display: block;
  font-weight: 300;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pkg-name em {
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  color: var(--taupe);
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.02em;
  
}
.pkg-price-from {
  font-size: 10px;
  font-family: var(--font-body);
  color: var(--mid);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.pkg-divider { height: 1px; background: var(--border); margin: 6px 0 20px; }
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pkg-features li {
  font-size: 14px;
  color: var(--mid);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pkg-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--taupe);
  margin-top: 7px;
  flex-shrink: 0;
}
.pkg-cta {
  margin-top: 28px;
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-mid);
  padding: 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  font-family: var(--font-body);
  font-weight: 400;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.pkg-cta:hover, .pkg-card.featured .pkg-cta {
  background: var(--taupe);
  color: var(--white-linen);
  border-color: var(--taupe);
}
.pkg-card.featured .pkg-cta:hover { background: var(--dark); border-color: var(--dark); }
.pkg-pricing-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ── Package add-on toggles ── */
.pkg-addons {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.pkg-addons-title {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 12px;
}
.pkg-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
}
.pkg-toggle:last-of-type { border-bottom: none; }
.toggle-label {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 6px;
  margin-right: 14px;
}
.toggle-name {
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
  flex: 1;
}
.toggle-price {
  font-size: 14px;
  color: var(--taupe);
  font-weight: 400;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.pkg-toggle input[type="checkbox"] { display: none; }
.toggle-track {
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.toggle-track::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.pkg-toggle input:checked ~ .toggle-track { background: var(--taupe); }
.pkg-toggle input:checked ~ .toggle-track::after { transform: translateX(16px); }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--warm-cream);
  padding: 88px 120px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testi-diamond {
  width: 6px;
  height: 6px;
  background: var(--taupe);
  transform: rotate(45deg);
  margin: 0 auto 32px;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.testi-attr {
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
}

/* ── SERVICES ── */
.services-section { background: var(--white-linen); padding: 96px 60px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.service-card {
  background: var(--warm-cream);
  padding: 52px 48px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.service-card:hover { border-color: var(--taupe); }
.service-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  color: rgba(184,152,128,0.1);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
}
.service-bar { width: 36px; height: 1px; background: var(--taupe); margin-bottom: 28px; }
.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 28px;
}
.service-link {
  font-size: 8.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 16px; }

/* ── CONTACT CTA BAND ── */
.contact-band {
  background: var(--dark);
  padding: 88px 80px;
  text-align: center;
}
.contact-band-label {
  font-size: 8px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(184,152,128,0.55);
  font-weight: 300;
  margin-bottom: 20px;
  display: block;
}
.contact-band-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white-linen);
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.contact-band-title em {
  font-style: normal;
  color: var(--taupe);
}
.contact-band-sub {
  font-size: 13px;
  color: rgba(250,247,242,0.45);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.contact-band-btns { display: flex; gap: 16px; justify-content: center; }
.btn-primary-dark {
  display: inline-block;
  background: var(--taupe);
  color: var(--white-linen);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 15px 40px;
  transition: background var(--transition);
}
.btn-primary-dark:hover { background: var(--champagne); color: var(--dark); }
.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: rgba(250,247,242,0.55);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px 40px;
  border: 1px solid rgba(184,152,128,0.3);
  transition: border-color var(--transition), color var(--transition);
}
.btn-outline-dark:hover { border-color: var(--taupe); color: var(--taupe); }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 64px 80px 36px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(184,152,128,0.1);
}
.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184,152,128,0.4);
  margin-top: 14px;
  line-height: 2.4;
  font-weight: 300;
}
.footer-col-title {
  font-size: 7.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(184,152,128,0.4);
  margin-bottom: 22px;
  font-weight: 300;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 12px;
  color: rgba(250,247,242,0.35);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(250,247,242,0.7); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
}
.footer-copyright {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  color: rgba(184,152,128,0.25);
  text-transform: uppercase;
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(184,152,128,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: rgba(184,152,128,0.35);
  font-family: var(--font-body);
  transition: border-color var(--transition), color var(--transition);
}
.social-btn:hover { border-color: var(--taupe); color: var(--taupe); }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--linen);
  padding: 88px 80px 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero-label {
  font-size: 8px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
  display: block;
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero-title em { font-style: normal; color: var(--taupe); font-weight: 400; }
.page-hero-sub {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}
.page-hero-rule { width: 52px; height: 1px; background: var(--champagne); margin: 22px 0; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--white-linen); padding: 96px 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 88px; align-items: start; }
.contact-info-label {
  font-size: 7.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 22px;
  display: block;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-info-text {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 36px;
}
.contact-detail { margin-bottom: 16px; }
.contact-detail-label {
  font-size: 7px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
  display: block;
  margin-bottom: 5px;
}
.contact-detail-value {
  font-size: 13px;
  color: var(--dark);
  font-weight: 300;
}
.contact-detail-divider { height: 1px; background: var(--border); margin: 18px 0; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 7.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 300;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--warm-cream);
  border: 1px solid var(--border);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--mid); opacity: 0.5; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--taupe); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  background: var(--taupe);
  color: var(--white-linen);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 16px;
  margin-top: 8px;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}
.form-submit:hover { background: var(--dark); }
.form-note {
  font-size: 10.5px;
  color: var(--mid);
  font-weight: 300;
  text-align: center;
  margin-top: 12px;
  opacity: 0.7;
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .navbar { padding: 0 40px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content-side { padding: 64px 40px; }
  .hero-photo-side { height: 480px; }
  .hero-aside { display: none; }
  .about-section { grid-template-columns: 1fr; padding: 64px 40px; }
  .about-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-cell:first-child { grid-row: span 1; }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonial-section { padding: 64px 40px; }
  .footer { padding: 48px 40px 28px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .gallery-section, .packages-section, .services-section, .gallery-section { padding: 56px 24px; }
  .about-section { padding: 56px 24px; }
  .contact-band { padding: 64px 24px; }
  .contact-band-btns { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 48px 24px 24px; }
  .pkg-pricing-cta { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}
