:root {
  --royal: #1f3c88;
  --purple: #3a1c71;
  --white: #ffffff;
  --silver: #c0c0c0;
  --ink: #171727;
  --muted: #606981;
  --deep: #101746;
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.32);
  --shadow: 0 28px 80px rgba(16, 23, 70, 0.22);
  --heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: Poppins, "Trebuchet MS", Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(31, 60, 136, 0.18), transparent 25rem),
    radial-gradient(circle at 88% 14%, rgba(58, 28, 113, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbfcff 0%, #eef2fb 52%, #ffffff 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image: linear-gradient(rgba(255,255,255,.58) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.58) 1px, transparent 1px);
  background-size: 58px 58px;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(12, 18, 58, .58);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 50%;
  font-family: var(--heading);
  background: rgba(255,255,255,.14);
}
.site-nav { display: flex; align-items: center; gap: clamp(.75rem, 1.7vw, 1.45rem); }
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.42rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--silver);
  transition: transform 180ms ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.nav-toggle span { display: block; width: 1.1rem; height: 2px; margin: .25rem auto; background: var(--white); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1rem, 6vw, 6rem) 5rem;
  color: var(--white);
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(105deg, rgba(13, 22, 72, .94), rgba(31, 60, 136, .74) 46%, rgba(58, 28, 113, .55)),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.24), transparent 18rem);
}
.hero-content { position: relative; z-index: 2; max-width: 52rem; }
.eyebrow {
  margin: 0 0 1rem;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .98;
}
h1 { max-width: 9ch; font-size: clamp(4.1rem, 12vw, 9.8rem); }
h2 { font-size: clamp(2.15rem, 5.6vw, 4.8rem); }
.title { margin: 1.2rem 0 0; color: var(--silver); font-size: clamp(1.35rem, 3vw, 2.25rem); font-weight: 700; }
.tagline { max-width: 35rem; margin: 1rem 0 2rem; font-size: clamp(1.05rem, 2vw, 1.45rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: .85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.primary { color: var(--royal); background: var(--white); box-shadow: 0 18px 42px rgba(255,255,255,.18); }
.secondary { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.1); backdrop-filter: blur(14px); }

.notes span {
  position: absolute;
  z-index: 1;
  color: rgba(255,255,255,.42);
  font-size: clamp(1.5rem, 4vw, 3.6rem);
  animation: floatNote 8s ease-in-out infinite;
}
.notes span:nth-child(1) { left: 11%; top: 21%; }
.notes span:nth-child(2) { left: 46%; top: 15%; animation-delay: 1s; }
.notes span:nth-child(3) { right: 12%; top: 34%; animation-delay: 2s; }
.notes span:nth-child(4) { left: 60%; bottom: 16%; animation-delay: 3s; }
.notes span:nth-child(5) { left: 18%; bottom: 18%; animation-delay: 4s; }
.sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 2px);
  background-size: 8rem 8rem;
  animation: sparkle 5s ease-in-out infinite alternate;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.8rem, 9vw, 8rem) 0;
}
.section-copy { max-width: 45rem; }
.section-copy p:not(.eyebrow), .availability p, .reviews p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.85;
}
.about-quote {
  margin-top: 1.3rem;
  padding-left: 1rem;
  border-left: 3px solid var(--royal);
  color: var(--deep);
  font-family: var(--heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.35;
}
.split, .booking, .reviews {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(20rem, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.glass-card {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: linear-gradient(145deg, var(--glass-strong), rgba(255,255,255,.38));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.portrait-card { overflow: hidden; margin: 0; }
.portrait-photo-stack {
  padding: clamp(.8rem, 2vw, 1.2rem);
}
.portrait-main {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(16, 23, 70, .18);
  min-height: clamp(24rem, 46vw, 36rem);
  border-radius: 1rem;
}
.portrait-card figcaption { display: grid; gap: .7rem; padding: 1rem; }
.portrait-card span, .service-grid span, .availability-row p, .coming-soon {
  border: 1px solid rgba(31,60,136,.14);
  background: rgba(255,255,255,.64);
  box-shadow: 0 15px 34px rgba(13,30,95,.08);
}
.portrait-card span { padding: .85rem 1rem; border-radius: .9rem; color: var(--royal); font-weight: 800; }

.statement, .heart, .videos { text-align: center; }
blockquote { margin: 0; font-family: var(--heading); font-size: clamp(2rem, 4.8vw, 4.15rem); line-height: 1.18; }
.heart, .videos {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: linear-gradient(135deg, rgba(31,60,136,.96), rgba(58,28,113,.94));
}
.heart .eyebrow, .videos .eyebrow { color: var(--silver); }
.section-heading { max-width: 58rem; margin-bottom: 2rem; }

.scripture-grid, .service-grid { display: grid; gap: 1rem; }
.scripture-grid { grid-template-columns: repeat(5, 1fr); }
.scripture-card {
  position: relative;
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid rgba(192,192,192,.7);
  border-radius: 1.2rem;
  background: linear-gradient(150deg, rgba(255,255,255,.84), rgba(255,255,255,.5));
  box-shadow: 0 22px 52px rgba(31,60,136,.1);
}
.scripture-card::before {
  content: "";
  position: absolute;
  inset: .65rem;
  border: 1px solid rgba(58,28,113,.14);
  border-radius: .82rem;
  pointer-events: none;
}
.scripture-card p { margin: 0 0 1.4rem; color: var(--muted); line-height: 1.75; }
.scripture-card strong { color: var(--purple); }

.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid span {
  min-height: 6.4rem;
  display: flex;
  align-items: end;
  padding: 1.05rem;
  border-radius: 1rem;
  color: var(--royal);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}
.service-grid span:hover { transform: translateY(-4px); background: var(--white); }
.availability {
  max-width: none;
  width: 100%;
  padding-inline: max(1rem, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(31,60,136,.08), rgba(58,28,113,.08));
}
.availability-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.availability-row p { margin: 0; padding: 1.15rem; border-left: 3px solid var(--royal); border-radius: .8rem; }

.booking-form, .review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}
label { display: grid; gap: .42rem; color: var(--royal); font-size: .84rem; font-weight: 900; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(31,60,136,.18);
  border-radius: .85rem;
  padding: .88rem 1rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--royal); box-shadow: 0 0 0 4px rgba(31,60,136,.12); }
.span-2 { grid-column: 1 / -1; }
.hidden-field { display: none; }

.booking-contact {
  display: grid;
  gap: .72rem;
  margin-top: 1.2rem;
}
.booking-contact a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: .82rem .95rem;
  border: 1px solid rgba(31,60,136,.14);
  border-radius: .9rem;
  color: var(--royal);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: rgba(255,255,255,.68);
  box-shadow: 0 15px 34px rgba(13,30,95,.08);
  transition: transform 180ms ease, background 180ms ease;
}
.booking-contact a:hover,
.booking-contact a:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}
.booking-contact span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(11rem, 19vw, 16rem);
  gap: clamp(.8rem, 2vw, 1.15rem);
}
.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(192,192,192,.72);
  border-radius: 1.05rem;
  cursor: zoom-in;
  background: rgba(255,255,255,.56);
  box-shadow: 0 22px 52px rgba(31,60,136,.12);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31,60,136,.18), transparent 45%),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.32), transparent 8rem);
  opacity: .72;
  transition: opacity 180ms ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08);
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: .38; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(8, 12, 38, .82);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-image {
  max-width: min(100%, 72rem);
  max-height: 84svh;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 1.1rem;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.42), 0 0 50px rgba(192,192,192,.18);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
}

.coming-soon { display: inline-block; margin-top: 1rem; padding: .9rem 1rem; border-radius: 999px; color: var(--royal); font-weight: 900; }
.site-footer { display: grid; gap: .25rem; padding: 2rem 1rem; color: var(--white); text-align: center; background: var(--deep); }
.site-footer p { margin: 0; }
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 18;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--white);
  background: var(--royal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.success-page { min-height: 100vh; display: grid; place-items: center; padding: 1rem; background: linear-gradient(135deg, var(--royal), var(--purple)); }
.success-card { max-width: 42rem; padding: clamp(1.5rem, 5vw, 3rem); text-align: center; }
.success-card h1 { max-width: none; font-size: clamp(2.7rem, 8vw, 5rem); }

@keyframes floatNote {
  0%, 100% { transform: translate3d(0,0,0) rotate(-4deg); opacity: .24; }
  50% { transform: translate3d(.7rem,-1.5rem,0) rotate(8deg); opacity: .62; }
}
@keyframes sparkle {
  from { opacity: .18; transform: translateY(0); }
  to { opacity: .34; transform: translateY(-.6rem); }
}

@media (max-width: 1080px) {
  .scripture-grid { grid-template-columns: repeat(2, 1fr); }
  .scripture-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + .4rem);
    right: 1rem;
    display: none;
    min-width: 15rem;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 1rem;
    background: rgba(12,18,58,.94);
  }
  .site-nav.open { display: grid; }
  .split, .booking, .reviews, .availability-row { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-header { padding-inline: 1rem; }
  .brand span:last-child { max-width: 9rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  h1 { font-size: clamp(3.45rem, 18vw, 5.8rem); }
  .hero { padding-bottom: 4rem; }
  .service-grid, .booking-form, .review-form, .scripture-grid { grid-template-columns: 1fr; }
  .span-2, .scripture-card:last-child { grid-column: auto; grid-row: auto; }
  .gallery-grid { grid-auto-rows: 14rem; }
  .gallery-item.tall, .gallery-item.wide { grid-column: auto; grid-row: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
}
