:root {
  --ink: #1C2B2D;
  --ink-soft: #4A5B5D;
  --bg: #FAF8F5;
  --sand: #E8E1D6;
  --sand-line: #D8CEBE;
  --teal: #3D6B5C;
  --teal-deep: #2A4B40;
  --teal-tint: #E4ECE8;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────── */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--sand-line);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Mobile badge — visible by default */
.nav-badge {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #fff;
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.nav-badge:hover {
  background: var(--teal-deep);
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

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

/* Switch to full nav on desktop */
@media (min-width: 700px) {
  .nav-inner {
    padding: 1rem 2rem;
  }

  .nav-badge {
    display: none;
  }

  .nav-links {
    display: flex;
  }
}

/* ── BUTTONS ─────────────────────────────────── */

.btn-primary,
.btn-interest {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn-primary:hover,
.btn-interest:hover {
  background: var(--teal-deep);
}

.btn-primary:active,
.btn-interest:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-full {
  width: 100%;
  padding: 0.875rem;
  font-size: 0.95rem;
}

/* ── HERO ────────────────────────────────────── */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-visual { order: -1; }
.hero-body   { max-width: 100%; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 7vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 32px rgba(28, 43, 45, 0.1);
}

@media (min-width: 820px) {
  .hero {
    padding: 5rem 2rem 6rem;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .hero-visual { order: 0; }
  .hero-body   { max-width: 440px; }
}

/* ── PRICING ─────────────────────────────────── */

.pricing {
  background: var(--sand);
  padding: 5rem 2rem;
}

.pricing-inner {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--sand-line);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  text-align: left;
}

@media (min-width: 540px) {
  .price-card { padding: 2.5rem; }
}

/* Price header row */
.price-card-top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--sand-line);
}

.price-divider {
  width: 100%;
  height: 1px;
  background: var(--sand-line);
}

@media (min-width: 480px) {
  .price-card-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .price-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }
}

.price-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.price-main {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.price-day {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--teal);
}

.price-day sup {
  font-size: 0.65rem;
  font-weight: 400;
  vertical-align: super;
}

.price-contact {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--teal-tint);
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.price-contact:hover {
  color: var(--teal-deep);
  text-decoration-color: var(--teal-deep);
}

/* Feature tabs */
.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--sand-line);
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.tab-btn:hover:not(.active) {
  color: var(--ink);
}

.tab-btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Tab panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.15s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.billing-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.price-footnote {
  margin-top: 0.9rem;
  font-size: 0.775rem;
  color: var(--ink-soft);
}

/* ── MODAL ───────────────────────────────────── */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 43, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.2s;
}

@media (min-width: 540px) {
  .modal-box { padding: 2.5rem; }
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}

.modal-close:hover {
  background: var(--sand);
  color: var(--ink);
}

.modal-box h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.modal-intro {
  color: var(--ink-soft);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink);
}

.label-optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.form-group input,
.form-group select {
  border: 1px solid var(--sand-line);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.925rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%234A5B5D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-tint);
}

/* Date fields — hidden until Temporary is selected */
.date-fields-wrap {
  display: none;
}

.form-status {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  min-height: 1.25em;
}

.form-status.success {
  color: var(--teal-deep);
  font-weight: 500;
}

.form-status.error {
  color: #b83232;
  font-weight: 500;
}

/* ── FOOTER ──────────────────────────────────── */

.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--sand-line);
}
