@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
/* ─── COLOR PALETTE ──────────────────────────────────── */
/* ─── SPACING & SIZING ───────────────────────────────── */
/* ─── SHADOWS ────────────────────────────────────────── */
/* ─── TYPOGRAPHY ─────────────────────────────────────── */
/* ─── RESPONSIVE BREAKPOINTS ────────────────────────── */
/* ─── HELPER FUNCTION ────────────────────────────────– */
/* ─── MIXINS ─────────────────────────────────────────── */
/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "proxima-nova", sans-serif;
  background: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────– */
.display {
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 780;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

p {
  color: #64748b;
  line-height: 1.72;
}

.label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7B8E70;
  margin-bottom: 12px;
}
.label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #7B8E70;
  border-radius: 2px;
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 96px 0;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: #7B8E70;
  color: #fff;
  box-shadow: 0 4px 16px #7B8E7048;
}
.btn-primary:hover, .btn-primary:focus {
  background: #6d7f62 !important;
  box-shadow: 0 6px 24px #7B8E7040;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #0f172a;
  border: 1.5px solid #d0d7df;
}
.btn-outline:hover, .btn-outline:focus {
  border-color: #7B8E70 !important;
  color: #7B8E70 !important;
  background: #dbe4d6 !important;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}
.btn-ghost {
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e8ecf0;
}
.btn-ghost:hover, .btn-ghost:focus {
  background: #f8f9fb !important;
  color: #0f172a !important;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
#nav.scrolled {
  border-bottom-color: #e8ecf0;
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.07);
}

.nav-wrap {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 820;
  font-size: 22px;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.nav-logo em {
  color: #7B8E70;
  font-style: normal;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: background 0.15s, color 0.15s;
}
.nav-menu a:hover {
  background: #f8f9fb;
  color: #0f172a;
}
.nav-menu a.active {
  color: #7B8E70;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: 0.25s;
}

.navbar-collapse {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}

.navbar-collapse.show {
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  padding: 16px;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
  padding: 0;
}

#nav.scrolled {
  border-bottom-color: #e8ecf0;
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.07);
}

.nav-wrap {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  max-height: 48px;
  width: auto;
}

/* Mobile Menu - Hidden by default, shown with hamburger */
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e8ecf0;
  padding: 12px 0;
  gap: 0;
  list-style: none;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.nav-menu a:hover {
  background: #f8f9fb;
  color: #0f172a;
}

.nav-menu a.active {
  color: #7B8E70;
  background: #f0f5eb;
}

.nav-menu.open {
  display: flex;
}

/* Mobile Actions - Show on mobile */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-phone {
  display: none;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-actions .btn-sm {
  padding: 10px 14px;
  font-size: 12px;
}

/* Hamburger Menu - Visible on mobile */
.nav-ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin: -8px -8px -8px 0;
  transition: opacity 0.2s;
}

.nav-ham:hover {
  opacity: 0.7;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer */
#drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #ffffff;
  flex-direction: column;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
  gap: 0;
  overflow-y: auto;
}

#drawer.open {
  display: flex;
}

#drawer a {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  padding: 16px 0;
  border-bottom: 1px solid #e8ecf0;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

#drawer a:hover {
  color: #7B8E70;
}

#d-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #0f172a;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

#d-close:hover {
  opacity: 0.6;
}

.drawer-link {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  padding: 14px 0;
  border-bottom: 1px solid #e8ecf0;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.drawer-link:hover {
  color: #7B8E70;
}

.drawer-phone {
  padding-top: 20px;
  color: #7B8E70;
  font-weight: 700;
}

.drawer-cta {
  margin-top: auto;
  border: none;
  padding: 13px 26px;
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.navbar.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  max-width: 100%;
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #4f6477 !important;
  font-size: 14px;
}

.navbar-nav .nav-link:hover {
  color: #7B8E70 !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: #4f6477;
}

/* ─── MOBILE DRAWER ──────────────────────────────────── */
#drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #ffffff;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 8px;
}
#drawer.open {
  display: flex;
}
#drawer a {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  padding: 12px 0;
  border-bottom: 1px solid #e8ecf0;
}
#drawer a:hover {
  color: #7B8E70;
}

#d-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: #0f172a;
}

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  padding-top: calc(68px + 64px);
  padding-bottom: 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -80px;
  top: 40px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, #EECFC9 0%, rgba(238, 207, 201, 0.09) 65%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #dbe4d6;
  border: 1px solid #7B8E70;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B8E70;
  margin-bottom: 24px;
  width: 90%;
}
.hero-eyebrow span {
  width: 6px;
  height: 6px;
  background: #6d7f62;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-h1 {
  color: #0f172a;
  margin-bottom: 22px;
}
.hero-h1 .alt {
  color: #7B8E70;
}

.hero-sub {
  font-size: 17px;
  color: #64748b;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f0dfdb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.trust-icon2 {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #C7A490;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.trust-icon3 {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #dbe4d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.trust-icon i {
  font-size: 18px;
}

.hf-icon i {
  font-size: 24px;
}

.nav-phone i {
  margin-right: 6px;
}

.why-icon i {
  font-size: 24px;
}

.areas-chips i {
  margin-right: 6px;
}

.landing-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* hero visual */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e8ecf0;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  padding: 32px;
  overflow: hidden;
  position: relative;
}

.hcm-bg {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #c1c6be 0%, #bbc5b6 60%, #95a58b 100%);
}

.hcm-image {
  aspect-ratio: 1;
  border-radius: 12px;
  background: white;
  border: 1px solid #e8ecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s;
}
.hcm-image img {
  border-radius: 12px;
  z-index: 996;
}

.stars {
  color: #f59e0b;
  font-size: 14px;
}

/* floating badges */
.hero-float {
  position: absolute;
  background: white;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  animation: float-y 3s ease-in-out infinite;
  white-space: nowrap;
}
.hero-float.hf-1 {
  top: -46px;
  right: 28px;
  animation-delay: 0s;
  animation: float-y(-2px) 2s ease-in-out infinite;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.hero-float.hf-2 {
  bottom: -18px;
  left: 8px;
  animation-delay: 1.5s;
  z-index: 998;
}

.hf-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hf-1 .hf-icon {
  background: #dcfce7;
}

.hf-2 .hf-icon {
  background: #dbe4d6;
}

@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(var(--float-y, -6px));
  }
}
/* ─── STATS BAR ──────────────────────────────────────── */
#stats {
  padding: 0;
  background: #ffffff;
  border-top: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide: 1px solid #e8ecf0;
}

.stat-cell {
  padding: 36px 32px;
  border-right: 1px solid #e8ecf0;
  text-align: center;
}
.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 800;
  font-size: 42px;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

/* ─── BUNDLES ────────────────────────────────────────── */
#bundles {
  background: #f8f9fb;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-head h2 {
  color: #0f172a;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
}

.bundle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bcard {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  position: relative;
}
.bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}
.bcard.featured {
  border-color: #7B8E70;
  box-shadow: 0 0 0 3px rgba(123, 142, 112, 0.1);
}

.bcard-top {
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}

.bcard-illustration {
  font-size: 56px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
  line-height: 1;
}

.bcard-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.bcard h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 760;
}

.bcard-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}

.bcard-includes {
  padding: 20px 28px;
  border-top: 1px solid #e8ecf0;
  background: #f8f9fb;
}
.bcard-includes h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.inc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.inc-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.bcard-footer {
  padding: 20px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bp-from {
  font-size: 11px;
  color: #94a3b8;
  display: block;
  font-weight: 600;
}

.bp-val {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  font-family: "dashiell-fine", serif;
}

.bcard-cta {
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.bcard-cta:hover {
  transform: scale(1.04);
}

/* Bundle card variants */
.bcard-shower .bcard-top {
  background: linear-gradient(160deg, #d9e2d3 0%, #c3ccbd 100%);
}
.bcard-shower .bcard-label {
  background: rgba(123, 142, 112, 0.12);
  color: #7B8E70;
}
.bcard-shower .inc-check {
  background: rgba(123, 142, 112, 0.12);
  color: #7B8E70;
}
.bcard-shower .bcard-cta {
  background: #7B8E70;
  color: white;
}
.bcard-shower .bcard-cta:hover {
  background: #6d7f62;
}

.bcard-kids .bcard-top {
  background: linear-gradient(160deg, #eef6fa 0%, #dceef5 100%);
}
.bcard-kids .bcard-label {
  background: rgba(30, 120, 160, 0.12);
  color: #1e78a0;
}
.bcard-kids .inc-check {
  background: rgba(30, 120, 160, 0.12);
  color: #1e78a0;
}
.bcard-kids .bcard-cta {
  background: #1e78a0;
  color: white;
}
.bcard-kids .bcard-cta:hover {
  background: #1a6990;
}

.bcard-family .bcard-top {
  background: linear-gradient(160deg, #f5f2ea 0%, #e9e3d2 100%);
}
.bcard-family .bcard-label {
  background: rgba(100, 80, 40, 0.12);
  color: #7a5a2a;
}
.bcard-family .inc-check {
  background: rgba(100, 80, 40, 0.12);
  color: #7a5a2a;
}
.bcard-family .bcard-cta {
  background: #7B8E70;
  color: white;
}
.bcard-family .bcard-cta:hover {
  background: #4f3a18;
}

/* ─── CATEGORY GRID ──────────────────────────────────── */
#categories {
  background: #ffffff;
}

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

.cat-card {
  border: 1px solid #e8ecf0;
  border-radius: 18px;
  padding: 28px 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
  border-color: #7B8E70;
}
.cat-card:hover .cat-icon-wrap {
  transform: scale(1.08);
}
.cat-card:hover .cat-arrow {
  gap: 10px;
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border: 1px solid #e8ecf0;
  transition: transform 0.2s;
}
.cat-icon-wrap i {
  color: #7B8E70;
}

.cat-name {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 720;
}

.cat-count {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.cat-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #7B8E70;
  transition: gap 0.2s;
}

/* icon backgrounds */
.ci-chairs {
  background: #e8f4fb;
}
.ci-tables {
  background: #fef9ec;
}
.ci-tents {
  background: #e8f8f0;
}
.ci-linens {
  background: #fce8f4;
}
.ci-kids {
  background: #dbe4d6;
}
.ci-extras {
  background: #eee8d5;
}

/* ─── FULL CATALOG ───────────────────────────────────── */
#catalog {
  background: #f8f9fb;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8ecf0;
}

.ftab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid #e8ecf0;
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s;
}
.ftab:hover {
  border-color: #7B8E70;
  color: #7B8E70;
}
.ftab.on {
  background: #0f172a;
  border-color: #0f172a;
  color: white;
}
.ftab.on .fc {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
.ftab .fi {
  font-size: 14px;
}
.ftab .fc {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  background: #f8f9fb;
  color: #94a3b8;
}

.vibe-bar {
  border-radius: 12px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s;
}
.vibe-bar.show {
  opacity: 1;
  transform: translateY(0);
}

.vb-icon {
  font-size: 26px;
}

.vb-h {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
  font-family: "dashiell-fine", serif;
}

.vb-d {
  font-size: 13px;
  line-height: 1.5;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
}
.catalog-meta span {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 20px;
}

.icard {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  position: relative;
}
.icard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
  border-color: #d0d7df;
}
.icard.sel {
  border-color: #7B8E70;
  box-shadow: 0 0 0 3px rgba(123, 142, 112, 0.1);
}
.icard.sel::after {
  content: "✓ Added";
  position: absolute;
  top: 10px;
  right: 10px;
  background: #7B8E70;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.icard.sel .ic-btn {
  background: #c0392b;
  transform: rotate(45deg);
}

.ic-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.ic-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s;
}

.icard:hover .ic-thumb-bg {
  transform: scale(1.06);
}

.ic-thumb-emoji {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.1));
}

.ic-body {
  padding: 16px 18px;
}

.ic-cat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B8E70;
  margin-bottom: 4px;
}

.ic-name {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.25;
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 700;
}

.ic-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ic-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ic-price span {
  display: block;
}

.ic-from {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

.ic-range {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  font-family: "dashiell-fine", serif;
}

.ic-unit {
  font-size: 11px;
  color: #94a3b8;
}

.ic-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0f172a;
  color: white;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  font-weight: 300;
  line-height: 1;
}
.ic-btn:hover {
  background: #7B8E70;
  transform: rotate(90deg);
}

/* ─── BOOKING ────────────────────────────────────────── */
#booking {
  background: #ffffff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.booking-left h2 {
  color: #0f172a;
  margin-bottom: 14px;
}
.booking-left > p {
  font-size: 16px;
  margin-bottom: 36px;
}

.bk-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bkf {
  display: flex;
  gap: 14px;
}

.bkf-ic {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid #e8ecf0;
}

.bkf-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}
.bkf-text p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.booking-form {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.bf-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 740;
}

.bf-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

.sel-items {
  margin-bottom: 20px;
}

.si-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  display: block;
  margin-bottom: 8px;
}

.si-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.si-empty {
  font-size: 13px;
  color: #94a3b8;
  font-style: italic;
}

.si-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fb;
  border: 1px solid #d0d7df;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  color: #0f172a;
}

.si-rm {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1;
  padding: 0;
}
.si-rm:hover {
  color: #e74c3c;
}

/* calendar */
.cal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  display: block;
  margin-bottom: 8px;
}

.cal {
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.cal-head {
  background: #0f172a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}

.cal-m {
  font-size: 15px;
  font-weight: 700;
  font-family: "dashiell-fine", serif;
}

.cal-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
}
.cal-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #f8f9fb;
}

.cal-dow-cell {
  text-align: center;
  padding: 8px 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px;
  gap: 2px;
}

.cd {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.15s;
  position: relative;
}
.cd:hover:not(.cd-dis):not(.cd-empty) {
  background: #f8f9fb;
}
.cd.cd-today {
  color: #7B8E70;
}
.cd.cd-today::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #7B8E70;
  border-radius: 50%;
}
.cd.cd-sel {
  background: #0f172a !important;
  color: white !important;
  border-radius: 8px;
}
.cd.cd-dis {
  color: #d0d7df;
  cursor: not-allowed;
}
.cd.cd-booked {
  color: #e74c3c;
  background: #fef2f2;
  cursor: not-allowed;
  font-size: 11px;
}
.cd.cd-avail::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #22c55e;
  border-radius: 50%;
}
.cd.cd-empty {
  cursor: default;
}

.cal-legend {
  display: flex;
  gap: 16px;
  padding: 8px 14px;
  background: #f8f9fb;
  flex-wrap: wrap;
  border-top: 1px solid #e8ecf0;
}

.cl {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.cl-d {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.fg {
  margin-bottom: 14px;
}
.fg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8ecf0;
  border-radius: 8px;
  font-size: 14px;
  color: #0f172a;
  background: #f8f9fb;
  outline: none;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: #7B8E70;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(123, 142, 112, 0.08);
}
.fg textarea {
  resize: vertical;
  min-height: 80px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f-submit {
  width: 100%;
  padding: 15px;
  background: #7B8E70;
  color: white;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.f-submit:hover {
  background: #6d7f62;
  transform: translateY(-1px);
}

.f-note {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.fs-icon {
  font-size: 52px;
  margin-bottom: 14px;
}

.fs-h {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: "dashiell-fine", serif;
}

.fs-p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

#temp {
  padding-top: calc(68px + 64px);
  padding-bottom: 80px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* ─── WHY ────────────────────────────────────────────── */
#why {
  background: #f8f9fb;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #e8ecf0;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.07);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f8f9fb;
  border: 1px solid #e8ecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.why-icon i {
  color: #7B8E70;
}

.why-h {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 720;
}

.why-p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* ─── AREAS ──────────────────────────────────────────── */
#areas {
  background: #ffffff;
}

.areas-head {
  margin-bottom: 36px;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.achip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  background: #f8f9fb;
  border: 1.5px solid #e8ecf0;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: all 0.18s;
  cursor: default;
}
.achip:hover {
  background: #7B8E70;
  border-color: #7B8E70;
  color: white;
}

.dmv-hero {
  padding: 120px 0 72px;
}

.dmv-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.dmv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #bed0b3;
  background: #ecf2e8;
  color: #64748b;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 16px;
}

.dmv-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #334155;
}

.dmv-title {
  color: var(--dmv-ink);
  margin-bottom: 16px;
}

.dmv-title .accent {
  color: #6d7f62;
}

.dmv-sub {
  color: #0f172a;
  font-size: 17px;
  max-width: 52ch;
  font-weight: 600;
}

.dmv-hero-card {
  border: 1px solid var(--dmv-line);
  border-radius: 22px;
  background: linear-gradient(145deg, #fffdf9 0%, #f7f3ea 100%);
  padding: 26px;
  box-shadow: 0 14px 36px rgba(16, 38, 63, 0.1);
}

.dmv-hero-card h3 {
  margin-bottom: 12px;
  color: var(--dmv-ink);
}

.dmv-hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.dmv-hero-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #304659;
  font-size: 14px;
  font-weight: 600;
}

.dmv-hero-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(145deg, #9cb08f, #7B8E70);
  flex-shrink: 0;
}

.dmv-section {
  padding: 26px 0 72px;
}

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

.dmv-option {
  border-radius: 22px;
  border: 1px solid var(--dmv-line);
  background: var(--dmv-card);
  box-shadow: 0 8px 24px rgba(16, 38, 63, 0.07);
  overflow: hidden;
  animation: card-rise 0.7s ease both;
}
.dmv-option h2 {
  margin-bottom: 8px;
  color: #0f172a;
  font-weight: 400;
}

.dmv-option:nth-child(2) {
  animation-delay: 0.1s;
}

.dmv-option-head {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--dmv-line);
}

.dmv-option-tone-a {
  background: linear-gradient(145deg, #eef4eb 0%, #f8fbf6 100%);
}

.dmv-option-tone-b {
  background: linear-gradient(145deg, #fdf4ef 0%, #fffaf7 100%);
}

.dmv-option p {
  color: #4f6477;
  font-size: 15px;
}

.dmv-chip {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf1e5;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dmv-option-body {
  padding: 22px 24px 24px;
}

.dmv-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.dmv-list li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  color: #304659;
  font-size: 14px;
  font-weight: 600;
}

.dmv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #8ea284;
  border-radius: 50%;
}

.dmv-note {
  border-left: 4px solid #c98a64;
  background: #fff2e9;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  color: #70462d;
}

.dmv-booking {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf5 100%);
  border-top: 1px solid var(--dmv-line);
  border-bottom: 1px solid var(--dmv-line);
}

.dmv-booking-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.dmv-booking-head p {
  margin-top: 10px;
}

.dmv-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.dmv-pill-toggle {
  background: #eef3eb;
  border: 1px solid #d5dfcf;
  border-radius: 999px;
  padding: 5px;
  gap: 6px;
}

.dmv-pill-toggle .nav-link {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #3f5568;
  padding: 10px 18px;
  border: none;
}

.dmv-pill-toggle .nav-link.active {
  background: #7B8E70;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(123, 142, 112, 0.3);
}

.dmv-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--dmv-line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(16, 38, 63, 0.08);
}

.dmv-form-title {
  font-size: 22px;
  color: var(--dmv-ink);
  margin-bottom: 8px;
}

.dmv-form-help {
  font-size: 14px;
  color: #587084;
  margin-bottom: 16px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #304659;
  letter-spacing: 0.02em;
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
  border-color: #ccd8e4;
  box-shadow: none;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
}

textarea.form-control {
  min-height: 122px;
}

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

.dmv-form-grid .full {
  grid-column: 1/-1;
}

.dmv-inline-note {
  border-radius: 10px;
  background: #fff3ea;
  border: 1px solid #f3d6c4;
  color: #85512e;
  font-size: 13px;
  padding: 10px 12px;
  margin-bottom: 14px;
}

.dmv-faq {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  border-top: 1px solid var(--dmv-line);
  border-bottom: 1px solid var(--dmv-line);
}

.dmv-faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.dmv-faq-head {
  text-align: center;
  margin-bottom: 26px;
}

.dmv-faq-head p {
  max-width: 60ch;
  margin: 10px auto 0;
}

.dmv-faq details {
  background: #ffffff;
  border: 1px solid var(--dmv-line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.dmv-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  color: var(--dmv-ink);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.dmv-faq summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #eaf1e5;
  flex-shrink: 0;
}

.dmv-faq details[open] summary::after {
  content: "−";
}

.dmv-faq details p {
  padding: 0 18px 16px;
  color: #4f6477;
  font-size: 15px;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 980px) {
  .dmv-hero {
    padding-top: 100px;
  }

  .dmv-hero-grid,
.dmv-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .dmv-hero {
    padding-top: 88px;
    padding-bottom: 54px;
  }

  .dmv-section {
    padding-bottom: 54px;
  }

  .dmv-option-head,
.dmv-option-body,
.dmv-faq summary,
.dmv-faq details p {
    padding-left: 14px;
    padding-right: 14px;
  }

  .dmv-sub {
    font-size: 16px;
  }

  .dmv-pill-toggle .nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .dmv-form-card {
    padding: 16px;
  }

  .dmv-form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  /* Mobile optimizations */
  .dmv-hero {
    padding-top: 76px;
    padding-bottom: 40px;
  }

  .dmv-section {
    padding: 40px 0;
  }

  .dmv-hero-grid {
    gap: 24px;
  }

  .dmv-title {
    font-size: clamp(24px, 5vw, 40px);
  }

  .dmv-sub {
    font-size: 15px;
    line-height: 1.6;
  }

  .dmv-hero-card {
    padding: 16px;
  }

  .dmv-hero-card h3 {
    font-size: 16px;
  }

  .dmv-hero-card ul {
    gap: 10px;
  }

  .dmv-grid {
    gap: 20px;
  }

  .dmv-option {
    border-radius: 12px;
  }

  .dmv-option-head {
    padding: 20px;
  }

  .dmv-option-head h2 {
    font-size: clamp(20px, 4vw, 28px);
  }

  .dmv-option-head p {
    font-size: 14px;
  }

  .dmv-option-body {
    padding: 16px;
  }

  .dmv-list li {
    font-size: 14px;
  }

  .dmv-pill-wrap {
    margin-bottom: 24px;
  }

  .dmv-pill-toggle {
    gap: 6px;
  }

  .dmv-pill-toggle .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .dmv-form-card {
    padding: 14px;
    border-radius: 12px;
  }

  .dmv-form-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .dmv-form-help {
    font-size: 14px;
  }

  .dmv-form-grid {
    gap: 14px;
  }

  .form-control,
.form-select {
    font-size: 16px !important;
    padding: 10px;
  }

  .dmv-inline-note,
.dmv-note {
    font-size: 13px;
    padding: 12px;
  }

  .dmv-faq summary {
    font-size: 14px;
    padding: 12px 14px;
  }

  .dmv-faq details p {
    font-size: 13px;
    padding: 12px 14px;
  }

  /* Button stacking on mobile */
  .pb-3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pb-3 > div {
    width: 100%;
  }

  .btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 14px;
  }
}
/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: #0f172a;
  padding: 64px 0 32px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.foot-logo {
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 820;
  font-size: 22px;
  color: white;
  display: block;
  margin-bottom: 14px;
}
.foot-logo em {
  color: #7B8E70;
  font-style: normal;
}

.foot-brand p {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  max-width: 260px;
  font-weight: 400;
}

.foot-brand-contact {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}
.foot-brand-contact a {
  color: #7B8E70;
}

.foot-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px !important;
}
.foot-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.foot-col ul a:hover {
  color: #7B8E70;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* Footer mobile responsive */
@media (max-width: 768px) {
  footer {
    padding: 48px 0 24px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .foot-logo {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 40px 0 20px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .foot-logo {
    grid-column: auto;
    margin-bottom: 12px;
  }

  .foot-logo p {
    font-size: 13px;
  }

  .foot-col h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .foot-links {
    gap: 8px;
  }

  .foot-links a {
    font-size: 12px;
  }

  .foot-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .foot-bottom p {
    font-size: 11px;
  }
}
/* ─── CART BAR ───────────────────────────────────────── */
#cart-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: none;
  background: #0f172a;
  color: white;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 36px rgba(15, 23, 42, 0.3);
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  animation: cart-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#cart-bar.vis {
  display: flex;
}

@keyframes cart-in {
  from {
    transform: translateX(-50%) translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.cb-n {
  font-size: 22px;
  font-weight: 800;
  color: #f59e0b;
  font-family: "dashiell-fine", serif;
  font-variation-settings: "wght" 800;
}

.cb-l {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.cb-go {
  background: #7B8E70;
  color: white;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.cb-go:hover {
  background: #6d7f62;
}

.cb-x {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
}

/* ─── TOAST ──────────────────────────────────────────── */
#toast {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  background: #0f172a;
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateX(110%);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 300px;
  border-left: 3px solid #7B8E70;
}
#toast.show {
  transform: translateX(0);
}

/* ─── SCROLL FADE ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bundle-row {
    grid-template-columns: 1fr;
  }

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

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  /* Tablet (768px and below) */
  section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(32px, 4.5vw, 56px);
  }

  h2 {
    font-size: clamp(24px, 3vw, 36px);
  }

  .wrap {
    padding: 0 20px;
  }

  .btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Form and input responsive */
  .form-control,
.form-select {
    font-size: 16px !important;
    padding: 10px 12px;
  }

  .form-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  /* Grid layouts */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar .stat-cell:nth-child(2) {
    border-right: none;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  #cart-bar {
    width: calc(100% - 40px);
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  /* Mobile (480px and below) */
  section {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(24px, 6vw, 40px);
  }

  h2 {
    font-size: clamp(20px, 4vw, 28px);
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  .wrap {
    padding: 0 16px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
    width: 100%;
  }
  .btn-sm {
    padding: 7px 12px;
    font-size: 11px;
    width: 100%;
  }

  /* Form responsive for mobile */
  .form-control,
.form-select,
.form-check-input {
    font-size: 16px !important;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .form-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .form-group,
.mb-3 {
    margin-bottom: 16px !important;
  }

  /* Grid layouts */
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bundle-row {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  /* Reduce spacing on mobile */
  .mt-3 {
    margin-top: 12px !important;
  }

  .mb-3 {
    margin-bottom: 12px !important;
  }

  .my-3 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .p-3 {
    padding: 12px !important;
  }
}

/*# sourceMappingURL=tra-styles.css.map */
