/* ==========================================================================
   JGA Rentals — stylesheet
   Clean, Apple-inspired white / grey / blue palette
   ========================================================================== */

:root {
  --white: #ffffff;
  --grey-100: #f5f5f7;
  --grey-200: #eaeaec;
  --grey-300: #d2d2d7;
  --grey-400: #c7c7cc;
  --grey-500: #86868b;
  --grey-700: #48484a;
  --grey-900: #1d1d1f;
  --blue: #0071e3;
  --blue-dark: #0058b0;
  --blue-light: #4da3ff;
  --blue-tint: #eaf2fc;
  --success: #1a8a4a;

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  color: var(--grey-500);
}

.section-alt {
  background: var(--grey-100);
}

/* ---------------------------------- Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--grey-100);
  color: var(--grey-900);
}

.btn-secondary:hover {
  background: var(--grey-200);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 17px;
}

/* ---------------------------------- Navbar ---------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img {
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-700);
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--grey-900);
  border-radius: 2px;
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  padding: 168px 0 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.06;
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-sub {
  font-size: 19px;
  color: var(--grey-500);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-700);
}

.hero-trust-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0, 113, 227, 0.15));
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.hero-float-card.top {
  top: 6%;
  right: -4%;
}

.hero-float-card.bottom {
  bottom: 8%;
  left: -6%;
}

.hero-float-card .icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.hero-float-card .icon-circle svg {
  width: 16px;
  height: 16px;
}

/* ---------------------------------- Trust strip ---------------------------------- */

.trust-strip {
  background: var(--grey-900);
  padding: 28px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.trust-strip-item svg {
  width: 20px;
  height: 20px;
  color: var(--blue-light);
  flex-shrink: 0;
}

/* ---------------------------------- Specs ---------------------------------- */

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

.specs-visual {
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.specs-list {
  display: grid;
  gap: 22px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-200);
}

.spec-row .label {
  font-size: 15px;
  color: var(--grey-500);
  font-weight: 500;
}

.spec-row .value {
  font-size: 16px;
  font-weight: 700;
  color: var(--grey-900);
  text-align: right;
}

/* ---------------------------------- Pricing ---------------------------------- */

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

.price-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: var(--grey-900);
  color: var(--white);
  border-color: var(--grey-900);
}

.price-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.price-card .price-sub {
  font-size: 14px;
  color: var(--grey-500);
  margin-bottom: 20px;
}

.price-card.featured .price-sub {
  color: var(--grey-400);
}

.price-card .price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.price-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-500);
}

.price-card.featured .price span {
  color: var(--grey-400);
}

.price-card .price-note {
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 26px;
}

.price-card.featured .price-note {
  color: var(--grey-400);
}

.price-features {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}

.price-features svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card.featured .price-features svg {
  color: var(--blue-light);
}

.pricing-footnote {
  text-align: center;
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 32px;
}

/* ---------------------------------- Trades / uses ---------------------------------- */

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

.trade-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}

.trade-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.trade-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.trade-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.trade-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trade-card p {
  font-size: 14.5px;
  color: var(--grey-500);
}

/* ---------------------------------- Family owned ---------------------------------- */

.family-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.family-visual {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.family-visual::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.family-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.family-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.family-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.family-stats .stat-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
}

.family-stats .stat-label {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.family-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.family-content p {
  font-size: 16.5px;
  color: var(--grey-500);
  margin-bottom: 16px;
}

.family-signature {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-900);
  display: flex;
  align-items: center;
  gap: 12px;
}

.family-signature .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
}

/* ---------------------------------- Availability / Booking ---------------------------------- */

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

.calendar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-header h3 {
  font-size: 17px;
  font-weight: 700;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--grey-300);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.calendar-nav button:hover {
  background: var(--grey-100);
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-weekdays div {
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey-500);
  padding: 6px 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--grey-900);
  position: relative;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.past {
  color: var(--grey-300);
  cursor: not-allowed;
}

.calendar-day.booked {
  background: var(--grey-100);
  color: var(--grey-400);
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.available:hover {
  background: var(--blue-tint);
}

.calendar-day.selected {
  background: var(--blue);
  color: var(--white);
}

.calendar-day.in-range {
  background: var(--blue-tint);
  border-radius: 0;
}

.calendar-legend {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.calendar-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--grey-500);
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.legend-swatch.available {
  background: var(--white);
  border: 1px solid var(--grey-300);
}

.legend-swatch.selected {
  background: var(--blue);
}

.legend-swatch.booked {
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
}

.calendar-selection-summary {
  margin-top: 20px;
  padding: 16px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}

.calendar-selection-summary strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* Form */

.booking-form-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.booking-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.booking-form-card > p {
  font-size: 14.5px;
  color: var(--grey-500);
  margin-bottom: 30px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--grey-700);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--grey-900);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.segment-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.segment-toggle input {
  display: none;
}

.segment-toggle label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  margin-bottom: 0;
}

.segment-toggle label .seg-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--grey-900);
}

.segment-toggle label .seg-price {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 2px;
}

.segment-toggle input:checked + label {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.fulfillment-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fulfillment-toggle input {
  display: none;
}

.fulfillment-toggle label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 0;
}

.fulfillment-toggle input:checked + label {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.fulfillment-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.fulfillment-toggle .f-title {
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.fulfillment-toggle .f-sub {
  font-size: 12px;
  color: var(--grey-500);
  display: block;
}

#delivery-address-group {
  display: none;
}

#delivery-address-group.show {
  display: block;
}

.estimate-box {
  background: var(--grey-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.estimate-box .estimate-label {
  font-size: 13px;
  color: var(--grey-400);
}

.estimate-box .estimate-value {
  font-size: 26px;
  font-weight: 700;
  margin-top: 2px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--grey-500);
  margin-top: 14px;
  text-align: center;
}

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

.form-success.show {
  display: block;
}

.form-success .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success .check-circle svg {
  width: 32px;
  height: 32px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--grey-500);
  font-size: 14.5px;
}

/* ---------------------------------- FAQ ---------------------------------- */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--grey-500);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--grey-500);
}

/* ---------------------------------- Final CTA ---------------------------------- */

.final-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------- Footer ---------------------------------- */

footer {
  background: var(--grey-900);
  color: var(--grey-400);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 30px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

/* ---------------------------------- Reveal animation ---------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 960px) {
  .hero .container,
  .specs-grid,
  .family-section .container,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .calendar-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  section {
    padding: 70px 0;
  }

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

  .form-row,
  .fulfillment-toggle,
  .segment-toggle {
    grid-template-columns: 1fr;
  }

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

  .trust-strip .container {
    justify-content: flex-start;
  }

  .booking-form-card {
    padding: 26px;
  }
}
