:root {
  --green-50: #eefbf3;
  --green-100: #d4f5e2;
  --green-400: #3ee07a;
  --green-500: #1db954;
  --green-600: #149344;
  --green-800: #0c4a28;
  --green-900: #08331c;
  --titanium-50: #f6f7f8;
  --titanium-100: #e8eaed;
  --titanium-200: #d0d5db;
  --titanium-300: #b4bbc4;
  --titanium-400: #8e97a3;
  --titanium-500: #6b7480;
  --titanium-700: #3a4048;
  --titanium-800: #1c2128;
  --titanium-900: #12161c;
  --titanium-950: #0b0e12;
  --gold: #c9a45c;
  --white: #fcfdfc;
  --ink: #101318;
  --muted: #5c6570;
  --line: rgba(16, 19, 24, 0.08);
  --shadow: 0 24px 60px rgba(16, 19, 24, 0.12);
  --shadow-lg: 0 40px 90px rgba(16, 19, 24, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 78px;
  --max: 1180px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-500);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(252, 253, 252, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.logo-word span {
  color: var(--green-500);
}

.logo-place {
  display: block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--titanium-700);
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-green {
  background: linear-gradient(180deg, #2ad66a, var(--green-500));
  color: #072616;
  box-shadow: 0 10px 24px rgba(29, 185, 84, 0.28);
}

.btn-dark {
  background: linear-gradient(180deg, #2a313b, var(--ink));
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 19, 24, 0.22);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-ghost-dark {
  background: #fff;
  border-color: var(--titanium-200);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--titanium-900);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 18, 0.82) 0%, rgba(10, 14, 18, 0.45) 48%, rgba(10, 14, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 14, 18, 0.2) 0%, rgba(10, 14, 18, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  color: #fff;
  margin-bottom: 1rem;
}

.hero .lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-meta strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.pickup-bar {
  background:
    linear-gradient(90deg, var(--green-900), var(--green-800) 40%, #0f5c32);
  color: #fff;
  padding: 1.1rem 0;
}

.pickup-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.pickup-bar strong {
  font-size: 1.15rem;
}

.pickup-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 500;
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.6rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(16, 19, 24, 0.03);
  height: 100%;
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--titanium-100);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.price-tag {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--green-600);
  font-weight: 650;
  font-size: 0.95rem;
}

.panel {
  background: var(--titanium-50);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.6rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green-600);
  min-width: 2.2rem;
}

.dark {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(29, 185, 84, 0.16), transparent 50%),
    var(--titanium-950);
  color: #fff;
}

.dark .muted,
.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.dark h2,
.dark h3,
.dark legend,
.dark label {
  color: #fff;
}

.dark .check {
  color: rgba(255, 255, 255, 0.86);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.area-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
}

.area-card strong {
  display: block;
  font-size: 1.1rem;
}

.area-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-band {
  background:
    linear-gradient(180deg, rgba(16, 19, 24, 0.35), rgba(16, 19, 24, 0.55)),
    url("/images/og-share.jpg") center/cover;
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band .hero-actions {
  justify-content: center;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer a:hover {
  color: var(--green-400);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: 4.2rem 0 2.6rem;
  background:
    radial-gradient(700px 280px at 90% 0%, rgba(29, 185, 84, 0.12), transparent 55%),
    linear-gradient(180deg, #f3f6f4, #fcfdfc);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  max-width: 16ch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.price-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 0 0 0.9rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--titanium-50);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.package {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}

.package.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.package.featured p,
.package.featured .muted {
  color: rgba(255, 255, 255, 0.72);
}

.package .amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  margin: 0.4rem 0 0.7rem;
}

.package.featured .amount {
  color: var(--green-400);
}

.package ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: inherit;
}

.badge {
  display: inline-block;
  background: var(--green-500);
  color: #072616;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row .check {
  border: 1px solid var(--titanium-200);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  min-height: 48px;
}

.dark .form-row .check {
  border-color: rgba(255, 255, 255, 0.18);
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 550;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--titanium-200);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--green-400);
  border-color: var(--green-500);
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 450;
  font-size: 0.95rem;
}

.check input {
  width: 18px;
  min-height: 18px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 550;
}

.form-status.ok {
  display: block;
  background: var(--green-50);
  color: var(--green-800);
}

.form-status.err {
  display: block;
  background: #fde8e8;
  color: #8a1f1f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.contact-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 760px;
}

.contact-stack .side-card {
  order: 2;
}

.grip-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1.1rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.grip-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.grip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.side-card {
  background: var(--titanium-50);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.contact-note {
  background: var(--green-50);
  border: 1px solid rgba(29, 185, 84, 0.2);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
  color: var(--green-900);
}

.hint {
  font-size: 0.8rem;
  font-weight: 450;
  color: var(--muted);
}

.dark .contact-note {
  background: rgba(29, 185, 84, 0.12);
  border-color: rgba(62, 224, 122, 0.22);
  color: rgba(255, 255, 255, 0.88);
}

.map {
  margin-top: 1rem;
  border: 0;
  width: 100%;
  min-height: 280px;
  border-radius: 16px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.dimple {
  background-image: radial-gradient(circle at 1px 1px, rgba(16, 19, 24, 0.045) 1px, transparent 0);
  background-size: 18px 18px;
}

@media (max-width: 980px) {
  .grid-3,
  .grid-4,
  .packages,
  .area-list,
  .split,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-stack {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-h: 64px;
  }

  .wrap {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1.15rem 1.15rem;
    gap: 0.35rem;
    z-index: 60;
    box-shadow: 0 18px 40px rgba(16, 19, 24, 0.12);
  }

  .nav-links a {
    padding: 0.7rem 0.2rem;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 0.4rem;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .packages,
  .area-list,
  .split,
  .footer-grid,
  .contact-grid,
  .form-row,
  .checks,
  .grip-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 0 2.4rem;
  }

  .hero-actions .btn,
  .cta-band .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 1rem 1.4rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .page-hero {
    padding: 2.4rem 0 1.6rem;
  }

  .page-hero h1 {
    max-width: none;
  }

  .pickup-bar .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .split img {
    max-height: 240px;
  }

  .price-table {
    display: block;
    overflow-x: auto;
  }

  .price-table td:last-child,
  .price-table th:last-child {
    white-space: nowrap;
  }

  .map {
    min-height: 220px;
  }

  .panel,
  .side-card {
    padding: 1.15rem;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card-media img,
  .btn {
    transition: none;
  }
}
