:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --bg-deep: #1b2230;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --ink: #1f2630;
  --ink-soft: #5f6874;
  --line: rgba(31, 38, 48, 0.1);
  --line-strong: rgba(31, 38, 48, 0.18);
  --accent: #d1a56d;
  --accent-soft: #f2dfbe;
  --accent-deep: #9b7344;
  --navy: #1f2937;
  --navy-soft: #2b3647;
  --olive: #56634f;
  --shadow: 0 24px 70px rgba(18, 23, 30, 0.15);
  --shadow-soft: 0 18px 42px rgba(18, 23, 30, 0.11);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at top left, rgba(209,165,109,0.12), transparent 22%),
    radial-gradient(circle at right center, rgba(86,99,79,0.08), transparent 18%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 46%, #efe7db 100%);
  color: var(--ink);
}
a {
  transition: color .25s ease, border-color .25s ease, transform .25s ease, opacity .25s ease, background-color .25s ease;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  position: relative;
  z-index: 1;
}
.section-shell {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: 140px;
}
.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section-title,
.hero-title {
  margin: 22px 0 0;
  letter-spacing: -.025em;
}
.section-title {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: .92;
  color: var(--navy);
}
.section-title.large {
  font-size: clamp(3.2rem, 5.8vw, 5rem);
}
.section-title.light {
  color: #fff;
}
.section-intro {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}
.section-intro.narrow {
  max-width: 720px;
}
.section-header {
  margin-bottom: 38px;
}
.section-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.96);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-kicker {
  color: var(--navy);
  border-color: rgba(31,38,48,0.12);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 10px 26px rgba(20, 27, 34, 0.05);
}
.section-kicker.light {
  color: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f6d39b, var(--accent), #7e8b79);
  box-shadow: 0 0 20px rgba(209,165,109,0.45);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.top-wrap {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
}
.header-wrap {
  width: 100%;
}
.header-topbar {
  padding-top: 18px;
}
.header-topbar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(18, 23, 30, 0.34);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.header-topbar a,
.header-topbar span { color: inherit; }
.header-topbar i { color: #f1c88f; margin-right: 8px; }
.main-header {
  padding-top: 14px;
}
.main-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(15, 19, 25, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(7, 10, 12, 0.16);
}
.logo-box,
.name-box,
.site-nav { float: none; }
.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.site-kicker {
  color: rgba(255,255,255,0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-name {
  color: #fff !important;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: .95;
  text-shadow: 0 14px 30px rgba(0,0,0,0.24);
}
.site-tagline {
  display: block;
  margin-top: 8px;
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  line-height: 1.65;
}
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-nav > ul > li { float: none; }
.site-nav > ul > li + li { margin-left: 0; }
.site-nav > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li.current > a {
  color: #fff;
}
.site-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241,200,143,1), transparent);
  transform: scaleX(0);
  transition: transform .28s ease;
}
.site-nav > ul > li > a:hover::after,
.site-nav > ul > li.current > a::after {
  transform: scaleX(1);
}
.site-nav > ul > li.nav-cta > a {
  padding: 15px 24px;
  border-radius: 999px;
  color: #18202b;
  background: linear-gradient(135deg, #f2d6ab, var(--accent));
  box-shadow: 0 16px 34px rgba(209,165,109,0.24);
}
.site-nav > ul > li.nav-cta > a::after { display: none; }
.site-nav > ul > li.nav-cta > a:hover {
  color: #18202b;
  transform: translateY(-1px);
}
.site-nav-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  background: transparent;
  border: 0;
}
body.header-scrolled .header-topbar { padding-top: 10px; }
body.header-scrolled .main-header { padding-top: 10px; }
body.header-scrolled .main-header > .container {
  background: rgba(12, 15, 21, 0.8);
  box-shadow: 0 20px 44px rgba(8, 11, 14, 0.26);
}

.hero-stage {
  position: relative;
  min-height: 100vh;
  padding: 230px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16,22,29,0.1), rgba(16,22,29,0.28)),
    var(--hero-image) center center / cover no-repeat;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,241,215,0.23), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(231,214,190,0.16), transparent 20%),
    linear-gradient(180deg, rgba(10,14,19,0.3) 0%, rgba(10,14,19,0.12) 35%, rgba(10,14,19,0.68) 100%);
}
.hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(246,241,232,0), var(--bg) 94%);
}
.hero-stage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 38px;
  align-items: center;
}
.hero-copy,
.hero-aside {
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 720px;
  padding-top: 12px;
}
.hero-title {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: .88;
  color: #fff;
  text-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.hero-lead {
  margin: 24px 0 0;
  max-width: 690px;
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
  line-height: 1.9;
}
.hero-actions,
.story-actions,
.cta-actions,
.celebration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.btn-primary-pill {
  color: #18202b;
  background: linear-gradient(135deg, #f4dbb3, var(--accent));
  box-shadow: 0 18px 32px rgba(209,165,109,0.28);
}
.btn-primary-pill:hover {
  color: #18202b;
  transform: translateY(-2px);
}
.btn-secondary-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}
.btn-secondary-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.btn-text-link {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--accent-deep);
  background: transparent;
  box-shadow: none;
}
.btn-text-link:hover {
  color: var(--navy);
}
.btn.full { width: 100%; }

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-highlights li {
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-aside {
  display: grid;
  gap: 18px;
}
.hero-frame-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 24px 55px rgba(10, 14, 17, 0.22);
  backdrop-filter: blur(16px);
}
.hero-frame-image {
  position: relative;
  overflow: hidden;
}
.hero-frame-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.28) 100%);
}
.hero-frame-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transform: scale(1.03);
}
.hero-frame-content {
  padding: 26px 28px 30px;
}
.hero-frame-kicker {
  display: inline-block;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-frame-content h2 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 2rem;
  line-height: .95;
  font-family: "Cormorant Garamond", serif;
}
.hero-frame-content p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: .98rem;
  line-height: 1.8;
}
.hero-stat-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-stat-chip {
  min-height: 120px;
  padding: 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(9, 12, 14, 0.14);
}
.hero-stat-chip strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}
.hero-stat-chip span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  transform: translateX(-50%);
}
.hero-scroll-cue a {
  display: block;
  width: 34px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  position: relative;
}
.hero-scroll-cue span {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 6px;
  height: 14px;
  margin-left: -3px;
  border-radius: 999px;
  background: #fff;
  animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

.signature-section {
  padding-top: 86px;
}
.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: start;
}
.signature-copy {
  padding: 12px 10px 0 0;
}
.signature-stats {
  display: grid;
  gap: 16px;
}
.signature-stat {
  padding: 28px 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(31,38,48,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
  box-shadow: var(--shadow-soft);
}
.signature-stat strong {
  display: block;
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
.signature-stat span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.7;
}

.celebration-section {
  padding-top: 18px;
}
.celebration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 34px;
  align-items: center;
}
.celebration-copy {
  padding-right: 16px;
}
.celebration-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.celebration-points li {
  position: relative;
  padding: 0 0 0 22px;
  color: var(--ink);
  line-height: 1.8;
}
.celebration-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f2d8a7);
  box-shadow: 0 0 0 6px rgba(209,165,109,0.14);
}
.celebration-visual {
  position: relative;
}
.celebration-media {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 34px 70px rgba(18, 23, 30, 0.18);
  background: #ddd;
}
.celebration-media::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.24) 48%, transparent 62%);
  transform: translateX(-120%) rotate(8deg);
  animation: luxeSweep 8s ease-in-out infinite;
  z-index: 2;
}
.celebration-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,16,0.04), rgba(8,12,16,0.08) 35%, rgba(8,12,16,0.54) 100%);
  z-index: 1;
}
.celebration-media img {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  transform: scale(1.04);
  animation: mediaFloat 18s ease-in-out infinite alternate;
}
.celebration-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.celebration-overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  max-width: 320px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(15,19,25,0.56);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
}
.celebration-overlay strong {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
.celebration-overlay span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
@keyframes mediaFloat {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(0, -8px, 0); }
}
@keyframes luxeSweep {
  0%, 10% { transform: translateX(-120%) rotate(8deg); }
  45%, 100% { transform: translateX(120%) rotate(8deg); }
}

.gallery-section::before {
  inset: 40px 0 0;
  background: radial-gradient(circle at 20% 0%, rgba(209,165,109,0.07), transparent 22%);
}
.gallery-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}
.gallery-spotlight,
.gallery-card,
.gallery-ribbon-card,
.story-visual-card,
.instagram-showcase {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: #e7e0d5;
}
.gallery-spotlight img,
.gallery-card img,
.gallery-ribbon-card img,
.story-side-image,
.instagram-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-spotlight:hover img,
.gallery-card:hover img,
.gallery-ribbon-card:hover img,
.story-visual-card:hover img,
.instagram-showcase:hover img {
  transform: scale(1.05);
}
.gallery-spotlight {
  position: relative;
  min-height: 540px;
}
.gallery-spotlight-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(15,19,25,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.gallery-spotlight-copy span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.gallery-spotlight-copy strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}
.gallery-side-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.gallery-card {
  min-height: 258px;
}
.gallery-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.gallery-ribbon-card {
  min-height: 220px;
}

.experiences-section {
  background:
    linear-gradient(180deg, rgba(21, 28, 37, 0) 0%, rgba(21, 28, 37, 0.04) 12%, rgba(21,28,37,1) 12%, rgba(21,28,37,0.98) 100%),
    radial-gradient(circle at 80% 20%, rgba(241,200,143,0.12), transparent 24%),
    var(--bg-deep);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.experience-card {
  position: relative;
  min-height: 100%;
  padding: 34px 30px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 22px 50px rgba(0,0,0,0.12);
}
.experience-card-index {
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0));
}
.experience-card h3 {
  margin: 22px 0 12px;
  color: #fff;
  font-size: 2rem;
  line-height: .95;
  font-family: "Cormorant Garamond", serif;
}
.experience-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
}
.experience-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.experience-card a::after {
  content: "→";
  font-size: 14px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: start;
}
.story-main {
  padding-right: 10px;
}
.story-subtitle {
  margin: 18px 0 0;
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  margin-top: 28px;
}
.story-columns p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.88;
}
.story-side {
  position: sticky;
  top: 120px;
}
.story-visual-card {
  min-height: 320px;
}
.story-side-image {
  aspect-ratio: 1.1 / 1;
}
.info-panel {
  margin-top: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(31,38,48,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  box-shadow: var(--shadow-soft);
}
.info-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
  line-height: .96;
  font-family: "Cormorant Garamond", serif;
}
.info-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  line-height: 1.8;
}
.info-list li + li { margin-top: 10px; }
.info-list i {
  margin-top: 5px;
  color: var(--accent-deep);
}
.info-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}
.instagram-card {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(31,38,48,0.1);
}
.instagram-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.instagram-card-head i {
  color: var(--accent-deep);
}
.instagram-card p {
  margin: 12px 0 16px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.instagram-showcase {
  position: relative;
}
.instagram-showcase img {
  aspect-ratio: 1 / 1.1;
}
.instagram-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(14,19,25,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.instagram-overlay strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.instagram-overlay span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
}
.instagram-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cta-section {
  padding-top: 72px;
  padding-bottom: 116px;
}
.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(26, 33, 44, 0.96), rgba(39, 48, 63, 0.96)),
    radial-gradient(circle at right top, rgba(209,165,109,0.2), transparent 26%);
  box-shadow: 0 26px 60px rgba(15, 20, 26, 0.2);
}
.cta-copy p {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}
.cta-shell .btn-secondary-ghost {
  color: #fff;
}
.footer-info-area {
  padding: 0 0 44px;
}
.site-info {
  text-align: center;
}
.site-info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-on-scroll,
  .celebration-media::before,
  .celebration-media img,
  .hero-scroll-cue span {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1199px) {
  .hero-stage-inner,
  .signature-grid,
  .celebration-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .celebration-copy,
  .story-main,
  .signature-copy {
    max-width: none;
    padding-right: 0;
  }
  .hero-stage {
    min-height: auto;
  }
  .hero-stage-inner {
    gap: 28px;
  }
  .hero-aside {
    max-width: 720px;
  }
  .gallery-editorial,
  .cta-shell {
    grid-template-columns: 1fr;
  }
  .story-side {
    position: static;
  }
}

@media (max-width: 991px) {
  .section-shell {
    padding: 88px 0;
  }
  .header-topbar {
    display: none;
  }
  .main-header > .container {
    padding: 18px 20px;
  }
  .site-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(360px, calc(100vw - 32px));
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(12, 15, 21, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(7, 10, 12, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .main-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .site-nav > ul > li > a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 12px;
  }
  .site-nav > ul > li.nav-cta > a {
    justify-content: center;
    margin-top: 6px;
  }
  .hero-stage {
    padding: 160px 0 90px;
  }
  .hero-title {
    font-size: clamp(3rem, 8vw, 4.8rem);
  }
  .hero-stat-stack,
  .experience-grid,
  .gallery-ribbon,
  .story-columns {
    grid-template-columns: 1fr;
  }
  .hero-stat-stack {
    gap: 10px;
  }
  .gallery-spotlight,
  .gallery-card,
  .gallery-ribbon-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .section-shell {
    padding: 76px 0;
    scroll-margin-top: 98px;
  }
  .main-header > .container {
    border-radius: 24px;
  }
  .site-name {
    font-size: 2rem;
  }
  .site-tagline {
    display: none;
  }
  .hero-stage {
    padding: 136px 0 80px;
  }
  .hero-copy {
    text-align: left;
  }
  .hero-actions,
  .story-actions,
  .cta-actions,
  .celebration-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .hero-highlights {
    gap: 10px;
  }
  .hero-highlights li {
    width: 100%;
  }
  .hero-frame-image img {
    height: 280px;
  }
  .celebration-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  .cta-shell,
  .info-panel,
  .signature-stat,
  .experience-card {
    padding-left: 22px;
    padding-right: 22px;
  }
}


/* v4 polish fixes */
.hero-stage {
  background-position: center center;
}
.hero-stage::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(255,241,215,0.24), transparent 29%),
    radial-gradient(circle at 84% 18%, rgba(231,214,190,0.14), transparent 21%),
    linear-gradient(180deg, rgba(10,14,19,0.22) 0%, rgba(10,14,19,0.08) 34%, rgba(10,14,19,0.56) 100%);
}
.hero-stage::after {
  height: 132px;
}
.hero-stage-inner {
  align-items: start;
  gap: 54px;
}
.hero-copy {
  padding-top: 18px;
  padding-right: 12px;
}
.hero-title {
  max-width: 10.5ch;
}
.hero-lead {
  max-width: 640px;
}
.hero-aside {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}
.signature-grid,
.celebration-grid,
.story-grid {
  align-items: start;
}
.info-list,
.info-list li {
  list-style: none !important;
}
.info-list li {
  padding-left: 0 !important;
}
.info-list li::before,
.site-nav li::before,
.site-nav li::after {
  display: none !important;
  content: none !important;
}
.info-list i {
  width: 18px;
  flex: 0 0 18px;
  text-align: center;
}
.info-list a {
  word-break: break-word;
}
.story-columns p:first-child,
.story-columns p:last-child {
  margin-top: 0;
}
.story-columns {
  align-items: start;
}
.celebration-media img {
  object-position: center 30%;
}
.celebration-overlay {
  max-width: 360px;
}
#contact {
  scroll-margin-top: 140px;
}

@media (max-width: 1199px) {
  .hero-stage {
    padding: 180px 0 92px;
  }
  .hero-stage-inner {
    gap: 32px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero-title {
    max-width: 12ch;
  }
  .hero-aside {
    justify-self: start;
    max-width: 760px;
  }
}

@media (max-width: 991px) {
  .main-header > .container {
    align-items: center;
    gap: 18px;
  }
  .logo-box {
    max-width: calc(100% - 72px);
  }
  .site-nav {
    max-height: calc(100vh - 120px);
    overflow: auto;
  }
  .site-nav > ul > li > a {
    letter-spacing: .11em;
  }
  .hero-stage {
    padding: 148px 0 82px;
  }
  .hero-stage-inner {
    gap: 26px;
  }
  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.8rem, 7.6vw, 4.4rem);
    line-height: .93;
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.75;
  }
  .hero-frame-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding-top: 10px;
  }
  .main-header > .container {
    padding: 14px 16px;
    border-radius: 22px;
  }
  .site-name {
    font-size: 1.7rem;
    line-height: 1;
  }
  .site-kicker {
    letter-spacing: .12em;
    font-size: 10px;
  }
  .hero-stage {
    padding: 128px 0 74px;
    min-height: auto;
  }
  .hero-title {
    max-width: none;
    font-size: clamp(2.35rem, 10.4vw, 3.4rem);
    line-height: .96;
  }
  .hero-lead {
    max-width: none;
  }
  .hero-frame-image img {
    height: 240px;
  }
  .hero-stat-chip {
    min-height: 96px;
  }
  .section-title,
  .section-title.large {
    font-size: clamp(2.25rem, 9vw, 3rem);
    line-height: .98;
  }
  .story-columns {
    gap: 18px;
  }
  .info-panel {
    padding: 24px 20px;
  }
  .instagram-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  #contact {
    scroll-margin-top: 100px;
  }
}


/* v5 layout and bug fixes */
.main-header > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 26px;
}
.logo-box {
  min-width: 0;
}
.site-nav {
  justify-self: end;
  min-width: 0;
}
.site-nav > ul {
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 12px;
}
.site-nav > ul > li > a {
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 10px 4px;
}
.site-nav > ul > li.nav-cta > a {
  padding: 15px 22px;
}
.hero-stage-inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start !important;
}
.hero-copy,
.hero-aside {
  align-self: start !important;
}
.hero-copy {
  padding-top: 0 !important;
}
.hero-aside {
  margin-top: 0 !important;
  justify-self: end;
}
.hero-frame-card {
  margin-top: 0;
}
.signature-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: start;
}
.signature-panels {
  display: grid;
  gap: 16px;
}
.signature-panel {
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(31,38,48,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  box-shadow: var(--shadow-soft);
}
.signature-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1.02;
  font-family: "Cormorant Garamond", serif;
}
.signature-panel p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}
.story-side {
  position: relative;
  top: auto;
}
.info-panel {
  overflow: hidden;
}
.info-panel .btn.full {
  margin-top: 22px;
}
.instagram-card {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.instagram-showcase {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}
.instagram-showcase img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
}
.instagram-overlay {
  display: block;
}
.footer-info-area {
  position: relative;
  z-index: 2;
}
#contact {
  position: relative;
  z-index: 2;
}

@media (max-width: 1270px) {
  .site-name {
    font-size: clamp(1.95rem, 2.5vw, 2.45rem);
  }
  .site-tagline {
    max-width: 430px;
  }
  .site-nav > ul {
    gap: 8px;
  }
  .site-nav > ul > li > a {
    letter-spacing: .1em;
    font-size: 10.5px;
  }
}

@media (max-width: 1199px) {
  .hero-stage-inner,
  .signature-grid {
    grid-template-columns: 1fr;
  }
  .hero-aside {
    justify-self: start;
    max-width: 760px;
  }
}

@media (max-width: 991px) {
  .main-header > .container {
    display: flex;
  }
  .site-nav > ul {
    flex-wrap: wrap;
    gap: 6px;
  }
  .site-nav > ul > li > a {
    white-space: normal;
    font-size: 11px;
  }
  .site-nav > ul > li.nav-cta > a {
    padding: 14px 18px;
  }
  .hero-aside {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .signature-panel {
    padding: 20px 20px 18px;
  }
}

/* v6 header and hero refinements */
@media (min-width: 992px) {
  .main-header {
    padding-top: 18px;
  }
  .main-header > .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 24px 38px;
  }
  .logo-box {
    order: 1;
    flex: 1 1 auto;
    max-width: min(56%, 760px);
    min-width: 0;
  }
  .site-tagline {
    max-width: 46ch;
  }
  .site-nav {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
  .site-nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 18px;
  }
  .site-nav > ul > li {
    display: flex;
    align-items: center;
    float: none;
  }
  .site-nav > ul > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 4px;
    font-size: 12px;
    letter-spacing: .14em;
  }
  .site-nav > ul > li.nav-cta > a {
    min-width: 112px;
    padding: 16px 26px;
  }
}

@media (min-width: 680px) {
  .hero-stage-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.86fr) !important;
    align-items: start !important;
  }
  .hero-copy,
  .hero-aside {
    align-self: start !important;
    margin-top: 0 !important;
  }
  .hero-aside {
    justify-self: end;
    width: 100%;
    max-width: 390px;
  }
}

.hero-frame-content h2 {
  font-size: 1.58rem !important;
  line-height: 1.08;
  max-width: 12ch;
}

@media (max-width: 767px) {
  .hero-frame-content h2 {
    font-size: 1.44rem !important;
  }
}

/* v7 layout corrections */
@media (min-width: 992px) and (max-width: 1320px) {
  .main-header > .container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 18px;
    justify-items: center;
    text-align: center;
    padding: 24px 28px;
  }
  .logo-box {
    order: 1;
    max-width: 920px;
    width: 100%;
  }
  .brand-text,
  .site-tagline {
    align-items: center;
    text-align: center;
  }
  .site-tagline {
    max-width: none;
    margin-inline: auto;
  }
  .site-nav {
    order: 2;
    margin-left: 0;
    justify-self: center;
  }
  .site-nav > ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (min-width: 640px) and (max-width: 1199px) {
  .hero-stage-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.84fr) !important;
    gap: 24px;
    align-items: start !important;
  }
  .hero-copy,
  .hero-aside {
    align-self: start !important;
    margin-top: 0 !important;
  }
  .hero-copy {
    min-width: 0;
  }
  .hero-aside {
    justify-self: stretch;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
  }
  .hero-frame-card {
    margin-top: 0 !important;
  }
  .hero-title {
    font-size: clamp(3rem, 7.1vw, 5rem);
  }
  .hero-lead {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (min-width: 640px) and (max-width: 820px) {
  .hero-aside {
    max-width: 260px;
  }
  .hero-frame-image img {
    height: 220px;
  }
  .hero-frame-content {
    padding: 18px 18px 20px;
  }
}

.cta-shell {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: start;
}
.cta-copy {
  min-width: 0;
}
.cta-copy p {
  max-width: 60ch;
}
.cta-copy .cta-actions {
  margin-top: 26px;
}
.cta-side {
  min-width: 0;
}
.cta-side .instagram-card {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.cta-side .instagram-card p {
  color: rgba(255,255,255,0.78);
}
.cta-side .instagram-card-head,
.cta-side .instagram-link {
  color: #fff;
}
.cta-side .instagram-card-head i {
  color: #f1c88f;
}
.cta-side .instagram-showcase {
  border-radius: 22px;
  box-shadow: 0 20px 38px rgba(0,0,0,0.2);
}
.cta-side .instagram-overlay {
  background: rgba(14,19,25,0.72);
}

@media (max-width: 991px) {
  .cta-shell {
    grid-template-columns: 1fr;
  }
  .cta-side {
    max-width: 420px;
  }
}

/* v8 hero/header correction */
@media (min-width: 992px) {
  .main-header > .container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    text-align: left;
    padding: 22px 30px;
  }
  .logo-box {
    max-width: 52%;
    width: auto;
  }
  .brand-text,
  .site-tagline {
    align-items: flex-start !important;
    text-align: left !important;
    margin-inline: 0 !important;
  }
  .site-nav {
    margin-left: auto !important;
    justify-self: auto !important;
  }
  .site-nav > ul {
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }
  .site-nav > ul > li > a {
    font-size: 11px !important;
    letter-spacing: .12em !important;
    padding: 10px 3px !important;
  }
  .site-nav > ul > li.nav-cta > a {
    min-width: 104px;
    padding: 15px 22px !important;
  }
}

@media (min-width: 640px) {
  .hero-stage-inner {
    display: grid !important;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr) !important;
    gap: 30px !important;
    align-items: start !important;
  }
  .hero-aside {
    order: 1;
    grid-column: 1;
    justify-self: start !important;
    align-self: start !important;
    width: 100%;
    max-width: 320px !important;
    margin: 0 !important;
  }
  .hero-copy {
    order: 2;
    grid-column: 2;
    justify-self: start;
    align-self: start !important;
    width: 100%;
    max-width: 760px;
    padding-top: 0 !important;
    margin: 0 !important;
  }
  .hero-title {
    max-width: 8ch !important;
    font-size: clamp(3.05rem, 6.6vw, 5.35rem) !important;
    line-height: .9 !important;
  }
  .hero-lead {
    max-width: 46ch;
  }
  .hero-frame-card {
    margin-top: 0 !important;
  }
  .hero-stat-stack {
    margin-top: 12px;
  }
  .hero-frame-content h2 {
    font-size: 1.34rem !important;
    line-height: 1.06 !important;
    max-width: 11ch;
  }
}

@media (min-width: 640px) and (max-width: 860px) {
  .hero-stage-inner {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) !important;
    gap: 24px !important;
  }
  .hero-aside {
    max-width: 260px !important;
  }
  .hero-frame-image img {
    height: 210px !important;
  }
  .hero-frame-content {
    padding: 16px 16px 18px !important;
  }
  .hero-title {
    font-size: clamp(2.65rem, 7vw, 4.2rem) !important;
    max-width: 7.5ch !important;
  }
}

@media (max-width: 639px) {
  .hero-stage-inner {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .hero-aside,
  .hero-copy {
    grid-column: auto;
    order: initial;
    max-width: none !important;
  }
  .hero-title {
    max-width: none !important;
  }
}

/* v9 tested hero alignment and title sizing */
@media (min-width: 560px) {
  .hero-stage-inner {
    display: grid !important;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr) !important;
    gap: 22px !important;
    align-items: start !important;
  }
  .hero-aside {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    justify-self: start !important;
    max-width: 250px !important;
    width: 100% !important;
    margin: 0 !important;
    order: 1 !important;
  }
  .hero-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    justify-self: start !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    order: 2 !important;
  }
  .hero-title {
    font-size: clamp(2.55rem, 6.4vw, 4.4rem) !important;
    line-height: 0.92 !important;
    max-width: 8ch !important;
    letter-spacing: -0.03em;
  }
  .hero-lead {
    font-size: 0.98rem !important;
    line-height: 1.75 !important;
    max-width: 44ch !important;
  }
  .hero-frame-image img {
    height: 210px !important;
  }
  .hero-frame-content {
    padding: 16px 18px 18px !important;
  }
  .hero-frame-content h2 {
    font-size: 1.16rem !important;
    line-height: 1.08 !important;
    max-width: 10ch !important;
  }
  .hero-frame-content p {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
  }
  .hero-stat-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .hero-stat-chip {
    min-height: 96px !important;
    padding: 14px 12px !important;
    border-radius: 18px !important;
  }
  .hero-stat-chip strong {
    font-size: 1rem !important;
  }
  .hero-stat-chip span {
    font-size: 0.63rem !important;
    line-height: 1.4 !important;
  }
}

@media (min-width: 992px) {
  .hero-stage-inner {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr) !important;
    gap: 30px !important;
  }
  .hero-aside {
    max-width: 320px !important;
  }
  .hero-frame-image img {
    height: 300px !important;
  }
  .hero-title {
    font-size: clamp(3rem, 5.5vw, 4.9rem) !important;
    max-width: 8.5ch !important;
  }
}

@media (max-width: 559px) {
  .hero-title {
    font-size: clamp(2.35rem, 8vw, 3.5rem) !important;
    line-height: 0.95 !important;
  }
}

/* v10 hero balance polish */
@media (min-width: 992px) {
  .main-header > .container {
    padding: 20px 28px !important;
  }

  .hero-stage {
    padding-top: 292px !important;
    padding-bottom: 118px !important;
  }

  .hero-stage-inner {
    grid-template-columns: minmax(340px, 390px) minmax(0, 640px) !important;
    justify-content: space-between !important;
    gap: 54px !important;
    align-items: start !important;
  }

  .hero-aside {
    max-width: 390px !important;
  }

  .hero-copy {
    max-width: 640px !important;
    padding-top: 6px !important;
  }

  .hero-title {
    max-width: 9.2ch !important;
    font-size: clamp(2.55rem, 4.05vw, 4.35rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.03em !important;
  }

  .hero-lead {
    max-width: 42ch !important;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.82 !important;
  }

  .hero-actions {
    margin-top: 22px !important;
  }

  .hero-highlights {
    margin-top: 18px !important;
    gap: 10px !important;
  }

  .hero-highlights li {
    padding: 12px 14px !important;
    font-size: 11px !important;
  }

  .hero-frame-image img {
    height: 318px !important;
  }

  .hero-frame-content {
    padding: 24px 24px 26px !important;
  }

  .hero-frame-content h2 {
    margin: 10px 0 12px !important;
    max-width: 13ch !important;
    font-size: 1.78rem !important;
    line-height: 1.05 !important;
  }

  .hero-frame-content p {
    font-size: 1rem !important;
    line-height: 1.74 !important;
  }

  .hero-stat-chip {
    min-height: 104px !important;
    padding: 16px 14px !important;
  }

  .hero-stat-chip strong {
    font-size: 1.28rem !important;
  }

  .hero-stat-chip span {
    margin-top: 10px !important;
    font-size: 10px !important;
    line-height: 1.5 !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .hero-stage-inner {
    grid-template-columns: minmax(300px, 350px) minmax(0, 520px) !important;
    gap: 40px !important;
  }

  .hero-copy {
    max-width: 520px !important;
  }

  .hero-title {
    font-size: clamp(2.35rem, 4vw, 3.8rem) !important;
    max-width: 8.7ch !important;
  }

  .hero-frame-content h2 {
    font-size: 1.6rem !important;
  }
}


/* v11 mobile nav off, hero balance, crisp instagram, wedding secondary image */
@media (max-width: 991px) {
  .site-nav-toggle,
  .site-nav {
    display: none !important;
  }

  .main-header > .container {
    justify-content: flex-start !important;
  }
}

@media (min-width: 992px) {
  .hero-stage {
    padding-top: 318px !important;
  }

  .hero-stage-inner {
    grid-template-columns: minmax(360px, 410px) minmax(0, 560px) !important;
    gap: 48px !important;
  }

  .hero-copy {
    max-width: 560px !important;
  }

  .hero-title {
    font-size: clamp(2.45rem, 3.55vw, 3.95rem) !important;
    max-width: 8.2ch !important;
    line-height: 0.97 !important;
  }

  .hero-lead {
    max-width: 40ch !important;
    font-size: 0.98rem !important;
  }

  .hero-aside {
    max-width: 410px !important;
  }

  .hero-frame-image img {
    height: 310px !important;
  }

  .hero-frame-content {
    padding: 24px 26px 26px !important;
  }

  .hero-frame-content h2 {
    max-width: none !important;
    width: 100% !important;
    font-size: 1.92rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.01em !important;
  }

  .hero-frame-content p {
    font-size: 1rem !important;
    line-height: 1.76 !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .hero-stage-inner {
    grid-template-columns: minmax(320px, 360px) minmax(0, 500px) !important;
    gap: 38px !important;
  }

  .hero-title {
    font-size: clamp(2.3rem, 3.25vw, 3.45rem) !important;
  }
}

@media (max-width: 991px) {
  .hero-frame-content h2 {
    max-width: none !important;
    width: 100% !important;
  }
}

.celebration-visual {
  display: grid;
  gap: 18px;
}

.celebration-secondary-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 22px 48px rgba(18, 23, 30, 0.14);
  background: #ddd;
}

.celebration-secondary-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2.38 / 1;
  object-fit: cover;
}

.cta-side {
  display: flex;
  justify-content: flex-end;
}

.cta-side .instagram-card {
  width: 100%;
  max-width: 300px;
}

.cta-side .instagram-showcase {
  width: 300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

.cta-side .instagram-showcase img {
  width: 300px !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  transform: none !important;
}

.cta-side .instagram-showcase:hover img {
  transform: none !important;
}

@media (max-width: 991px) {
  .cta-side {
    justify-content: flex-start;
  }

  .cta-side .instagram-card,
  .cta-side .instagram-showcase {
    margin-left: 0;
    margin-right: 0;
  }
}

/* v12 hero right-column width and typography rebalance */
@media (min-width: 992px) {
  .hero-stage-inner {
    grid-template-columns: minmax(350px, 410px) minmax(520px, 1fr) !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .hero-aside {
    max-width: 410px !important;
    width: 100% !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding-top: 2px !important;
  }

  .hero-title {
    width: 100% !important;
    max-width: 12.2ch !important;
    font-size: clamp(2.08rem, 2.95vw, 3.32rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.028em !important;
    margin-bottom: 18px !important;
  }

  .hero-lead {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.86 !important;
  }

  .hero-actions,
  .hero-highlights {
    max-width: 100% !important;
  }

  .hero-frame-content h2 {
    width: 100% !important;
    max-width: none !important;
    font-size: 2rem !important;
    line-height: 1.14 !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .hero-stage-inner {
    grid-template-columns: minmax(300px, 350px) minmax(430px, 1fr) !important;
    gap: 28px !important;
  }

  .hero-title {
    max-width: 11.4ch !important;
    font-size: clamp(1.96rem, 2.7vw, 2.72rem) !important;
  }

  .hero-frame-content h2 {
    font-size: 1.72rem !important;
  }
}

/* v13 hero title width correction: allow the right block to use its real width */
@media (min-width: 992px) {
  .hero-stage-inner {
    grid-template-columns: minmax(340px, 410px) minmax(620px, 1fr) !important;
    gap: 44px !important;
    align-items: start !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .hero-title {
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(1.95rem, 2.45vw, 3.05rem) !important;
    line-height: 1.01 !important;
    letter-spacing: -0.022em !important;
    text-wrap: balance;
  }

  .hero-lead,
  .hero-actions,
  .hero-highlights {
    width: 100% !important;
    max-width: 56ch !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .hero-stage-inner {
    grid-template-columns: minmax(300px, 360px) minmax(500px, 1fr) !important;
    gap: 32px !important;
  }

  .hero-title {
    font-size: clamp(1.82rem, 2.2vw, 2.55rem) !important;
  }

  .hero-lead,
  .hero-actions,
  .hero-highlights {
    max-width: 48ch !important;
  }
}

/* v13 hero width and pill width cleanup */
@media (min-width: 992px) {
  .hero-copy {
    max-width: none !important;
    width: 100% !important;
  }

  .hero-title {
    max-width: 14ch !important;
    font-size: clamp(2.05rem, 2.9vw, 3.35rem) !important;
    line-height: 0.98 !important;
  }

  .hero-lead,
  .hero-actions,
  .hero-highlights {
    max-width: none !important;
    width: 100% !important;
  }

  .hero-highlights {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px 12px !important;
  }

  .hero-highlights li {
    flex: 0 0 auto !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
}
