:root {
  --bg: #fffaf2;
  --bg-strong: #ffeec9;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-tint: #f4f6ff;
  --text: #19183d;
  --muted: #5e6284;
  --line: rgba(25, 24, 61, 0.1);
  --primary: #2c52ff;
  --primary-deep: #1733bf;
  --accent: #ff784f;
  --accent-deep: #dd5632;
  --highlight: #ffd45e;
  --spark: #5ce0b5;
  --lavender: #dfe1ff;
  --radius-xs: 14px;
  --radius-sm: 22px;
  --radius-md: 32px;
  --radius-lg: 48px;
  --shadow-soft: 0 22px 80px rgba(34, 38, 84, 0.13);
  --shadow-card: 0 18px 44px rgba(34, 38, 84, 0.11);
  --shadow-button: 0 18px 30px rgba(44, 82, 255, 0.24);
  --container: min(1180px, calc(100vw - 28px));
  --space-1: 0.375rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --space-9: 8rem;
  --font-display: "Trebuchet MS", "Gill Sans Nova", "Avenir Next", sans-serif;
  --font-body: "Segoe UI", "Segoe UI Variable Text", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 120, 79, 0.18), transparent 18%),
    radial-gradient(circle at 84% 6%, rgba(92, 224, 181, 0.22), transparent 18%),
    radial-gradient(circle at 70% 26%, rgba(44, 82, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #fff9f1 0%, #fffef9 42%, #fff6e4 100%);
  line-height: 1.62;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(44, 82, 255, 0.28);
  outline-offset: 4px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 10px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.72));
  border-bottom: 1px solid rgba(25, 24, 61, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 10px 18px rgba(25, 24, 61, 0.12));
}

.brand-text {
  font-size: 1.08rem;
}

.brand-text small {
  display: block;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 0.2rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(25, 24, 61, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 246, 255, 0.96));
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  position: fixed;
  inset: 88px 12px auto 12px;
  transform: translateY(-125%);
  transition: transform 0.35s ease;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 94, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.98));
  border: 1px solid rgba(25, 24, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
}

.site-nav a {
  display: block;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(44, 82, 255, 0.09);
  color: var(--primary);
  outline: none;
}

.header-cta {
  display: none;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.92rem 1.38rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.button::after,
.button-secondary::after,
.button-ghost::after {
  content: "→";
  font-size: 0.98rem;
  transition: transform 0.22s ease;
}

.button:hover::after,
.button-secondary:hover::after,
.button-ghost:hover::after {
  transform: translateX(3px);
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow-button);
}

.button:hover {
  transform: translateY(-2px) rotate(-0.6deg);
  box-shadow: 0 22px 34px rgba(44, 82, 255, 0.28);
}

.button-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 212, 94, 0.84), rgba(255, 196, 49, 0.88));
  border-color: rgba(221, 86, 50, 0.22);
  box-shadow: 0 14px 24px rgba(255, 120, 79, 0.16);
}

.button-secondary:hover {
  transform: translateY(-2px) rotate(0.4deg);
  background: linear-gradient(180deg, rgba(255, 220, 114, 0.9), rgba(255, 203, 74, 0.96));
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(25, 24, 61, 0.08);
  box-shadow: 0 12px 22px rgba(25, 24, 61, 0.07);
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(44, 82, 255, 0.18);
  color: var(--primary);
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(25, 24, 61, 0.08);
  box-shadow: 0 8px 16px rgba(25, 24, 61, 0.05);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.eyebrow::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  box-shadow: 0 0 0 5px rgba(255, 120, 79, 0.12);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 66ch;
}

.lead {
  font-size: 1.12rem;
  color: #282b58;
  max-width: 60ch;
}

.hero,
.page-hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-7);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(44, 82, 255, 0.12), rgba(255, 120, 79, 0.12));
  transform: translate(-32%, 6%) rotate(12deg);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: clamp(34px, 6vw, 54px);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 212, 94, 0.46), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(92, 224, 181, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 255, 0.95));
  border: 1px solid rgba(25, 24, 61, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 32px auto auto -12px;
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(44, 82, 255, 0.18);
  border-radius: 28px;
  transform: rotate(-14deg);
}

.hero-shell::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 14%;
  width: 140px;
  height: 140px;
  border-radius: 36px;
  background: rgba(255, 120, 79, 0.09);
  transform: rotate(22deg);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 1.75rem;
}

.hero-copy {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-inline: auto;
}

.hero-copy .lead {
  margin-inline: auto;
}

.hero-copy .actions,
.cta-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-copy .actions {
  justify-content: center;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-note span,
.band-chip,
.tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

.hero-note span {
  background: rgba(25, 24, 61, 0.06);
  color: var(--text);
}

.hero-trust {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-trust-card,
.utility-panel,
.process-step,
.expectation-card,
.quote-panel {
  position: relative;
  padding: 1.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(25, 24, 61, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-trust-card strong,
.utility-panel strong,
.process-step strong,
.expectation-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.hero-note span::before,
.band-chip::before,
.tag::before,
.pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 36px;
}

.hero-planet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 420px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.3) 24%, transparent 25%),
    radial-gradient(circle at 64% 60%, rgba(92, 224, 181, 0.3), transparent 30%),
    linear-gradient(150deg, rgba(44, 82, 255, 0.96), rgba(109, 86, 255, 0.94));
  box-shadow:
    inset 0 -30px 80px rgba(10, 19, 89, 0.34),
    0 34px 80px rgba(30, 42, 125, 0.22);
}

.hero-planet::before {
  content: "";
  position: absolute;
  inset: 12% -10%;
  border-radius: 50%;
  border: 18px solid rgba(255, 212, 94, 0.92);
  transform: rotate(-14deg);
}

.hero-planet::after {
  content: "";
  position: absolute;
  inset: 28% 22%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.floating-card,
.floating-strip,
.stat-card,
.info-card,
.location-card,
.activity-card,
.price-card,
.contact-card,
.policy-card,
.story-card,
.gallery-card,
.faq-callout,
.cta-panel,
.accent-panel {
  border: 1px solid rgba(25, 24, 61, 0.08);
  box-shadow: var(--shadow-card);
}

.floating-card,
.floating-strip {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.floating-card {
  max-width: 220px;
  padding: 1rem;
  border-radius: 26px;
}

.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.floating-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.floating-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.floating-strip::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--spark), var(--highlight));
}

.floating-one {
  top: 5%;
  left: 0;
  transform: rotate(-4deg);
}

.floating-two {
  top: 8%;
  right: 2%;
}

.floating-three {
  right: 8%;
  bottom: 8%;
}

.floating-four {
  left: 10%;
  bottom: 10%;
}

.section {
  position: relative;
  padding: var(--space-8) 0;
}

.section-tight {
  padding-top: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.section-header.align-center {
  align-items: center;
  text-align: center;
}

.section-header p {
  max-width: 62ch;
}

.trust-ribbon,
.expectation-grid,
.process-strip {
  display: grid;
  gap: 1rem;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

.media-frame,
.feature-media,
.accent-panel,
.cta-panel,
.form-shell,
.page-hero-shell,
.not-found-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 255, 0.92));
  border: 1px solid rgba(25, 24, 61, 0.08);
  box-shadow: var(--shadow-soft);
}

.page-hero-shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.page-hero-shell::before,
.accent-panel::before,
.cta-panel::before,
.form-shell::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 120, 79, 0.14), rgba(255, 212, 94, 0.14));
  transform: rotate(12deg);
}

.info-card,
.location-card,
.activity-card,
.price-card,
.gallery-card,
.story-card,
.stat-card,
.contact-card,
.policy-card,
.faq-callout {
  position: relative;
  padding: 1.45rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 255, 0.94));
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card::before,
.location-card::before,
.activity-card::before,
.price-card::before,
.gallery-card::before,
.story-card::before,
.stat-card::before,
.contact-card::before,
.policy-card::before,
.faq-callout::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(44, 82, 255, 0.14), rgba(255, 120, 79, 0.24));
  transform: rotate(18deg);
}

.info-card:hover,
.location-card:hover,
.activity-card:hover,
.price-card:hover,
.gallery-card:hover,
.story-card:hover,
.stat-card:hover,
.contact-card:hover,
.policy-card:hover,
.faq-callout:hover,
.cta-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 82, 255, 0.14);
  box-shadow: 0 24px 52px rgba(34, 38, 84, 0.14);
}

.card-icon {
  width: 3.3rem;
  height: 3.3rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, rgba(44, 82, 255, 0.18), rgba(255, 120, 79, 0.2));
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-weight: 900;
}

.tag-row,
.pill-row,
.footer-links,
.footer-legal,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
}

.tag {
  background: rgba(44, 82, 255, 0.08);
  color: var(--primary);
}

.pill {
  background: rgba(255, 120, 79, 0.08);
  color: var(--accent-deep);
}

.media-frame,
.feature-media {
  min-height: 320px;
  isolation: isolate;
}

.media-frame[data-image]::after,
.feature-media[data-image]::after {
  content: attr(data-image);
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(25, 24, 61, 0.72);
  background: rgba(255, 255, 255, 0.76);
}

.media-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.media-shapes span {
  position: absolute;
  border-radius: 999px;
}

.media-shapes span:nth-child(1) {
  top: 14%;
  left: 12%;
  width: 30%;
  height: 16%;
  background: rgba(44, 82, 255, 0.82);
}

.media-shapes span:nth-child(2) {
  top: 33%;
  right: 10%;
  width: 42%;
  height: 20%;
  background: rgba(255, 120, 79, 0.84);
}

.media-shapes span:nth-child(3) {
  left: 18%;
  bottom: 22%;
  width: 36%;
  height: 20%;
  background: rgba(255, 212, 94, 0.9);
}

.media-shapes span:nth-child(4) {
  right: 22%;
  bottom: 10%;
  width: 22%;
  height: 14%;
  background: rgba(92, 224, 181, 0.95);
}

.media-overlay,
.gallery-card-content {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(25, 24, 61, 0.08);
}

.split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.band {
  padding: 0 0 1rem;
}

.band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(25, 24, 61, 0.96), rgba(59, 66, 130, 0.96));
  color: #f4f6ff;
  box-shadow: var(--shadow-soft);
}

.band-chip {
  background: rgba(255, 255, 255, 0.12);
}

.accent-panel,
.cta-panel,
.form-shell {
  padding: clamp(1.4rem, 2.8vw, 2rem);
}

.stats-grid,
.steps-grid,
.gallery-mosaic {
  display: grid;
  gap: 1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
}

.price-card.featured {
  background:
    radial-gradient(circle at top right, rgba(255, 212, 94, 0.5), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 255, 0.94));
}

.utility-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 245, 255, 0.96));
}

.process-step {
  padding-top: 1.5rem;
}

.process-step .step-index {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
}

.expectation-card {
  min-height: 100%;
}

.quote-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 212, 94, 0.35), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 246, 255, 0.94));
}

.quote-panel blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.quote-panel cite {
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  margin: 1rem 0;
  font-family: var(--font-display);
}

.price-card .price strong {
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--primary);
}

.check-list,
.policy-list,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li,
.policy-list li,
.contact-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.check-list li::before,
.policy-list li::before,
.contact-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  transform: rotate(18deg);
}

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

.gallery-card {
  min-height: 250px;
  overflow: hidden;
}

.gallery-card .media-shapes {
  opacity: 0.96;
}

.gallery-card h3,
.gallery-card p,
.faq-callout h3,
.faq-callout p {
  max-width: none;
}

details {
  border: 1px solid rgba(25, 24, 61, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  padding: 0 1.2rem;
}

details + details {
  margin-top: 0.95rem;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 1.18rem 0;
  font-weight: 900;
  font-size: 1.02rem;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding-bottom: 1.1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(25, 24, 61, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  appearance: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(44, 82, 255, 0.32);
  box-shadow: 0 0 0 4px rgba(44, 82, 255, 0.08);
}

.small-note {
  font-size: 0.92rem;
}

.validation-message {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-weight: 800;
}

.validation-message.error {
  color: #a53b1f;
}

.validation-message.success {
  color: #007c56;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.site-footer {
  position: relative;
  margin-top: var(--space-8);
  padding: var(--space-8) 0 var(--space-6);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 120, 79, 0.18), transparent 18%),
    linear-gradient(180deg, #19183d, #0f1231);
  color: #eef1ff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.18;
  pointer-events: none;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.site-footer p,
.site-footer a {
  color: rgba(238, 241, 255, 0.82);
}

.site-footer .brand-text small,
.footer-legal a {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
}

.cookie-bar.is-visible {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 212, 94, 0.24), transparent 24%),
    rgba(25, 24, 61, 0.97);
  color: #f6f8ff;
  box-shadow: 0 24px 60px rgba(8, 11, 34, 0.3);
}

.cookie-inner p {
  margin: 0;
  color: rgba(246, 248, 255, 0.82);
  max-width: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-actions .button,
.cookie-actions .button-ghost {
  min-width: 132px;
}

.not-found {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
}

.not-found-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

@media (min-width: 700px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .hero-trust,
  .expectation-grid,
  .process-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (max-width: 699px) {
  .hero,
  .page-hero,
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-shell {
    padding: 1.2rem;
  }

  .hero-copy .actions a,
  .cta-actions a,
  .split-actions a {
    width: 100%;
  }

  .floating-one {
    top: 4%;
    left: 4%;
  }

  .floating-two {
    top: 2%;
    right: 4%;
  }

  .floating-three {
    right: 3%;
    bottom: 6%;
  }

  .floating-four {
    left: 4%;
    bottom: 4%;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    inset: auto;
    transform: none;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav ul {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.78rem 0.92rem;
  }

  .hero {
    padding-top: var(--space-8);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .hero-trust {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

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

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

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

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

  .gallery-mosaic {
    grid-template-columns: 1.15fr 0.9fr 1.05fr;
    grid-auto-rows: 260px;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
