:root {
  --bg: #f7f2e7;
  --bg-soft: #efe7d8;
  --surface: rgba(255, 251, 245, 0.78);
  --surface-strong: #fffaf1;
  --ink: #3a2b24;
  --ink-soft: #64554c;
  --heading: #1f3b2e;
  --accent: #c8a25a;
  --accent-soft: #e3d2ab;
  --sage: #a7b79f;
  --taupe: #a89a8a;
  --line: rgba(31, 59, 46, 0.14);
  --shadow: 0 18px 45px rgba(58, 43, 36, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 162, 90, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(167, 183, 159, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 38%, #f1ebdf 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

p,
li {
  color: var(--ink-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5rem;
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

main {
  display: block;
}

.topbar,
.nav-shell,
.section-inner,
.hero-grid,
.footer-grid,
.footer-bottom,
.page-intro,
.content-grid,
.split-grid,
.contact-grid,
.legal-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero-grid > *,
.page-intro > *,
.content-grid > *,
.split-grid > *,
.contact-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.pricing-grid > *,
.footer-grid > * {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 241, 0.78);
  border-bottom: 1px solid rgba(31, 59, 46, 0.08);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.topbar {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 0;
  font-size: 0.94rem;
  overflow: hidden;
  max-height: 60px;
  transition: max-height 180ms ease, padding 180ms ease, opacity 180ms ease;
}

.topbar-link {
  color: var(--ink-soft);
}

.topbar-text {
  color: var(--ink-soft);
}

.topbar-separator {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 1rem 0 1.15rem;
  transition: padding 180ms ease, gap 180ms ease;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: gap 180ms ease;
}

.brand-lockup-footer {
  margin-bottom: 1rem;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  background:
    linear-gradient(135deg, rgba(200, 162, 90, 0.9), rgba(247, 242, 231, 0.85)),
    var(--bg-soft);
  box-shadow: inset 0 0 0 1px rgba(31, 59, 46, 0.08);
  transition: width 180ms ease, height 180ms ease, border-radius 180ms ease, font-size 180ms ease;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 1.06rem;
  color: var(--heading);
  transition: font-size 180ms ease;
}

.brand-copy span:last-child {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: font-size 180ms ease;
}

.site-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(31, 59, 46, 0.08);
  color: var(--heading);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--heading);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
}

.site-header.is-compact {
  background: rgba(251, 248, 241, 0.9);
  box-shadow: 0 10px 25px rgba(58, 43, 36, 0.08);
}

.site-header.is-compact .topbar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.site-header.is-compact .nav-shell {
  gap: 14px;
  padding: 0.5rem 0 0.6rem;
}

.site-header.is-compact .brand-lockup {
  gap: 10px;
}

.site-header.is-compact .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.55rem;
}

.site-header.is-compact .brand-copy strong {
  font-size: 0.98rem;
}

.site-header.is-compact .brand-copy span:last-child {
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--heading), #2b5441);
  box-shadow: 0 14px 28px rgba(31, 59, 46, 0.22);
}

.button-outline {
  border: 1px solid rgba(31, 59, 46, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--heading);
}

.button-small {
  padding: 0.7rem 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 1rem;
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(200, 162, 90, 0.8);
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 34px;
  align-items: start;
}

.surface,
.hero-panel,
.card,
.timeline-card,
.pricing-card,
.form-card,
.faq-item,
.notice,
.story-card,
.list-card,
.quote-card,
.visual-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.card,
.timeline-card,
.pricing-card,
.form-card,
.faq-item,
.notice,
.story-card,
.list-card,
.quote-card,
.visual-card {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.hero-copy p {
  max-width: 60ch;
  font-size: 1.08rem;
}

.hero-introline {
  margin: 0 0 0.9rem;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 0.9rem;
  font-size: 1.18rem;
  color: var(--heading);
  font-weight: 600;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.7rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.fact {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.fact strong {
  display: block;
  color: var(--heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.9rem;
  background:
    radial-gradient(circle at top right, rgba(200, 162, 90, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(31, 59, 46, 0.98), rgba(40, 70, 56, 0.96));
  color: #f7f2e7;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(200, 162, 90, 0.18);
  filter: blur(8px);
}

.panel-label {
  color: rgba(247, 242, 231, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  font-weight: 800;
}

.panel-title {
  margin-top: 1rem;
  color: #fffaf1;
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 10ch;
}

.panel-list,
.feature-list,
.bullet-list,
.value-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li,
.feature-list li,
.bullet-list li,
.value-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.75rem;
}

.panel-list li::before,
.feature-list li::before,
.bullet-list li::before,
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel .panel-list {
  margin-top: 0.2rem;
}

.hero-panel .panel-list li {
  color: rgba(247, 242, 231, 0.88);
  margin-bottom: 0.6rem;
}

.panel-mini {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(247, 242, 231, 0.14);
}

.panel-mini strong {
  color: #fffaf1;
  font-size: 1rem;
}

.panel-mini span {
  color: rgba(247, 242, 231, 0.8);
  font-size: 0.95rem;
}

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

.section {
  padding: 2.4rem 0;
}

.section-tight {
  padding-top: 0.4rem;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 1.8rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 242, 231, 0.94)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.trust-pill {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.trust-pill strong {
  color: var(--heading);
  font-size: 1rem;
}

.trust-pill span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card p:last-child,
.notice p:last-child,
.story-card p:last-child,
.list-card p:last-child,
.quote-card p:last-child {
  margin-bottom: 0;
}

.card-accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 248, 239, 0.82)),
    var(--surface);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.12);
  color: #fffaf1;
  border: 1px solid rgba(247, 242, 231, 0.14);
  font-size: 0.94rem;
  font-weight: 700;
}

.split-grid,
.content-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

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

.process-card {
  position: relative;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 242, 231, 0.9)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--heading);
  background: linear-gradient(135deg, rgba(200, 162, 90, 0.9), rgba(247, 242, 231, 0.85));
  box-shadow: inset 0 0 0 1px rgba(31, 59, 46, 0.08);
}

.venue-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.venue-photo img {
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  width: 100%;
}

.venue-atmo {
  position: relative;
  min-height: 300px;
  border-radius: calc(var(--radius-lg) - 10px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(200, 162, 90, 0.4), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(167, 183, 159, 0.34), transparent 20%),
    linear-gradient(180deg, #f6efe2 0%, #efe5d2 100%);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.venue-glow,
.venue-arch,
.venue-line,
.venue-orb,
.venue-card {
  position: absolute;
}

.venue-glow {
  inset: auto auto -80px -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(200, 162, 90, 0.18);
  filter: blur(4px);
}

.venue-arch {
  inset: auto 28px 38px 28px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200, 162, 90, 0.9), rgba(168, 154, 138, 0.7));
  box-shadow: inset 0 -10px 24px rgba(58, 43, 36, 0.14);
}

.venue-line {
  left: 38px;
  right: 38px;
  height: 1px;
  background: rgba(31, 59, 46, 0.09);
}

.venue-line-top {
  top: 76px;
}

.venue-line-bottom {
  top: 138px;
}

.venue-orb {
  top: 34px;
  right: 40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(31, 59, 46, 0.1);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.3), rgba(167, 183, 159, 0.18));
}

.venue-card {
  left: 34px;
  right: 34px;
  top: 30px;
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 26px;
  background: rgba(255, 251, 245, 0.68);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 28px rgba(58, 43, 36, 0.08);
}

.venue-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.venue-card strong {
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 1.4rem;
}

.place-point {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.place-point strong {
  color: var(--heading);
}

.compact-actions {
  margin-top: 1rem;
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.content-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-card {
  position: relative;
  padding-left: 5rem;
}

.timeline-time {
  position: absolute;
  left: 1.45rem;
  top: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 2.4rem;
  top: 3.15rem;
  bottom: -1.2rem;
  width: 1px;
  background: rgba(31, 59, 46, 0.12);
}

.timeline-card:last-child::before {
  display: none;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 100%;
}

.pricing-card .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  color: var(--heading);
}

.pricing-card.is-featured {
  background:
    linear-gradient(180deg, rgba(31, 59, 46, 0.98), rgba(46, 86, 68, 0.94));
  color: #f7f2e7;
}

.pricing-card.is-featured h3,
.pricing-card.is-featured .price {
  color: #fffaf1;
}

.pricing-card.is-featured p,
.pricing-card.is-featured li {
  color: rgba(247, 242, 231, 0.82);
}

.pricing-note,
.section-note {
  max-width: 62ch;
  margin: 0 0 1.4rem;
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: stretch;
}

.pricing-link {
  margin-top: auto;
  width: fit-content;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(200, 162, 90, 0.16);
  color: var(--heading);
}

.pricing-card.is-featured .badge {
  background: rgba(200, 162, 90, 0.24);
  color: #fffaf1;
}

.notice {
  background:
    linear-gradient(180deg, rgba(167, 183, 159, 0.26), rgba(255, 255, 255, 0.78)),
    var(--surface);
}

.quote-card {
  background:
    radial-gradient(circle at top right, rgba(200, 162, 90, 0.18), transparent 35%),
    rgba(255, 255, 255, 0.7);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.18rem;
  color: var(--heading);
}

.story-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 231, 0.84)),
    var(--surface);
}

.visual-card {
  overflow: hidden;
  min-height: 280px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.visual-copy {
  display: grid;
  gap: 0.35rem;
}

.visual-copy p {
  margin: 0;
}

.visual-card.brand-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(239, 231, 216, 0.88)),
    var(--surface);
}

.brand-image {
  border-radius: calc(var(--radius-lg) - 10px);
  overflow: hidden;
  border: 1px solid rgba(31, 59, 46, 0.1);
}

.atmo-graphic {
  position: relative;
  min-height: 330px;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(200, 162, 90, 0.55), transparent 22%),
    radial-gradient(circle at 75% 22%, rgba(167, 183, 159, 0.45), transparent 18%),
    linear-gradient(180deg, #254434 0%, #1f3b2e 100%);
}

.atmo-graphic::before,
.atmo-graphic::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.atmo-graphic::before {
  inset: auto auto -90px -30px;
  width: 260px;
  height: 260px;
  background: rgba(247, 242, 231, 0.08);
}

.atmo-graphic::after {
  inset: 35px 28px auto auto;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(247, 242, 231, 0.14);
}

.atmo-window,
.atmo-table,
.atmo-cup {
  position: absolute;
}

.atmo-window {
  top: 42px;
  left: 44px;
  width: 42%;
  height: 42%;
  border-radius: 26px 26px 14px 14px;
  border: 1px solid rgba(247, 242, 231, 0.16);
  background: linear-gradient(180deg, rgba(247, 242, 231, 0.18), rgba(167, 183, 159, 0.12));
}

.atmo-window::before,
.atmo-window::after {
  content: "";
  position: absolute;
  background: rgba(247, 242, 231, 0.13);
}

.atmo-window::before {
  inset: 0 calc(50% - 1px) 0 auto;
  width: 2px;
}

.atmo-window::after {
  inset: calc(50% - 1px) 0 auto 0;
  height: 2px;
}

.atmo-table {
  inset: auto 44px 48px 44px;
  height: 84px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(200, 162, 90, 0.8), rgba(168, 154, 138, 0.68));
  box-shadow: inset 0 -10px 25px rgba(58, 43, 36, 0.16);
}

.atmo-cup {
  width: 86px;
  height: 72px;
  background: rgba(255, 250, 241, 0.96);
  border-radius: 0 0 26px 26px;
  bottom: 78px;
  right: 118px;
  box-shadow: 0 8px 18px rgba(31, 59, 46, 0.2);
}

.atmo-cup::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto 0;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.94);
}

.atmo-cup::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 10px;
  width: 24px;
  height: 28px;
  border: 4px solid rgba(255, 250, 241, 0.94);
  border-left: 0;
  border-radius: 0 18px 18px 0;
}

.atmo-note {
  position: absolute;
  max-width: 180px;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 241, 0.14);
  border: 1px solid rgba(247, 242, 231, 0.18);
  color: #fffaf1;
  line-height: 1.35;
}

.atmo-note-primary {
  top: 30px;
  right: 26px;
  font-weight: 800;
}

.atmo-note-secondary {
  left: 28px;
  bottom: 24px;
  max-width: 220px;
  color: rgba(247, 242, 231, 0.86);
  font-size: 0.95rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.metric strong {
  color: var(--heading);
  font-size: 1.4rem;
}

.page-hero {
  padding: 2.2rem 0 1rem;
}

.page-intro {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
  align-items: end;
}

.page-intro-copy p {
  max-width: 65ch;
}

.mini-panel {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(31, 59, 46, 0.95), rgba(46, 86, 68, 0.92));
  color: #f7f2e7;
  box-shadow: var(--shadow);
}

.mini-panel h3,
.mini-panel p,
.mini-panel li {
  color: #f7f2e7;
}

.mini-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.form-card form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--heading);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 59, 46, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.consent-check input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  padding: 0;
  border-radius: 6px;
}

.consent-check a {
  text-decoration: underline;
}

.form-status,
.microcopy {
  font-size: 0.94rem;
}

.form-status.is-success {
  color: #1f3b2e;
  font-weight: 700;
}

.form-status.is-error {
  color: #8a3f2d;
  font-weight: 700;
}

.microcopy {
  color: var(--ink-soft);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-list,
.check-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list span,
.check-list div {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.contact-list strong {
  display: block;
  color: var(--heading);
  margin-bottom: 0.2rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--heading);
  padding: 1.25rem 1.4rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 1.4rem 1.3rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open button::after {
  content: "−";
}

.footer {
  padding: 3rem 0 2.6rem;
}

.footer-contact-strip {
  width: var(--container);
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 1rem;
}

.contact-badge {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(31, 59, 46, 0.08);
}

.contact-badge strong {
  color: var(--heading);
}

.footer-cta {
  width: var(--container);
  margin: 0 auto 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.footer-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  justify-self: end;
  align-self: center;
}

.footer-cta h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
}

.footer-cta p {
  max-width: 48ch;
}

.footer-cta-actions .button {
  min-width: 210px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.7fr;
  gap: 20px;
}

.footer h3 {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-copy,
.footer-note {
  max-width: 40ch;
}

.mobile-call-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--heading), #2b5441);
  box-shadow: 0 16px 30px rgba(31, 59, 46, 0.25);
}

.map-callout {
  display: grid;
  gap: 1rem;
}

.map-callout .button {
  width: fit-content;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(31, 59, 46, 0.12);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-shell {
  padding: 2.4rem 0 4rem;
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 1.75rem;
}

.legal-card ul {
  margin: 0.8rem 0 0;
}

.fade-up {
  animation: fade-up 700ms ease both;
}

.fade-delay-1 {
  animation-delay: 90ms;
}

.fade-delay-2 {
  animation-delay: 180ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 250, 241, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .page-intro,
  .split-grid,
  .content-grid,
  .contact-grid,
  .venue-grid,
  .footer-grid,
  .footer-cta,
  .footer-contact-strip {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band,
  .process-grid,
  .place-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.95rem, 9.2vw, 2.7rem);
  }

  h3 {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }

  .topbar {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .trust-band {
    padding: 0.8rem;
  }

  .topbar-separator {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .field-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .panel-actions,
  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta h2,
  .panel-title {
    max-width: none;
  }

  .hero-copy,
  .hero-panel,
  .story-card,
  .visual-card,
  .card,
  .timeline-card,
  .pricing-card,
  .quote-card,
  .form-card,
  .notice {
    padding: 1.25rem;
  }

  .hero-copy p,
  .section-intro,
  .pricing-note,
  .section-note,
  .footer-cta p {
    max-width: none;
  }

  .hero-actions .button,
  .stack-actions .button,
  .panel-actions .button,
  .footer-cta-actions .button,
  .pricing-link,
  .nav-cta {
    width: 100%;
  }

  .contact-badge,
  .map-callout .button {
    width: 100%;
  }

  .hero-facts {
    gap: 12px;
    margin-top: 1.4rem;
  }

  .fact,
  .metric {
    padding: 0.95rem 1rem;
  }

  .atmo-graphic {
    min-height: 250px;
  }

  .atmo-window {
    top: 28px;
    left: 26px;
    width: 48%;
    height: 40%;
  }

  .atmo-table {
    inset: auto 26px 34px 26px;
    height: 64px;
  }

  .atmo-cup {
    width: 68px;
    height: 56px;
    bottom: 58px;
    right: 82px;
  }

  .atmo-note {
    max-width: 150px;
    padding: 0.65rem 0.8rem;
    font-size: 0.86rem;
  }

  .atmo-note-primary {
    top: 20px;
    right: 18px;
  }

  .atmo-note-secondary {
    left: 18px;
    bottom: 16px;
    max-width: 160px;
  }

  .footer-cta {
    gap: 18px;
  }

  .timeline-card {
    padding-left: 1.4rem;
  }

  .timeline-time {
    position: static;
    display: inline-block;
    margin-bottom: 0.6rem;
  }

  .timeline-card::before {
    display: none;
  }

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

  .mobile-call-button {
    display: inline-flex;
    left: 16px;
    right: 16px;
    bottom: 14px;
    min-width: 0;
  }
}
