:root {
  --navy-950: #071523;
  --navy-900: #0b1f35;
  --navy-800: #12304e;
  --navy-700: #1b466d;
  --orange-600: #e57d18;
  --orange-500: #f49b38;
  --orange-300: #ffc781;
  --cream-100: #faf7f1;
  --cream-200: #f3eee5;
  --white: #ffffff;
  --ink: #152235;
  --muted: #5f6c7b;
  --line: #dbe2e8;
  --success: #1f7a59;
  --danger: #a13d37;
  --shadow-sm: 0 8px 24px rgba(7, 21, 35, 0.08);
  --shadow-md: 0 20px 55px rgba(7, 21, 35, 0.13);
  --shadow-lg: 0 30px 90px rgba(7, 21, 35, 0.20);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--navy-950);
  background: var(--orange-300);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

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

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
  margin-top: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.text-muted {
  color: var(--muted);
}

.text-light {
  color: rgba(255,255,255,.76);
}

.section {
  padding: 108px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.surface-cream {
  background: var(--cream-100);
}

.surface-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(244, 155, 56, .20), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.surface-navy h2,
.surface-navy h3,
.surface-navy .eyebrow {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(7,21,35,.07);
  box-shadow: 0 10px 30px rgba(7,21,35,.06);
  background: rgba(255,255,255,.96);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), var(--shadow-sm);
  font-weight: 900;
  letter-spacing: -.06em;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 1.08rem;
  letter-spacing: -.03em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #2d3a4a;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: var(--orange-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  border-radius: 99px;
  background: var(--navy-950);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--orange-300), var(--orange-500));
  box-shadow: 0 12px 24px rgba(229,125,24,.22);
}

.button-primary:hover {
  box-shadow: 0 16px 32px rgba(229,125,24,.30);
}

.button-dark {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 12px 24px rgba(7,21,35,.18);
}

.button-outline {
  color: var(--navy-950);
  border-color: rgba(7,21,35,.18);
  background: rgba(255,255,255,.7);
}

.button-outline:hover {
  border-color: var(--navy-950);
  background: var(--white);
}

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

.button.is-disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .55;
  pointer-events: none;
}

.button-icon {
  width: 20px;
  height: 20px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 158px 0 88px;
  background:
    linear-gradient(90deg, rgba(250,247,241,.97) 0%, rgba(250,247,241,.92) 45%, rgba(250,247,241,.35) 100%),
    radial-gradient(circle at 80% 18%, rgba(244,155,56,.20), transparent 24%),
    var(--cream-100);
}

.hero::before {
  position: absolute;
  top: 86px;
  right: -110px;
  width: 530px;
  height: 530px;
  content: "";
  border: 1px solid rgba(7,21,35,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(7,21,35,.025), 0 0 0 140px rgba(7,21,35,.018);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 62px;
}

.hero h1 span {
  color: var(--orange-600);
}

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #3f4b5a;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.hero-points li::before {
  display: grid;
  width: 22px;
  height: 22px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: .72rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.visual-main {
  position: absolute;
  inset: 25px 10px 65px 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.1), transparent 38%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow-lg);
}

.visual-main::before {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 320px;
  height: 320px;
  content: "";
  border-radius: 50%;
  background: rgba(244,155,56,.18);
  filter: blur(2px);
}

.tent-illustration {
  position: absolute;
  right: 8%;
  bottom: 11%;
  left: 8%;
  height: 65%;
}

.tent-roof {
  position: absolute;
  z-index: 2;
  top: 11%;
  right: 2%;
  left: 2%;
  height: 39%;
  clip-path: polygon(50% 0, 100% 85%, 94% 100%, 6% 100%, 0 85%);
  background: linear-gradient(165deg, #fff, #dbe7f0);
  filter: drop-shadow(0 20px 20px rgba(0,0,0,.20));
}

.tent-front {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 0;
  left: 7%;
  height: 58%;
  border: 8px solid #edf3f7;
  border-top-width: 12px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.36) 50%, transparent 51%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(210,225,236,.96));
  box-shadow: inset 0 0 0 1px rgba(7,21,35,.08);
}

.tent-opening {
  position: absolute;
  z-index: 4;
  right: 25%;
  bottom: 0;
  left: 25%;
  height: 46%;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #193d60, #081724);
  box-shadow: inset 0 14px 18px rgba(0,0,0,.18);
}

.bench {
  position: absolute;
  z-index: 5;
  right: 19%;
  bottom: 8%;
  width: 62%;
  height: 11%;
  border-radius: 7px;
  background: linear-gradient(180deg, #d9a26a, #9a6037);
  box-shadow: 0 8px 12px rgba(0,0,0,.28);
}

.bench::before,
.bench::after {
  position: absolute;
  bottom: -24px;
  width: 7px;
  height: 28px;
  content: "";
  border-radius: 2px;
  background: #b7c3ce;
}

.bench::before { left: 15%; }
.bench::after { right: 15%; }

.visual-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(7,21,35,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.visual-badge strong {
  display: block;
  color: var(--navy-950);
  line-height: 1.2;
}

.visual-badge small {
  color: var(--muted);
}

.visual-badge--one {
  top: 0;
  left: 0;
}

.visual-badge--two {
  right: 0;
  bottom: 15px;
}

.badge-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--orange-300);
  font-weight: 900;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 5;
  margin-top: -32px;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 23px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--orange-600);
  background: var(--cream-100);
}

.trust-item strong {
  display: block;
  color: var(--navy-950);
}

.trust-item span {
  color: var(--muted);
  font-size: .9rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(7,21,35,.045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: rgba(229,125,24,.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  border-radius: 50%;
  background: var(--cream-100);
  transition: transform .25s ease;
}

.service-card:hover::after {
  transform: scale(1.12);
}

.service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 18px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--orange-300), var(--orange-500));
  box-shadow: 0 12px 24px rgba(229,125,24,.20);
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.check-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  margin-top: 3px;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.card-link {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 28px;
  color: var(--navy-950);
  font-weight: 800;
  text-decoration: none;
}

.card-link::after {
  margin-left: 7px;
  content: "→";
  transition: margin-left .2s ease;
}

.card-link:hover::after {
  margin-left: 11px;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}

.package-card.featured {
  border-color: rgba(244,155,56,.65);
  background: linear-gradient(145deg, rgba(244,155,56,.22), rgba(255,255,255,.08));
  box-shadow: 0 20px 45px rgba(0,0,0,.16);
}

.package-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--orange-300);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.package-card h3 {
  color: var(--white);
}

.package-card p,
.package-card li {
  color: rgba(255,255,255,.75);
}

.package-card .check-list li::before {
  color: var(--orange-300);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 24px 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: -18px;
  width: 36px;
  height: 2px;
  content: "";
  background: var(--orange-300);
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--orange-300);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

/* About */
.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
}

.about-visual {
  position: relative;
  min-height: 510px;
}

.about-panel {
  position: absolute;
  inset: 0 42px 40px 0;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), transparent),
    var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.about-panel::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  content: "";
  border-radius: 50%;
  background: var(--orange-500);
  opacity: .85;
}

.about-panel::after {
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025);
}

.team-monogram {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: var(--white);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: -.12em;
  transform: translate(-53%, -56%);
}

.team-monogram span {
  color: var(--orange-300);
}

.about-floating-card {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  width: min(86%, 350px);
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.about-floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.1rem;
}

.value-grid {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--cream-100);
}

.value-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
}

.value-item span {
  color: var(--muted);
  font-size: .92rem;
}

/* Area */
.area-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  grid-template-columns: 1.05fr .95fr;
}

.area-copy {
  padding: 54px;
}

.area-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  background-size: 34px 34px, 34px 34px, auto;
}

.area-map::before,
.area-map::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(244,155,56,.5);
  border-radius: 50%;
}

.area-map::before {
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 50px rgba(244,155,56,.08), 0 0 0 100px rgba(244,155,56,.04);
}

.area-map::after {
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 6px solid var(--white);
  background: var(--orange-500);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transform: translate(-50%, -50%);
}

.map-label {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--navy-950);
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 800;
}

.map-label:nth-child(1) { top: 26%; left: 20%; }
.map-label:nth-child(2) { top: 45%; right: 12%; }
.map-label:nth-child(3) { bottom: 20%; left: 30%; }

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 25px;
  cursor: pointer;
  color: var(--navy-950);
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  content: "+";
  place-items: center;
  border-radius: 50%;
  background: var(--cream-100);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px 23px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}

.contact-panel,
.form-panel {
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-panel {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(244,155,56,.28), transparent 25%),
    var(--navy-900);
  box-shadow: var(--shadow-md);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

.contact-method:hover {
  background: rgba(255,255,255,.1);
}

.contact-method-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-950);
  background: var(--orange-300);
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: rgba(255,255,255,.7);
  font-size: .86rem;
}

.form-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-950);
  font-size: .9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 145px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 4px rgba(244,155,56,.16);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .88rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange-600);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--success);
  font-weight: 700;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--orange-300), var(--orange-500));
  box-shadow: var(--shadow-md);
}

.cta-band::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(7,21,35,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(7,21,35,.035), 0 0 0 90px rgba(7,21,35,.025);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 45px 48px;
}

.cta-inner h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-inner p {
  margin-bottom: 0;
  color: rgba(7,21,35,.72);
}

/* Footer */
.site-footer {
  padding: 62px 0 28px;
  color: rgba(255,255,255,.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 1.4fr .7fr .7fr .9fr;
  gap: 42px;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy span {
  color: rgba(255,255,255,.55);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 20px;
}

.footer-col h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: .98rem;
  letter-spacing: -.01em;
}

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

.footer-links a {
  width: fit-content;
  color: rgba(255,255,255,.68);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: .84rem;
}

/* Legal pages */
.page-hero {
  padding: 150px 0 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(244,155,56,.22), transparent 24%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.7rem);
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 52px;
}

.legal-toc {
  position: sticky;
  top: 105px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream-100);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-950);
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--orange-600);
}

.legal-content section {
  margin-bottom: 44px;
  scroll-margin-top: 110px;
}

.legal-content h2 {
  margin-bottom: 15px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-content h3 {
  margin-top: 26px;
  font-size: 1.15rem;
  letter-spacing: -.015em;
}

.legal-content p,
.legal-content li {
  color: #3f4c5c;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-box {
  padding: 22px;
  border-left: 4px solid var(--orange-500);
  border-radius: 0 14px 14px 0;
  background: var(--cream-100);
}

.setup-banner {
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid #e5b8b3;
  border-radius: 14px;
  color: #742f2a;
  background: #fff1ef;
  font-weight: 700;
}

.placeholder-value {
  color: var(--danger);
  font-weight: 800;
}

/* 404 */
.error-page {
  display: grid;
  min-height: 100vh;
  padding: 40px;
  place-items: center;
  text-align: center;
  background: var(--cream-100);
}

.error-code {
  margin-bottom: 10px;
  color: var(--orange-500);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.1em;
}

/* Reveal animation */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .area-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 610px);
    margin: 0 auto;
  }

  .about-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .area-map {
    min-height: 350px;
  }

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

  .card-grid .service-card:last-child,
  .package-grid .package-card:last-child {
    grid-column: 1 / -1;
  }

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

  .process-step::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, .8fr);
  }

  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    opacity: 0;
    transition: max-height .25s ease, opacity .2s ease, visibility .2s ease, padding .25s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    max-height: calc(100vh - 80px);
    padding: 22px 20px 28px;
    overflow-y: auto;
    opacity: 1;
  }

  .main-nav > a:not(.button) {
    padding: 11px 4px;
    font-size: 1.05rem;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-sm {
    padding: 54px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding: 126px 0 66px;
  }

  .hero-grid {
    gap: 34px;
  }

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

  .visual-main {
    inset: 30px 8px 52px 18px;
    border-radius: 26px;
  }

  .visual-badge {
    padding: 11px 13px;
  }

  .visual-badge small {
    display: none;
  }

  .visual-badge--one {
    left: 2px;
  }

  .trust-bar {
    margin-top: -18px;
  }

  .trust-grid,
  .card-grid,
  .package-grid,
  .process-grid,
  .form-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-grid .service-card:last-child,
  .package-grid .package-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 390px;
  }

  .section-head {
    display: block;
  }

  .about-visual {
    min-height: 410px;
  }

  .about-panel {
    inset: 0 24px 55px 0;
  }

  .area-copy,
  .contact-panel,
  .form-panel {
    padding: 26px;
  }

  .cta-inner {
    display: block;
    padding: 34px 25px;
  }

  .cta-inner .button {
    width: 100%;
    margin-top: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand,
  .footer-grid .footer-col:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero {
    padding: 125px 0 50px;
  }
}

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


/* Direct contact form */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

[data-submit-button][disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status.is-success {
  color: #176b3a;
  font-weight: 700;
}

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