/* Shared design tokens and base styles used by index + booking */
:root {
  --bg: #f8f2ec;
  --brand: #c56d55;
  --title: #211916;
  --para: #5f5550;
  --sage: #b9c7ad;
  --gold: #c9a86c;
  --gold-lt: #e8d5b0;
  --white: #fffdf9;
  --error: #b94040;
}

/* Shared base styles used by index + booking */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--para);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 109, 85, 0.12);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Toasts */
.sf-toast-stack {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 92vw);
  z-index: 1200;
  pointer-events: none;
}

.sf-toast {
  --sf-accent: var(--gold);
  --sf-accent-soft: rgba(201, 168, 108, 0.4);
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(33, 25, 22, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(33, 25, 22, 0.22);
  padding: 0.78rem 0.95rem 0.88rem 1.05rem;
  margin-bottom: 0.6rem;
  max-height: 240px;
  opacity: 0;
  transform: translateY(-14px) scale(0.97);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.3s ease,
    margin-bottom 0.3s ease,
    padding-top 0.3s ease,
    padding-bottom 0.3s ease;
}

.sf-toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--sf-accent);
}

.sf-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sf-toast.is-leaving {
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  max-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.sf-toast--success {
  --sf-accent: var(--sage);
  --sf-accent-soft: rgba(185, 199, 173, 0.4);
}

.sf-toast--error {
  --sf-accent: var(--brand);
  --sf-accent-soft: rgba(197, 109, 85, 0.4);
}

.sf-toast--info {
  --sf-accent: var(--gold);
  --sf-accent-soft: rgba(201, 168, 108, 0.4);
}

.sf-toast-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding-right: 1.3rem;
}

.sf-toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--sf-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1;
  color: var(--sf-accent);
  margin-top: 0.02rem;
}

.sf-toast-title {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fffdf9;
  line-height: 1.35;
}

.sf-toast-message {
  margin: 0.2rem 0 0;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(248, 242, 236, 0.65);
  line-height: 1.45;
}

.sf-toast-close {
  position: absolute;
  top: 0.46rem;
  right: 0.5rem;
  background: transparent;
  border: 0;
  color: rgba(248, 242, 236, 0.3);
  font-size: 0.82rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem;
}

.sf-toast-close:hover {
  color: rgba(248, 242, 236, 0.7);
}

.sf-toast-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--sf-accent);
  transform-origin: right center;
  animation: sfToastDrain var(--sf-toast-duration, 3500ms) linear forwards;
}

@keyframes sfToastDrain {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

/* ── NAV ── */
nav {
  background: rgba(248, 242, 236, 0.88);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--para);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  background: var(--brand);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  transition: background 0.25s !important;
}

.nav-cta:hover {
  background: var(--title) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 109, 85, 0.3);
  background: rgba(255, 253, 249, 0.75);
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.nav-toggle:hover {
  background: rgba(255, 253, 249, 0.95);
  border-color: rgba(197, 109, 85, 0.55);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--title);
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

nav.nav-open .nav-toggle-line {
  background: transparent;
}

nav.nav-open .nav-toggle-line::before {
  transform: translateY(6px) rotate(45deg);
}

nav.nav-open .nav-toggle-line::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
  background: linear-gradient(180deg, #f2e7da 0%, #efe2d3 100%);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw 4vw 6vw 8vw;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(232, 221, 208, 0.7) 0%,
    rgba(240, 229, 217, 0.5) 100%
  );
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--title);
  margin-bottom: 1.6rem;
}

h1 em {
  font-style: italic;
  color: var(--brand);
}

.hero-sub {
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 2.8rem;
  color: var(--para);
  line-height: 1.8;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--title);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--brand);
  color: var(--white);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--sage);
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(33, 25, 22, 0.56) 0%,
      rgba(33, 25, 22, 0.28) 45%,
      rgba(33, 25, 22, 0.68) 100%
    ),
    radial-gradient(
      ellipse at 30% 20%,
      rgba(170, 133, 91, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(197, 109, 85, 0.18) 0%,
      transparent 50%
    ),
    url("../stock/simplyForeverCoupleSunset05c.webp");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-quote-card {
  position: relative;
  z-index: 2;
  background: rgba(236, 224, 210, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(170, 133, 91, 0.4);
  padding: 2.5rem 2.8rem;
  max-width: 340px;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(33, 25, 22, 0.16);
}

.hero-quote-card .orn {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.hero-quote-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--title);
  line-height: 1.6;
}

.hero-quote-card cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  font-style: normal;
}

/* ── STRIP ── */
.gold-strip {
  background: var(--gold);
  padding: 0.9rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  overflow: hidden;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* ── INTRO ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 5vw;
  align-items: center;
}

.intro-img-block {
  position: relative;
  padding: 2rem 2rem 2rem 0;
}

.intro-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 90%;
  background: var(--sage);
  opacity: 1;
  border-radius: 2px;
}

.intro-img-frame {
  position: relative;
  z-index: 1;
  background: var(--gold-lt);
  border-radius: 2px;
  aspect-ratio: 3/4;
  max-width: 340px;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.intro-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.intro-img-placeholder .initials {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--brand);
  opacity: 0.4;
  line-height: 1;
}

.intro-img-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--para);
  margin-top: 0.5rem;
}

.intro-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  background: var(--brand);
  color: var(--white);
  padding: 1rem 1.4rem;
  text-align: center;
  z-index: 2;
  border-radius: 2px;
}

.intro-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}

.intro-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.intro-content {
  padding-left: 4rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--title);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

h2 em {
  font-style: italic;
  color: var(--brand);
}

.intro-content p {
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.intro-content .section-label,
.process .section-label {
  font-size: 0.8rem;
}

.sig {
  margin-top: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--brand);
}

/* ── SERVICES ── */
.services {
  background: linear-gradient(180deg, #342925 0%, #3d302b 100%);
  padding: 6rem 5vw;
  text-align: center;
}

.services .section-label {
  justify-content: center;
  color: var(--gold-lt);
}

.services .section-label::before {
  background: var(--gold-lt);
}

.services h2 {
  color: var(--bg);
  margin-bottom: 3.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Single package layout */
.cards--single {
  grid-template-columns: 1fr;
  max-width: 520px;
}

/* Add-ons block */
.service-addons {
  max-width: 700px;
  margin: 2.5rem auto 0;
  border-top: 1px solid rgba(201, 168, 108, 0.26);
  padding-top: 2rem;
}

.service-addons-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.7;
  margin-bottom: 1.4rem;
}

.addon-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.addon {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 0.7rem;
  row-gap: 0.3rem;
  padding: 0 1.5rem;
}

.addon:first-child {
  padding-left: 0;
}

.addon:last-child {
  padding-right: 0;
}

.addon-icon {
  color: var(--gold);
  font-size: 0.65rem;
  line-height: 1.6;
  grid-row: 1;
}

.addon-name {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg);
  grid-row: 1;
  text-align: left;
}

.addon-price {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  grid-row: 1;
  white-space: nowrap;
  align-self: center;
}

.addon-desc {
  grid-column: 2 / 4;
  grid-row: 2;
  font-size: 0.82rem;
  color: rgba(248, 242, 236, 0.62);
  line-height: 1.65;
  text-align: left;
}

.addon-divider {
  width: 1px;
  background: rgba(201, 168, 108, 0.26);
  align-self: stretch;
  margin: 0;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 108, 0.24);
  padding: 3rem 2rem;
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: default;
}

.card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.3rem;
  color: var(--gold);
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.88rem;
  color: rgba(248, 242, 236, 0.72);
  line-height: 1.75;
}

.card-price {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── PROCESS ── */
.process {
  padding: 6rem 5vw;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process h2 {
  margin-bottom: 0.8rem;
}

.process > p {
  max-width: 560px;
  margin: 0 auto 4rem;
  font-size: 0.97rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step {
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--title);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.83rem;
  color: var(--para);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--sage);
  padding: 6rem 5vw;
  text-align: center;
}

.testimonials .section-label {
  justify-content: center;
  color: rgba(33, 25, 22, 0.7);
}

.testimonials .section-label::before {
  background: rgba(33, 25, 22, 0.5);
}

.testimonials h2 {
  color: var(--title);
  margin-bottom: 3rem;
}

.testi-slider {
  max-width: 1100px;
  margin: 0 auto;
}

.testi-viewport {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testi-slider--compact .testi-track {
  justify-content: center;
}

.testi-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  background: rgba(248, 242, 236, 0.7);
  border-radius: 3px;
  padding: 2.2rem;
  text-align: left;
  position: relative;
}

.testi-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--brand);
  opacity: 0.25;
  line-height: 0.8;
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
}

.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--title);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  padding-top: 1.4rem;
}

.testi-couple {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 500;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.testi-couple {
  margin-top: auto;
  padding-top: 0.35rem;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testi-nav {
  border: 1px solid rgba(33, 25, 22, 0.18);
  background: rgba(248, 242, 236, 0.82);
  color: var(--title);
  min-width: 96px;
  min-height: 44px;
  padding: 0.8rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.testi-nav:hover,
.testi-nav:focus-visible {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.testi-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.testi-nav:disabled:hover,
.testi-nav:disabled:focus-visible {
  background: rgba(248, 242, 236, 0.82);
  border-color: rgba(33, 25, 22, 0.18);
  color: var(--title);
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 25, 22, 0.22);
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.testi-dot.is-active {
  background: var(--brand);
  transform: scale(1.35);
}

/* ── SECTION HEADER (reusable) ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--title);
  line-height: 1.15;
}

.section-header h2 em {
  font-style: italic;
  color: var(--brand);
}

.section-header p {
  margin-top: 0.9rem;
  font-size: 0.97rem;
  color: var(--para);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Recent weddings */
.weddings-section {
  padding: 6rem 5vw 7rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.weddings-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(185, 199, 173, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.weddings-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 108, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.weddings-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.weddings-section .section-label::before,
.weddings-section .section-label::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.weddings-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.weddings-section .gallery-card--feature {
  grid-column: 1 / -1;
}

.weddings-section .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  background: #211916;
}

/* Uniform fixed heights per card type */
.weddings-section .gallery-card--feature {
  height: 420px;
}

.weddings-section .gallery-card--layout-portrait,
.weddings-section .gallery-card--layout-three,
.weddings-section .gallery-card--layout-four,
.weddings-section .gallery-card--layout-five,
.weddings-section .gallery-card--layout-six {
  height: 320px;
}

.weddings-section .gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: relative;
  z-index: 1;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.weddings-section .gallery-photo--portrait,
.weddings-section .gallery-photo--pos-center-top {
  object-position: center top;
}

.weddings-section .gallery-photo--fit-contain {
  object-fit: contain;
}

.weddings-section .gallery-photo--pos-center-center {
  object-position: center center;
}

.weddings-section .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(33, 25, 22, 0.95) 0%,
    rgba(33, 25, 22, 0.6) 45%,
    rgba(33, 25, 22, 0.15) 100%
  );
  opacity: 0.45;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
  z-index: 2;
}

.weddings-section .gallery-card:hover .gallery-overlay {
  opacity: 0.9;
}

.weddings-section .gallery-overlay > div {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.weddings-section .gallery-card:hover .gallery-overlay > div {
  opacity: 1;
  transform: none;
}

.weddings-section .gallery-card:hover .gallery-photo {
  transform: scale(1.04);
}

.weddings-section .overlay-venue {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.weddings-section .overlay-caption {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.weddings-section .gallery-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(to top, rgba(33, 25, 22, 0.6), transparent);
  transition: opacity 0.3s;
  z-index: 2;
}

.weddings-section .gallery-card:hover .gallery-tag {
  opacity: 0;
}

.weddings-section .gallery-tag-text {
  font-size: 0.7rem;
  color: rgba(255, 253, 249, 0.75);
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.weddings-section .gallery-card--feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 42px 0 0;
  border-color: var(--gold) transparent transparent transparent;
  z-index: 2;
  opacity: 0.75;
}

.weddings-section .gallery-footer {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.weddings-section .gallery-footer p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--para);
  opacity: 0.7;
}

.weddings-section .gold-dash {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  opacity: 0.6;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--brand);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner::before {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
}

.cta-banner::after {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -50px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 253, 249, 0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--white);
  color: var(--brand);
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}

.btn-white:hover {
  background: var(--title);
  color: var(--white);
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #5f453d 0%, #4f392f 100%);
  color: rgba(248, 242, 236, 0.55);
  padding: 3.5rem 5vw 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: 3rem;
}

.footer--sage {
  background: linear-gradient(180deg, #83947b 0%, #72826b 100%);
  margin-top: 1.25rem;
  color: rgba(33, 25, 22, 0.78);
}

.footer--sage .footer-reference-note {
  border-color: rgba(33, 25, 22, 0.2);
  background: rgba(255, 255, 255, 0.22);
  color: rgba(33, 25, 22, 0.88);
}

.footer--sage .footer-brand {
  color: #fffdf9;
}

.footer--sage .footer-brand span {
  color: #211916;
}

.footer--sage .footer-links a {
  color: rgba(33, 25, 22, 0.72);
}

.footer--sage .footer-links a:hover {
  color: #fffdf9;
}

.footer--sage .footer-links .footer-book-cta {
  border-color: #211916;
  color: #211916;
  background: rgba(255, 255, 255, 0.12);
}

.footer--sage .footer-links .footer-book-cta:hover {
  background: #211916;
  border-color: #211916;
  color: #fffdf9;
}

.footer--sage .footer-bottom {
  border-top-color: rgba(33, 25, 22, 0.14);
}

.footer--sage .footer-legal,
.footer--sage .footer-credit {
  color: rgba(33, 25, 22, 0.72);
}

.footer--sage .footer-legal a,
.footer--sage .footer-credit a {
  color: rgba(33, 25, 22, 0.86);
}

.footer--sage .footer-legal a:hover,
.footer--sage .footer-credit a:hover {
  color: #fffdf9;
}

.footer--sage .footer-form-title {
  color: #211916;
}

.footer--sage .footer-form-title::before,
.footer--sage .footer-form-title::after {
  background: rgba(33, 25, 22, 0.35);
}

.footer--sage .footer-field .field-error {
  color: #211916;
}

.footer--sage .footer-field::after {
  background: #211916;
}

.footer--sage .footer-field input,
.footer--sage .footer-field textarea {
  border-bottom-color: rgba(33, 25, 22, 0.28);
  color: rgba(33, 25, 22, 0.9);
}

.footer--sage .footer-field input::placeholder,
.footer--sage .footer-field textarea::placeholder {
  color: rgba(33, 25, 22, 0.62);
}

.footer--sage .footer-form-btn {
  border-color: #211916;
  color: #211916;
  background: rgba(255, 255, 255, 0.12);
}

.footer--sage .footer-form-btn:hover {
  background: #211916;
  border-color: #211916;
  color: #fffdf9;
}

.footer-reference-note {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
  padding: 0.8rem 1rem;
  border: 1px dashed rgba(248, 242, 236, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.footer-brand span {
  color: var(--gold);
  font-style: italic;
}

footer p {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-intro-logo {
  display: block;
  width: clamp(120px, 14vw, 190px);
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 242, 236, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links .footer-book-cta {
  margin-top: 0.65rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid rgba(201, 168, 108, 0.55);
  border-radius: 2px;
  background: transparent;
  color: var(--gold-lt);
  letter-spacing: 0.12em;
  text-align: center;
}

.footer-links .footer-book-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(248, 242, 236, 0.08);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.footer-legal {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: rgba(248, 242, 236, 0.55);
}

.footer-legal a {
  color: var(--gold-lt);
  text-decoration: none;
  transition:
    color 0.2s,
    opacity 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-credit {
  margin-left: 0.55rem;
  color: rgba(248, 242, 236, 0.48);
}

.footer-credit a {
  font-size: inherit;
  letter-spacing: inherit;
}

.footer-credit a:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

/* ── FOOTER FORM PLACEHOLDER ── */
.footer-form-wrap {
  padding: 0 1rem;
}

.footer-contact-form {
  margin: 0;
}

.footer-form-alert {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 168, 108, 0.26);
  border-radius: 3px;
  font-size: 0.76rem;
  line-height: 1.6;
}

.footer-form-alert p {
  margin: 0;
}

.footer-form-alert p + p {
  margin-top: 0.3rem;
}

.footer-form-alert.is-success {
  background: rgba(166, 191, 160, 0.12);
  border-color: rgba(166, 191, 160, 0.34);
  color: rgba(248, 242, 236, 0.88);
}

.footer-form-alert.is-error {
  background: rgba(185, 64, 64, 0.12);
  border-color: rgba(185, 64, 64, 0.28);
  color: rgba(248, 242, 236, 0.88);
}

.footer-form-title {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-form-title::before,
.footer-form-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 108, 0.3);
}

.footer-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.8rem;
}

.footer-field {
  position: relative;
  margin-bottom: 1.4rem;
}

.footer-field input,
.footer-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248, 242, 236, 0.2);
  color: rgba(248, 242, 236, 0.85);
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.5rem 0;
  outline: none;
  resize: none;
}

.footer-field textarea {
  height: 58px;
  line-height: 1.55;
}

.footer-field .field-error {
  color: var(--gold-lt);
}

.footer-field input::placeholder,
.footer-field textarea::placeholder {
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* Animated gold underline on focus */
.footer-field::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-field:focus-within::after {
  width: 100%;
}

.footer-form-help {
  margin: -0.1rem 0 1.15rem;
  color: rgba(248, 242, 236, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-form-honeypot,
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-form-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 108, 0.45);
  color: var(--gold-lt);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  border-radius: 2px;
}

.footer-form-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-up:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-up:nth-child(2) {
  animation-delay: 0.25s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* 404 page */
.not-found-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201, 168, 108, 0.26), transparent 28%),
    radial-gradient(circle at bottom right, rgba(197, 109, 85, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f2ec 0%, #f1e7de 100%);
}

.not-found-shell {
  min-height: 100vh;
  padding: 8rem 5vw 4rem;
  display: flex;
  align-items: center;
}

.not-found-scene {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.not-found-copy,
.not-found-panel-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(197, 109, 85, 0.14);
  box-shadow: 0 18px 44px rgba(33, 25, 22, 0.09);
}

.not-found-copy {
  padding: clamp(2rem, 4vw, 4rem);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(10px);
}

.not-found-copy::before,
.not-found-panel-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--brand), rgba(197, 109, 85, 0));
}

.not-found-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}

.not-found-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.not-found-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  line-height: 0.95;
  color: var(--title);
  max-width: none;
}

.not-found-lead {
  max-width: 58ch;
  margin-top: 1.35rem;
  font-size: 1.02rem;
  color: var(--para);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.not-found-path-card {
  margin-top: 2.2rem;
  padding: 1rem 1.15rem;
  border-radius: 3px;
  background: rgba(33, 25, 22, 0.04);
  border: 1px solid rgba(33, 25, 22, 0.08);
}

.not-found-path-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(33, 25, 22, 0.6);
}

.not-found-path-card code {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  color: var(--title);
  word-break: break-word;
}

.not-found-panel {
  display: flex;
}

.not-found-panel-inner {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(33, 25, 22, 0.98), rgba(70, 47, 36, 0.96));
  color: rgba(255, 253, 249, 0.82);
}

.not-found-ornament {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 10vw, 7rem);
  line-height: 0.9;
  color: rgba(232, 213, 176, 0.9);
}

.not-found-panel-inner h2 {
  margin-top: 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

.not-found-links {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.not-found-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  text-decoration: none;
  color: var(--white);
  border-radius: 3px;
  border: 1px solid rgba(232, 213, 176, 0.16);
  background: rgba(255, 253, 249, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.not-found-links a::after {
  content: ">";
  color: var(--gold-lt);
}

.not-found-links a:hover,
.not-found-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(232, 213, 176, 0.34);
  background: rgba(255, 253, 249, 0.08);
}

.not-found-note {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  color: rgba(255, 253, 249, 0.68);
}

/* Launch page */
.launch-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(201, 168, 108, 0.22), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(185, 199, 173, 0.28), transparent 22%),
    linear-gradient(180deg, #faf4ee 0%, #f1e5d8 100%);
}

.launch-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 5vw;
  background: rgba(250, 244, 238, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 109, 85, 0.12);
}

.launch-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.launch-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.launch-contact-link {
  color: var(--title);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(33, 25, 22, 0.18);
}

.launch-shell {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 2.5rem 5vw 3rem;
}

.launch-hero {
  width: min(760px, 100%);
  margin: 0 auto;
  display: block;
}

.launch-copy {
  padding: clamp(1.6rem, 3vw, 3rem);
  border-radius: 4px;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(201, 168, 108, 0.18);
  box-shadow: 0 22px 52px rgba(33, 25, 22, 0.1);
}

.launch-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.launch-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.launch-copy h1 {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 0.95;
  color: var(--title);
  max-width: none;
}

.launch-lead {
  max-width: none;
  margin-top: 1rem;
  font-size: 0.98rem;
  color: var(--para);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .gold-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 1rem 4vw;
  }

  .strip-dot {
    display: none;
  }

  .strip-item {
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.62rem 0.7rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
    white-space: normal;
    min-height: 42px;
    transition:
      opacity 0.45s ease,
      transform 0.45s ease;
  }

  .gold-strip.is-animating .strip-item {
    opacity: 0;
    transform: translateY(10px);
  }

  .gold-strip.is-animating.is-visible .strip-item {
    opacity: 1;
    transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-text {
    padding: 4rem 6vw 3rem;
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .intro-img-block {
    display: none;
  }

  .intro-content {
    padding-left: 0;
  }

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

  .testi-card {
    flex-basis: 100%;
  }

  .testi-controls {
    flex-wrap: wrap;
  }

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

  .weddings-section .gallery-card--feature {
    grid-column: 1 / -1;
    height: 300px;
  }

  .weddings-section .gallery-card--layout-portrait,
  .weddings-section .gallery-card--layout-three,
  .weddings-section .gallery-card--layout-four,
  .weddings-section .gallery-card--layout-five,
  .weddings-section .gallery-card--layout-six {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }

  .steps::before {
    display: none;
  }

  .not-found-shell {
    padding-top: 7rem;
  }

  .not-found-scene {
    grid-template-columns: 1fr;
  }

  .not-found-copy h1 {
    max-width: none;
  }

  .launch-nav {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .launch-shell {
    padding-top: 2.5rem;
  }

  .launch-copy h1 {
    max-width: none;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-form-wrap {
    padding: 0;
    border-top: 1px solid rgba(248, 242, 236, 0.08);
    padding-top: 1.5rem;
  }

  .footer-links {
    align-items: flex-start;
  }

  nav {
    background: rgba(248, 242, 236, 0.88);
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(248, 242, 236, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(197, 109, 85, 0.14);
    border-bottom: 1px solid rgba(197, 109, 85, 0.16);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 0.45s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
    box-shadow: 0 12px 24px rgba(33, 25, 22, 0.08);
  }

  nav.nav-open .nav-mobile-panel {
    max-height: 420px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0.7rem 4vw 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-mobile-links li {
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  nav.nav-open .nav-mobile-links li {
    opacity: 1;
    transform: none;
  }

  nav.nav-open .nav-mobile-links li:nth-child(1) {
    transition-delay: 0.05s;
  }

  nav.nav-open .nav-mobile-links li:nth-child(2) {
    transition-delay: 0.09s;
  }

  nav.nav-open .nav-mobile-links li:nth-child(3) {
    transition-delay: 0.13s;
  }

  nav.nav-open .nav-mobile-links li:nth-child(4) {
    transition-delay: 0.17s;
  }

  nav.nav-open .nav-mobile-links li:nth-child(5) {
    transition-delay: 0.21s;
  }

  nav.nav-open .nav-mobile-links li:nth-child(6) {
    transition-delay: 0.25s;
  }

  .nav-mobile-links a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.2rem;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--para);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 109, 85, 0.12);
    transition: color 0.2s;
  }

  .nav-mobile-links a:hover {
    color: var(--brand);
  }

  .nav-mobile-links .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .gold-strip {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem 4vw;
  }

  .strip-item {
    font-size: 0.64rem;
    padding: 0.58rem 0.65rem;
  }

  .weddings-section .gallery-grid {
    grid-template-columns: 1fr;
  }

  .weddings-section .gallery-card--feature,
  .weddings-section .gallery-card--layout-portrait,
  .weddings-section .gallery-card--layout-three,
  .weddings-section .gallery-card--layout-four,
  .weddings-section .gallery-card--layout-five,
  .weddings-section .gallery-card--layout-six {
    grid-column: auto;
    height: 280px;
  }

  .weddings-section .gallery-overlay {
    opacity: 1;
  }

  .weddings-section .gallery-overlay > div {
    opacity: 1;
    transform: none;
  }

  .weddings-section .gallery-tag {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strip-item {
    transition: none !important;
  }
}

/* Booking page styles merged from booking.css */
.booking-page {
  font-weight: 300;
  color: #4a3f3a;
  background: linear-gradient(180deg, #f2e7da 0%, #efe2d3 100%);
}

/* ── NAV ── */
.booking-page nav {
  background: rgba(248, 242, 236, 0.88);
}

.nav-back {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--para);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.nav-back:hover {
  color: var(--brand);
}

.nav-back svg {
  width: 14px;
  height: 14px;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 9rem 5vw 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(185, 199, 173, 0.2) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.page-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.page-eyebrow::before,
.page-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--title);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header h1 em {
  font-style: italic;
  color: var(--brand);
}

.page-header p {
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  color: var(--para);
  line-height: 1.8;
}

/* ── STEP INDICATOR ── */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 1.25rem auto 3.5rem;
  padding: 0 5vw;
}

.step-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.step-pill::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: rgba(201, 168, 108, 0.3);
  z-index: 0;
}

.step-pill:last-child::after {
  display: none;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 108, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--para);
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(95, 85, 80, 0.5);
  transition: color 0.3s;
  white-space: nowrap;
}

.step-pill.active .step-dot {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.step-pill.active .step-label {
  color: var(--brand);
}

.step-pill.done .step-dot {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--title);
}

.step-pill.done .step-label {
  color: var(--para);
}

/* ── FORM WRAPPER ── */
#booking-form,
#contact-form {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 5vw 6rem;
}

.contact-page .contact-intro-cards {
  margin-top: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page #contact-form {
  max-width: 920px;
}

.contact-page {
  background:
    radial-gradient(ellipse at 8% 2%, rgba(197, 109, 85, 0.2), transparent 45%),
    radial-gradient(
      ellipse at 92% 10%,
      rgba(201, 168, 108, 0.25),
      transparent 42%
    ),
    linear-gradient(180deg, #f4dfcf 0%, #f1ddca 45%, #ecd6c1 100%);
}

.contact-page .page-header::before {
  background:
    radial-gradient(
      ellipse at 50% 110%,
      rgba(185, 199, 173, 0.22) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse at 12% 0%,
      rgba(197, 109, 85, 0.24) 0%,
      transparent 36%
    ),
    radial-gradient(
      ellipse at 88% 0%,
      rgba(201, 168, 108, 0.2) 0%,
      transparent 38%
    );
}

.contact-page .page-eyebrow {
  color: var(--brand);
}

.contact-page .page-eyebrow::before,
.contact-page .page-eyebrow::after {
  background: var(--brand);
}

.contact-page .page-header p {
  color: rgba(33, 25, 22, 0.8);
}

.contact-page .contact-intro-cards .review-block {
  background: linear-gradient(
    160deg,
    rgba(255, 241, 228, 0.86) 0%,
    rgba(245, 225, 207, 0.92) 100%
  );
  border: 1px solid rgba(197, 109, 85, 0.35);
  box-shadow: 0 10px 24px rgba(33, 25, 22, 0.08);
}

.contact-page .contact-intro-cards .review-block h4 {
  color: var(--brand);
  border-bottom-color: rgba(197, 109, 85, 0.28);
}

.contact-page .contact-intro-cards .review-block p,
.contact-page .contact-intro-cards .review-row {
  color: rgba(0, 0, 0, 0.82);
}

.contact-page .contact-intro-cards .review-row .val {
  color: var(--brand);
  font-weight: 500;
  white-space: nowrap;
}

.contact-page .contact-link {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 109, 85, 0.45);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.contact-page .contact-link:hover {
  color: var(--title);
  border-bottom-color: var(--title);
}

.contact-page #contact-form form {
  background: linear-gradient(
    170deg,
    rgba(250, 235, 221, 0.78) 0%,
    rgba(241, 222, 204, 0.86) 100%
  );
  border: 1px solid rgba(170, 133, 91, 0.35);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(33, 25, 22, 0.09);
  padding: 1.7rem 1.6rem 1.35rem;
  max-width: 780px;
  margin: 0 auto;
}

.contact-page .contact-intro-cards .review-row .lbl {
  flex-shrink: 1;
  color: #000000;
}

.contact-page .send-copy-wrap {
  background: rgba(33, 25, 22, 0.08);
  border: 1px solid rgba(33, 25, 22, 0.24);
}

.contact-page .send-copy-wrap p {
  color: rgba(33, 25, 22, 0.84);
}

.contact-page #contact-form input::placeholder,
.contact-page #contact-form textarea::placeholder {
  color: rgba(33, 25, 22, 0.78);
}

.contact-page .btn-submit {
  background: linear-gradient(135deg, #cb7158 0%, #b95f47 100%);
  border: 1px solid rgba(122, 62, 45, 0.1);
  box-shadow: 0 6px 16px rgba(122, 62, 45, 0.2);
}

.contact-page .btn-submit:hover {
  background: linear-gradient(135deg, #b85f47 0%, #9f4d39 100%);
}

#php-errors {
  display: none;
}

.field-error {
  font-size: 0.7rem;
  color: var(--brand);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
  animation: fadeUp 0.2s ease forwards;
}

/* ── STEP PANELS ── */
.form-step {
  display: none;
  animation: stepIn 0.35s ease;
}

.form-step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.step-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--title);
  margin-bottom: 0.4rem;
}

.step-heading em {
  font-style: italic;
  color: var(--brand);
}

.step-sub {
  font-size: 0.9rem;
  color: var(--para);
  opacity: 0.75;
  margin-bottom: 2.2rem;
}

.step-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0.8rem 0 2rem;
}

/* ── FIELD STYLES ── */
.field-group {
  margin-bottom: 1.6rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.field-row.trio {
  grid-template-columns: 1fr 1fr 1fr;
}

.booking-page label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.booking-page input[type="text"],
.booking-page input[type="email"],
.booking-page input[type="tel"],
.booking-page input[type="date"],
.booking-page select,
.booking-page textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(33, 25, 22, 0.2);
  color: var(--title);
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.55rem 0;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}

.booking-page select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A86C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.5rem;
}

.booking-page textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.booking-page input:focus,
.booking-page select:focus,
.booking-page textarea:focus {
  border-bottom-color: var(--brand);
}

.booking-page input::placeholder,
.booking-page textarea::placeholder {
  color: rgba(33, 25, 22, 0.3);
  font-size: 0.88rem;
}

/* Animated underline on focus */
.field-wrap {
  position: relative;
}

.field-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.field-wrap:focus-within::after {
  width: 100%;
}

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  border-bottom-color: rgba(33, 25, 22, 0.15);
}

/* ── RADIO / CHECKBOX CARDS ── */
.card-options {
  display: grid;
  gap: 0.75rem;
}

.card-options.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.card-options.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.option-card {
  position: relative;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.2rem 0.8rem;
  border: 1px solid rgba(95, 85, 80, 0.2);
  border-radius: 3px;
  text-align: center;
  transition: all 0.25s;
  background: rgba(232, 221, 208, 0.72);
}

.option-card input:checked + .option-label {
  border-color: var(--brand);
  background: rgba(197, 109, 85, 0.14);
  color: var(--brand);
}

.option-label:hover {
  border-color: rgba(197, 109, 85, 0.4);
  background: rgba(197, 109, 85, 0.1);
}

.option-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.option-name {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--title);
}

.option-card input:checked + .option-label .option-name {
  color: var(--brand);
}

.option-note {
  font-size: 0.68rem;
  color: var(--para);
  opacity: 0.65;
}

/* Checkbox add-ons */
.addon-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.addon-check {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  cursor: pointer;
}

.addon-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(201, 168, 108, 0.5);
  border-radius: 2px;
  appearance: none;
  background: transparent;
  margin-top: 0.15rem;
  cursor: pointer;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.addon-check input[type="checkbox"]:checked {
  background: var(--brand);
  border-color: var(--brand);
}

.addon-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.addon-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--title);
}

.addon-text span {
  font-size: 0.78rem;
  color: var(--para);
  opacity: 0.7;
}

/* ── CALENDAR ── */
.calendar-wrap {
  background: rgba(240, 229, 217, 0.92);
  border: 1px solid rgba(170, 133, 91, 0.35);
  border-radius: 4px;
  padding: 1.4rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 8px 28px rgba(33, 25, 22, 0.1);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.cal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--title);
}

.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 224, 210, 0.95);
  border: 1px solid rgba(170, 133, 91, 0.35);
  color: rgba(33, 25, 22, 0.75);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.cal-nav svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cal-nav:hover {
  color: var(--brand);
  background: rgba(232, 214, 197, 0.95);
  border-color: rgba(197, 109, 85, 0.42);
  transform: translateY(-1px);
}

.cal-nav:active {
  transform: translateY(0);
}

.cal-nav:focus-visible {
  outline: 2px solid rgba(197, 109, 85, 0.45);
  outline-offset: 2px;
}

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

.cal-dow {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.5rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--title);
  border: 1.5px solid transparent;
  background: none;
  font-family: "Jost", sans-serif;
}

.cal-day:hover:not(.unavailable):not(.past):not(.empty) {
  border-color: var(--brand);
  color: var(--brand);
}

.cal-day.selected {
  background: var(--brand);
  color: var(--white) !important;
  border-color: var(--brand);
}

.cal-day.unavailable {
  background: rgba(185, 199, 173, 0.3);
  color: rgba(33, 25, 22, 0.3);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day.past {
  color: rgba(33, 25, 22, 0.2);
  cursor: not-allowed;
}

.cal-day.today {
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 500;
}

.cal-day.empty {
  cursor: default;
}

.cal-legend {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--para);
  text-transform: uppercase;
  background: rgba(232, 221, 208, 0.75);
  border: 1px solid rgba(170, 133, 91, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(95, 85, 80, 0.2);
}

.legend-dot.unavailable {
  background: rgba(185, 199, 173, 0.58);
}

.selected-date-display {
  text-align: center;
  margin-top: 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--brand);
  min-height: 1.4em;
}

/* ── REVIEW STEP ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

#step-4 .review-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.review-block {
  background: rgba(240, 229, 217, 0.88);
  border: 1px solid rgba(170, 133, 91, 0.32);
  border-radius: 3px;
  padding: 1.4rem 1.6rem;
}

.review-block h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 168, 108, 0.2);
}

.review-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  gap: 1rem;
}

.review-row .lbl {
  color: var(--para);
  opacity: 0.7;
  flex-shrink: 0;
}

.review-row .val {
  color: var(--title);
  font-weight: 400;
  text-align: right;
}

/* Send copy checkbox */
.send-copy-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(174, 187, 160, 0.24);
  border: 1px solid rgba(150, 167, 132, 0.52);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.send-copy-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(58, 58, 58, 0.64);
  border-radius: 2px;
  appearance: none;
  background: transparent;
  margin-top: 0.2rem;
  cursor: pointer;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.send-copy-wrap input:checked {
  background: var(--sage);
  border-color: var(--sage);
}

.send-copy-wrap input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.send-copy-wrap p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--para);
}

.send-copy-wrap strong {
  color: var(--title);
  display: block;
  font-weight: 500;
}

/* ── ERRORS ── */
.error-box {
  background: rgba(185, 64, 64, 0.06);
  border: 1px solid rgba(185, 64, 64, 0.25);
  border-radius: 3px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
}

.error-box p {
  font-size: 0.83rem;
  color: var(--error);
  margin-bottom: 0.2rem;
}

.error-box p:last-child {
  margin-bottom: 0;
}

/* ── NAVIGATION BUTTONS ── */
.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 108, 0.22);
  background: rgba(236, 224, 210, 0.9);
}

.btn-prev {
  background: transparent;
  border: 1px solid rgba(95, 85, 80, 0.3);
  color: var(--para);
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}

.btn-prev:hover {
  border-color: var(--para);
  color: var(--title);
}

.btn-next,
.btn-submit {
  background: var(--brand);
  color: var(--white);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 2.2rem;
  cursor: pointer;
  border-radius: 2px;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--title);
  transform: translateY(-1px);
}

.btn-spacer {
  flex: 1;
}

/* ── SUCCESS ── */
.success-panel {
  text-align: center;
  padding: 4rem 2rem 6rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  font-size: 1.6rem;
}

.success-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--title);
  margin-bottom: 0.8rem;
}

.success-panel h2 em {
  font-style: italic;
  color: var(--brand);
}

.success-panel p {
  max-width: 460px;
  margin: 0 auto 1.2rem;
  font-size: 0.97rem;
}

.success-back {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 109, 85, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.success-back:hover {
  color: var(--title);
}

/* ── FOOTER ── */
.page-footer {
  background: var(--title);
  display: block;
  grid-template-columns: none;
  align-items: initial;
  gap: 0;
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 1.8rem 5vw;
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .field-row,
  .field-row.trio {
    grid-template-columns: 1fr;
  }

  .card-options.cols-4 {
    grid-template-columns: 1fr 1fr;
  }

  .card-options.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-intro-cards {
    grid-template-columns: 1fr;
  }

  .steps-indicator {
    gap: 0;
  }

  .step-label {
    display: none;
  }
}

.frontend-admin-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 231, 210, 0.28);
  background: linear-gradient(
    135deg,
    rgba(33, 25, 22, 0.96),
    rgba(79, 56, 47, 0.94)
  );
  box-shadow: 0 18px 36px rgba(27, 18, 14, 0.22);
  color: #fff4ea;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.frontend-admin-launcher:hover,
.frontend-admin-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(27, 18, 14, 0.28);
  border-color: rgba(235, 190, 146, 0.46);
}

.frontend-admin-launcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 245, 232, 0.1);
  color: #efc49a;
  flex-shrink: 0;
}

.frontend-admin-launcher__icon svg {
  width: 18px;
  height: 18px;
}

.frontend-admin-launcher__copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.frontend-admin-launcher__copy strong,
.frontend-admin-launcher__copy small {
  display: block;
}

.frontend-admin-launcher__copy strong {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.frontend-admin-launcher__copy small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 236, 219, 0.7);
}

@media (max-width: 720px) {
  .frontend-admin-launcher {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }

  .frontend-admin-launcher__copy small {
    letter-spacing: 0.14em;
  }
}
