:root {
  --bg: #f7f9fd;
  --surface: #ffffff;
  --surface-strong: #eef3fb;
  --ink: #121826;
  --ink-soft: #5d6b85;
  --brand: #40588f;
  --brand-deep: #2b3f68;
  --line: rgba(18, 24, 38, 0.08);
  --shadow: 0 22px 60px rgba(33, 52, 96, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(64, 88, 143, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}

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

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

.shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.shell-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.82);
  border-bottom: 1px solid rgba(18, 24, 38, 0.05);
}

.shell-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 188px;
  height: auto;
}

.shell-nav {
  display: flex;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.shell-nav a:hover,
.ghost-link:hover,
.text-link:hover {
  color: var(--brand);
}

.ghost-link,
.button-outline,
.button-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ghost-link,
.button-outline {
  border: 1px solid rgba(18, 24, 38, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.button-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 14px 30px rgba(43, 63, 104, 0.24);
}

.button-solid--cta {
  padding-inline: 28px;
  box-shadow: 0 18px 40px rgba(43, 63, 104, 0.32);
}

.ghost-link:hover,
.button-outline:hover,
.button-solid:hover {
  transform: translateY(-1px);
}

.hero-v2 {
  padding: 32px 0 20px;
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: stretch;
}

.hero-v2__copy,
.hero-v2__visual,
.feature-card,
.split-panel__copy,
.split-panel__media,
.stat-band__card,
.invite__card {
  border-radius: var(--radius-xl);
}

.hero-v2__copy {
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.pill,
.micro-copy {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(64, 88, 143, 0.14);
  background: rgba(64, 88, 143, 0.08);
  color: var(--brand-deep);
}

.pill--soft {
  background: rgba(18, 24, 38, 0.04);
  color: var(--ink-soft);
}

.micro-copy {
  margin: 0 0 12px;
  color: var(--brand);
}

.micro-copy--light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-v2 h1,
.headline-row h2,
.split-panel__copy h2,
.stat-band__intro h2,
.invite__card h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.highlight-word {
  position: relative;
  color: var(--brand-deep);
  white-space: nowrap;
}

.highlight-word::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.2em;
  z-index: -1;
  border-radius: 999px;
  background: rgba(64, 88, 143, 0.18);
}

.highlight-word--light {
  color: #fff;
}

.highlight-word--light::after {
  background: rgba(255, 255, 255, 0.18);
}

.highlight-inline {
  color: var(--brand-deep);
  font-weight: 800;
}

.hero-v2 h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.hero-v2__lead,
.headline-row__aside,
.feature-card p,
.split-panel__copy p,
.invite__card p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero-v2__lead {
  max-width: 540px;
  margin: 16px 0 0;
  font-size: 1rem;
}

.hero-v2__cta,
.invite__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-v2__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.hero-v2__meta div {
  padding-top: 18px;
  border-top: 1px solid rgba(18, 24, 38, 0.08);
}

.hero-v2__meta strong,
.invite__price {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hero-v2__meta span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-v2__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--surface);
  border: 1px solid rgba(18, 24, 38, 0.06);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.06) contrast(1.03) saturate(1.05);
  transform: scale(1.01);
}

.visual-card--main {
  grid-column: span 2;
  min-height: 420px;
}

.visual-card--quote {
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #162033 0%, #33466f 100%);
  color: #fff;
}

.visual-card--quote p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.4;
}

.visual-card__badge,
.visual-card__label {
  position: absolute;
  left: 18px;
  right: 18px;
}

.visual-card__badge {
  top: 18px;
}

.visual-card__badge span,
.visual-card__label {
  width: fit-content;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
}

.visual-card__label {
  bottom: 18px;
  width: auto;
  border-radius: 20px;
  display: grid;
  gap: 4px;
}

.visual-card__label strong {
  font-size: 1rem;
}

.visual-card__label span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.ribbon {
  padding: 12px 0 0;
}

.ribbon__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ribbon__inner span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 24, 38, 0.06);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.section-v2 {
  padding: 96px 0;
}

.section-v2--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(230, 237, 248, 0.54));
}

.section-v2--deep {
  background: #141f34;
  color: #fff;
}

.headline-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.headline-row h2,
.split-panel__copy h2,
.stat-band__intro h2,
.invite__card h2 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

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

.feature-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 24, 38, 0.06);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--surface-strong);
  font-size: 1.15rem;
}

.feature-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: stretch;
}

.split-panel__media,
.split-panel__copy {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 24, 38, 0.06);
  box-shadow: var(--shadow);
}

.split-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.split-panel__copy {
  padding: 34px;
}

.bullet-grid {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bullet-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.location-cards article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 24, 38, 0.06);
}

.location-cards strong {
  display: block;
  margin-bottom: 6px;
}

.location-cards span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.headline-row--gallery {
  align-items: center;
}

.text-link {
  justify-self: end;
  color: var(--brand);
  font-weight: 700;
}

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

.gallery-v2__item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.gallery-v2__item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  filter: brightness(1.06) contrast(1.04) saturate(1.04);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-v2__item:hover img,
.visual-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.08) contrast(1.05) saturate(1.06);
}

.gallery-v2__item--tall {
  grid-row: span 2;
}

.gallery-v2__item--tall img {
  min-height: 520px;
}

.gallery-v2__item--wide {
  grid-column: span 2;
}

.stat-band {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: center;
}

.stat-band__card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.stat-band__card strong {
  display: block;
  font-size: clamp(3.6rem, 7vw, 5.4rem);
  line-height: 1;
}

.stat-band__card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.invite {
  display: grid;
}

.invite__card {
  padding: 38px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 241, 250, 0.92));
  border: 1px solid rgba(18, 24, 38, 0.06);
  box-shadow: var(--shadow);
}

.invite__card p {
  max-width: 720px;
}

.invite__price {
  padding: 0 4px;
  align-self: center;
}

.footer-v2 {
  padding: 0 0 46px;
}

.footer-v2__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 24, 38, 0.08);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .hero-v2__grid,
  .headline-row,
  .split-panel,
  .stat-band {
    grid-template-columns: 1fr;
  }

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

  .gallery-v2__item--wide {
    grid-column: span 1;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .shell-nav {
    display: none;
  }

  .shell-header__inner {
    padding-block: 14px;
  }

  .ghost-link {
    width: 100%;
  }

  .brand img {
    width: 170px;
  }

  .hero-v2 h1 {
    max-width: none;
  }

  .hero-v2__visual,
  .feature-grid,
  .gallery-v2,
  .hero-v2__meta {
    grid-template-columns: 1fr;
  }

  .visual-card--main {
    grid-column: span 1;
    min-height: 320px;
  }

  .gallery-v2__item--tall {
    grid-row: span 1;
  }

  .gallery-v2__item--tall img {
    min-height: 320px;
  }

  .split-panel__media img {
    min-height: 360px;
  }

  .footer-v2__inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-v2,
  .section-v2 {
    padding: 64px 0;
  }

  .hero-v2__copy,
  .hero-v2__visual,
  .split-panel__copy,
  .split-panel__media,
  .feature-card,
  .invite__card,
  .visual-card {
    border-radius: 24px;
  }

  .hero-v2__copy,
  .split-panel__copy,
  .feature-card,
  .stat-band__card,
  .invite__card {
    padding: 22px;
  }

  .hero-v2__cta,
  .invite__actions {
    flex-direction: column;
  }

  .button-solid,
  .button-outline {
    width: 100%;
  }

  .hero-v2 h1 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .hero-v2__lead {
    font-size: 0.96rem;
  }

  .hero-v2__meta {
    gap: 14px;
  }
}
