@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Fraunces:opsz,wght@9..144,400;9..144,600&family=Great+Vibes&family=Inter:wght@400;500;600;700;800&family=Lato:wght@400;700&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --navy: #0b1b33;
  --navy-deep: #071426;
  --navy-soft: #102846;
  --cream: #fff6e7;
  --cream-deep: #ead8b3;
  --gold: #d8ad2f;
  --gold-light: #f1d578;
  --ceremony-blue: #1f5f99;
  --ceremony-copper: #c85a24;
  --sage: #8e9c81;
  --sage-card: #c6cfb7;
  --gold-sage: #a87c2f;
  --gold-bright: #ead08a;
  --hiw-navy: #15243b;
  --hiw-ink: #2e3a48;
  --about-navy: #0f1d33;
  --about-gold: #d8b97e;
  --about-cream: #f5f2ec;
  --about-body: #d2cfc6;
  --about-muted: #9aa1ad;
  --rose: #b88778;
  --white: #fffaf0;
  --muted: rgba(255, 250, 240, 0.75);
  --line: rgba(255, 250, 240, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --fraunces: "Fraunces", Georgia, "Times New Roman", serif;
  --script: "Great Vibes", "Segoe Script", cursive;
  --lato: "Lato", "Segoe UI", Arial, sans-serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 173, 47, 0.09), transparent 26rem),
    radial-gradient(circle at 84% 10%, rgba(143, 162, 138, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  font-family: var(--sans);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 11, 23, 0.88), rgba(3, 11, 23, 0.18));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.header-brand {
  position: relative;
  z-index: 24;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 0.2rem 1.2rem rgba(3, 11, 23, 0.42);
  text-transform: uppercase;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  background: rgba(3, 11, 23, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(216, 173, 47, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.15rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 0.86rem;
}

.brand small {
  margin-top: 0.2rem;
  color: var(--gold-light);
  font-size: 0.72rem;
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 22;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.1rem;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 5rem 1rem;
  background: rgba(3, 11, 23, 0.96);
  backdrop-filter: blur(18px);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 220ms ease;
  text-transform: uppercase;
}

.site-nav.is-open {
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0;
  color: rgba(255, 250, 240, 0.82);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.32rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-height: 2.65rem;
  padding: 0.68rem 1.05rem;
  border: 1px solid rgba(216, 173, 47, 0.62);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 20, 38, 0.54);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.menu-toggle::after {
  position: absolute;
  top: -0.5rem;
  right: -0.35rem;
  color: var(--gold-light);
  content: "\2726";
  font-size: 0.78rem;
  opacity: 0;
  transform: scale(0.4) rotate(-20deg);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--gold-light);
  box-shadow: 0 0.65rem 1.8rem rgba(216, 173, 47, 0.16);
  transform: translateY(-1px);
}

.menu-toggle:hover::after,
.menu-toggle:focus-visible::after {
  opacity: 1;
  transform: scale(1) rotate(8deg);
}

.menu-star {
  color: var(--gold-light);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 7rem 1.25rem 4.5rem;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 44%, rgba(216, 173, 47, 0.17), transparent 13rem),
    linear-gradient(90deg, rgba(3, 11, 23, 0.82), rgba(7, 20, 38, 0.54) 48%, rgba(3, 11, 23, 0.82)),
    linear-gradient(180deg, rgba(3, 11, 23, 0.55), rgba(7, 20, 38, 0.5) 45%, rgba(3, 11, 23, 0.82));
}

.hero-content {
  width: min(100%, 62rem);
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8a6710;
}

.hero h1,
.section-header h2,
.rate-layout h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--gold);
  font-size: clamp(3.35rem, 6.5vw, 6.65rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 0.2rem 2.8rem rgba(0, 0, 0, 0.46);
}

.hero h1 span {
  display: block;
}

.hero .eyebrow {
  color: var(--white);
}

.script-line {
  margin: 1.5rem 0 0;
  color: var(--white);
  font-family: var(--script);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
}

.hero-copy {
  width: min(100%, 50rem);
  margin: 1.4rem auto 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0.7rem 2.8rem rgba(216, 173, 47, 0.26);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.38);
  background: rgba(7, 20, 38, 0.58);
}

.button-navy {
  color: var(--white);
  background: var(--navy);
}

.section-shell {
  width: min(100% - 2rem, 1240px);
  margin-inline: auto;
}

.rate-section,
.services-section,
.hiw,
.about-section,
.expect-section,
.contact-section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

#rate,
#services,
#about,
#contact,
#inquiry {
  scroll-margin-top: 5.25rem;
}

#rate {
  scroll-margin-top: 0;
}

.rate-section {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 92% 14%, rgba(184, 135, 120, 0.22), transparent 18rem),
    radial-gradient(circle at 8% 82%, rgba(216, 173, 47, 0.14), transparent 22rem),
    linear-gradient(135deg, var(--cream), var(--cream-deep));
}

.rate-section::before {
  display: none;
}

.rate-section .section-shell {
  position: relative;
}

.expect-section {
  color: var(--navy);
  background:
    radial-gradient(circle at 92% 14%, rgba(184, 135, 120, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--cream), var(--cream-deep));
}

.rate-layout,
.contact-layout {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.rate-layout {
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 28rem);
}

.rate-layout h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
}

.rate-layout p:not(.eyebrow, .rate-kicker, .price, .rate-intro),
.contact-copy p {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.rate-main {
  display: grid;
  justify-items: center;
  text-align: center;
}

.rate-main .eyebrow {
  margin-bottom: 1.4rem;
  color: transparent;
  background: linear-gradient(105deg, var(--ceremony-blue) 0%, #2f7cae 42%, var(--ceremony-copper) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.25vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rate-image {
  width: min(100%, 42rem);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(7, 20, 38, 0.16);
  border-radius: 0.5rem;
  box-shadow: 0 1.4rem 4rem rgba(7, 20, 38, 0.16);
  object-fit: cover;
}

.rate-intro {
  width: min(100%, 44rem);
  margin: 1.5rem 0 0;
  color: #061224;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  font-weight: 600;
  line-height: 1.68;
}

.rate-panel {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(7, 20, 38, 0.16);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 1.2rem 4.2rem rgba(7, 20, 38, 0.12);
  backdrop-filter: blur(12px);
}

.rate-offer {
  margin: 0 0 1.05rem;
  color: #061224;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
}

.rate-offer strong {
  font-weight: 800;
}

.rate-details {
  display: grid;
  gap: 0.18rem;
  margin: 1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(7, 20, 38, 0.16);
}

.rate-details p {
  margin: 0;
  color: #061224;
  font-size: clamp(0.72rem, 1.02vw, 0.84rem);
  font-weight: 600;
  line-height: 1.18;
}

.rate-kicker {
  margin: 0 0 0.4rem;
  color: var(--ceremony-blue);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price {
  margin: 0.2rem 0 1.55rem;
}

.price span {
  display: inline-flex;
  align-items: baseline;
  color: var(--ceremony-blue);
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  -webkit-text-stroke-color: var(--gold-light);
  -webkit-text-stroke-width: 1.35px;
  paint-order: stroke fill;
  text-shadow:
    1px 0 0 rgba(241, 213, 120, 0.78),
    -1px 0 0 rgba(241, 213, 120, 0.78),
    0 1px 0 rgba(241, 213, 120, 0.78),
    0 -1px 0 rgba(241, 213, 120, 0.78),
    0 0 0.55rem rgba(241, 213, 120, 0.42),
    0 0.75rem 2.4rem rgba(31, 95, 153, 0.18);
}

.price .currency {
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(-0.02em);
}

.rate-panel > p:not(.rate-kicker, .price, .rate-offer) {
  color: #061224;
  font-weight: 600;
  line-height: 1.7;
}

.rate-panel .rate-details p {
  font-size: clamp(0.72rem, 1.02vw, 0.84rem);
  line-height: 1.18;
}

.rate-panel .button-navy {
  width: 100%;
  margin-top: 0.6rem;
  border-color: rgba(216, 173, 47, 0.65);
  background: rgba(3, 11, 23, 0.88);
  box-shadow: 0 0.8rem 2.5rem rgba(216, 173, 47, 0.15);
}

.section-header {
  width: min(100%, 47rem);
}

.section-header.centered {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2.7rem, 5.6vw, 5.7rem);
  line-height: 0.95;
}

.section-header p:last-child {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.services-section .section-header .eyebrow {
  font-size: clamp(1.2rem, 1.76vw, 1.44rem);
}

.services-section .section-header h2 {
  color: transparent;
  background: linear-gradient(110deg, var(--white) 0%, var(--cream) 48%, var(--gold-light) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--display);
}

.services-section .section-header p:last-child {
  width: min(100%, 43rem);
  line-height: 1.65;
  text-wrap: balance;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2vw, 1.65rem);
}

.service-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 250, 240, 0.07);
  box-shadow: 0 1.3rem 4rem rgba(2, 9, 20, 0.22);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.service-card div {
  padding: clamp(1.25rem, 2vw, 1.6rem);
}

.service-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.service-card h3 {
  text-align: center;
}

.service-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.2rem, 5vw, 4rem);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
  border: 1px solid rgba(216, 173, 47, 0.2);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 173, 47, 0.11), transparent 22rem),
    linear-gradient(180deg, var(--navy-soft), var(--navy));
  text-align: center;
}

.cta__inner {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.cta__stars span {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  opacity: 0.88;
}

.cta__rule {
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.65;
}

.cta__headline {
  margin: 0 0 1.25rem;
  color: var(--gold-light);
  font-family: var(--fraunces);
  font-size: clamp(2.25rem, 6vw, 3.65rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

.cta__sub {
  max-width: 30em;
  margin: 0 auto 2.5rem;
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.7;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 1.05rem 2.75rem;
  border-radius: 0.18rem;
  color: var(--navy-deep);
  background: var(--gold);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cta__button:hover,
.cta__button:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.cta__button:active {
  transform: translateY(-1px);
}

.hiw {
  background: var(--sage);
}

.hiw__inner {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

.hiw__label {
  display: inline-block;
  margin: 0 0 1.625rem;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  color: #fff;
  background: var(--hiw-navy);
  font-family: var(--lato);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hiw__head {
  max-width: 9em;
  margin: 0 0 clamp(2.5rem, 5vw, 3rem);
  color: var(--hiw-navy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
}

.hiw__head .accent {
  color: var(--gold-bright);
}

.hiw__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hiw__card {
  min-height: 16rem;
  padding: 1.75rem 1.75rem 2rem;
  border-radius: 0.75rem;
  background: var(--sage-card);
  box-shadow: 0 1.25rem 3.5rem rgba(7, 20, 38, 0.1);
}

.hiw__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--hiw-navy);
  font-family: var(--lato);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hiw__title {
  margin: 0 0 0.75rem;
  color: var(--hiw-navy);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.hiw__body {
  margin: 0;
  color: var(--hiw-ink);
  font-family: var(--lato);
  font-size: 1rem;
  line-height: 1.6;
}

.gallery-section {
  padding: 0;
  background: var(--navy);
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem;
  height: clamp(28.75rem, 56vw, 45rem);
  padding: 0 4vw;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.875rem;
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.g-anchor {
  grid-row: 1 / span 2;
}

.g-wide {
  grid-column: 2 / span 2;
}

.section-divider {
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
  background:
    linear-gradient(180deg, var(--navy), var(--navy-soft) 48%, var(--navy));
}

.section-divider__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  width: min(100% - 2rem, 44rem);
  margin-inline: auto;
  color: var(--gold-light);
}

.section-divider__ornament span {
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 213, 120, 0.78));
}

.section-divider__ornament span:last-child {
  background: linear-gradient(90deg, rgba(241, 213, 120, 0.78), transparent);
}

.section-divider__ornament strong {
  color: var(--gold-light);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 1.2rem rgba(241, 213, 120, 0.35);
}

.about-section {
  background: var(--about-navy);
  padding: clamp(5rem, 8vw, 6rem) 6vw;
}

.about__inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 3.5rem);
  max-width: 1200px;
  margin-inline: auto;
}

.about__media {
  flex: 0 0 42%;
  margin-top: 2.7rem;
}

.about__media img {
  display: block;
  width: 100%;
  height: clamp(36rem, 58vw, 47rem);
  border: 1px solid rgba(216, 185, 126, 0.45);
  border-radius: 0.875rem;
  object-fit: cover;
  object-position: center;
}

.about__text {
  flex: 1 1 auto;
  max-width: 35rem;
}

.about__kicker {
  margin: 0 0 1.125rem;
  color: var(--about-gold);
  font-family: var(--lato);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about__head {
  margin: 0 0 1.75rem;
  color: var(--about-cream);
  font-family: var(--display);
  font-size: clamp(2.42rem, 5.13vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.about__head span {
  display: block;
}

.about__body {
  margin: 0 0 1.25rem;
  color: var(--about-body);
  font-family: var(--lato);
  font-size: clamp(1.04rem, 1.45vw, 1.14rem);
  line-height: 1.58;
}

.about__closer {
  margin: 2.25rem 0 0;
  color: var(--about-gold);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
}

.about__sig {
  display: grid;
  gap: 0.22rem;
  margin-top: 1.75rem;
}

.about__sig-name {
  margin: 0;
  color: var(--white);
  font-family: var(--lato);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.about__sig-line {
  margin: 0;
  color: var(--about-muted);
  font-family: var(--lato);
  font-size: 0.84375rem;
  line-height: 1;
}

.expect__inner {
  max-width: 1100px;
  margin-inline: auto;
}

.expect__title {
  max-width: 11em;
  margin: 0 0 clamp(2.5rem, 5vw, 2.75rem);
  color: var(--hiw-navy);
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.8vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.expect__title .accent {
  color: var(--sage);
}

.expect__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.expect__card {
  margin: 0;
  padding: 1.75rem 1.625rem;
  border: 1px solid rgba(21, 36, 59, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expect__card:hover {
  box-shadow: 0 0.875rem 1.875rem rgba(21, 36, 59, 0.12);
  transform: translateY(-4px);
}

.expect__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--hiw-navy);
  font-family: var(--lato);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.expect__card h3 {
  margin: 0 0 0.75rem;
  color: var(--hiw-navy);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.expect__card p {
  margin: 0;
  color: #3a4656;
  font-family: var(--lato);
  font-size: 0.96875rem;
  line-height: 1.65;
}

.contact-section {
  font-family: var(--serif);
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.28), rgba(7, 20, 38, 0.68)),
    url("assets/images/wedding-bouquet.jpg") center / cover fixed;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 30rem);
  gap: clamp(2rem, 4vw, 4rem);
}

.story-heading {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.8vw, 5.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 0.18rem 1.6rem rgba(3, 11, 23, 0.42);
}

.story-heading span {
  display: block;
}

.story-heading span:last-child {
  color: #47aaf0;
}

.contact-copy p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.35rem);
  line-height: 1.45;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  margin-top: 1.6rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.55vw, 1.25rem);
  line-height: 1.1;
}

.contact-info p {
  margin: 0;
  line-height: 1.1;
}

.contact-info strong {
  color: var(--white);
  font-weight: 700;
}

.contact-info a {
  color: inherit;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 0.5rem;
  background: rgba(7, 20, 38, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  color: rgba(255, 250, 240, 0.86);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 0.35rem;
  color: var(--white);
  background: rgba(255, 250, 240, 0.07);
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 0.75rem 0.9rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.52);
  font-family: var(--serif);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(241, 213, 120, 0.75);
  box-shadow: 0 0 0 4px rgba(216, 173, 47, 0.13);
}

.contact-form textarea {
  resize: vertical;
}

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.form-status.is-success {
  color: var(--gold-light);
}

.form-status.is-error {
  color: #f2a6a6;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  padding: 1.25rem clamp(1rem, 3vw, 3rem);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.72);
  background: var(--navy-deep);
  font-family: var(--serif);
  font-size: 1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-nav a {
    font-size: 1rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .rate-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .hiw__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    background-attachment: scroll;
  }
}

@media (max-width: 820px) {
  .about__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .about__media,
  .about__text {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .about__media {
    margin-top: 0;
  }

  .about__media img {
    height: auto;
  }
}

@media (max-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .g-anchor {
    grid-column: 1 / span 2;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .g-wide {
    grid-column: 1 / span 2;
    aspect-ratio: 16 / 9;
  }

  .g-detail {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: 94svh;
    padding: 6rem 1rem 4rem;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.5rem);
  }

  .script-line {
    margin-top: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .services-grid,
  .hiw__grid {
    grid-template-columns: 1fr;
  }

  .hiw__card,
  .expect__card {
    min-height: auto;
  }

  .rate-section,
  .services-section,
  .hiw,
  .about-section,
  .expect-section,
  .contact-section {
    padding: 4rem 0;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gallery img {
    transition: none;
  }

  .gallery figure:hover img {
    transform: none;
  }

  .expect__card {
    transition: none;
  }

  .expect__card:hover {
    box-shadow: none;
    transform: none;
  }
}

