/* ── Rental House MT — shared styles ──────────────── */

:root {
  --bg: #F5F7FF;
  --charcoal: #00040f;
  --accent: #4274FF;
  --sand: #DBE5FF;
  --sidebar-w: 260px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  margin: 0;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }

/* ── Sidebar ────────────────────────────────────── */

#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99;
}

#sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--charcoal);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.sidebar-brand a { text-decoration: none; color: inherit; }

.sidebar-logo {
  width: 150px;
  height: auto;
  display: block;
  opacity: 0.92;
}
.sidebar-city {
  font-size: 0.7rem;
  opacity: 0.45;
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sidebar-nav {
  flex: 1;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sidebar-nav a {
  display: block;
  padding: 0.575rem 0.875rem;
  border-radius: 7px;
  text-decoration: none;
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
  position: relative;
}
.sidebar-nav a::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.15s;
}
.sidebar-nav a:hover {
  color: var(--bg);
  background: rgba(255, 255, 255, 0.07);
}
.sidebar-nav a:hover::before {
  opacity: 0.6;
}
.sidebar-nav a.active {
  color: var(--bg);
  background: var(--accent);
}

.sidebar-bottom {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.sidebar-person { margin-bottom: 0.9rem; }
.sidebar-person-name {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 0.2rem;
}
.sidebar-person a {
  display: block;
  color: rgba(250, 247, 242, 0.65);
  text-decoration: none;
  font-size: 0.72rem;
  line-height: 1.75;
  transition: color 0.15s;
}
.sidebar-person a:hover { color: var(--bg); }

.sidebar-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.sidebar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.62rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.15s;
}
.sidebar-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ── Mobile top bar ─────────────────────────────── */

#mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--charcoal);
  color: var(--bg);
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  z-index: 98;
}
.mobile-wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.hamburger-btn {
  background: none;
  border: none;
  color: var(--bg);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

/* ── Page wrapper ───────────────────────────────── */

#page-wrapper {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.content-area { flex: 1; }

/* ── Sections ───────────────────────────────────── */

.section     { padding: 4rem; }
.section-sm  { padding: 2.5rem 4rem; }
.section-sand { background: var(--sand); }

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ── Buttons ────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  position: relative;
  background: var(--accent);
  color: var(--bg);
  padding: 0.725rem 1.65rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  position: relative;
  background: transparent;
  color: var(--charcoal);
  padding: 0.7rem 1.65rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(33, 38, 31, 0.28);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--bg);
  border-color: var(--charcoal);
}

.btn-outline-light {
  display: inline-block;
  position: relative;
  background: transparent;
  color: var(--bg);
  padding: 0.7rem 1.65rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(250, 247, 242, 0.35);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-light:hover {
  background: var(--bg);
  color: var(--charcoal);
}

.btn-primary::after,
.btn-outline::after,
.btn-outline-light::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1.65rem;
  right: 1.65rem;
  height: 1.5px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn-primary:hover::after,
.btn-outline:hover::after,
.btn-outline-light:hover::after {
  opacity: 1;
}

/* ── Fade-up on scroll ───────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Brand strip carousel ────────────────────────── */

.brand-carousel {
  overflow: hidden;
  width: 100%;
}
.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 32s linear infinite;
  will-change: transform;
}
.brand-set {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  padding-right: 3.75rem;
  flex-shrink: 0;
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: 130px;
  display: block;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.42);
  mix-blend-mode: multiply;
}

/* ── Mountain SVG divider ───────────────────────── */

.mountain-wrap {
  overflow: hidden;
  line-height: 0;
  height: 52px;
}
.mountain-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Package cards ──────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.package-card {
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.package-card.featured {
  border-color: var(--accent);
}

.card-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.package-card h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.price-chip {
  background: var(--sand);
  border-radius: 5px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
}
.price-chip .lbl {
  font-weight: 400;
  opacity: 0.55;
  font-size: 0.7rem;
  margin-right: 0.2rem;
}

.gear-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gear-list li {
  font-size: 0.81rem;
  color: rgba(33, 38, 31, 0.72);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.gear-list li::before {
  content: '·';
  position: absolute;
  left: 0.15rem;
  color: var(--accent);
  font-weight: 700;
}
.gear-list li.hi { color: var(--accent); font-weight: 600; }

.card-link {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* ── How-it-works steps ─────────────────────────── */

.steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1;
  min-width: 140px;
  padding-right: 1.5rem;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 0.52rem;
  right: 0.05rem;
  width: auto;
  height: auto;
  background: none;
  color: rgba(33, 38, 31, 0.22);
  font-size: 1rem;
  line-height: 1;
}
.step-num {
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.step-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.step-desc {
  font-size: 0.8rem;
  color: rgba(33, 38, 31, 0.58);
  line-height: 1.55;
}

/* ── CTA band ───────────────────────────────────── */

.cta-band {
  background: var(--charcoal);
  color: var(--bg);
  padding: 3.5rem 4rem;
}
.cta-eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.45;
  margin-bottom: 0.75rem;
}
.cta-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 480px;
  color: var(--bg);
  line-height: 1.2;
}

/* ── Equipment inventory ────────────────────────── */

.equip-section { margin-bottom: 2.75rem; }
.equip-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 0.9rem;
  margin-top: 0;
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.45rem 1.5rem;
}
.equip-item {
  font-size: 0.86rem;
  color: rgba(33, 38, 31, 0.78);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.equip-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(33, 38, 31, 0.2);
  font-size: 0.75rem;
}

/* ── Contact page ───────────────────────────────── */

.contact-card {
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}
.contact-detail-icon {
  width: 1.4rem;
  height: 1.4rem;
  background: var(--sand);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 12px; height: 12px; stroke: var(--accent); fill: none; stroke-width: 1.75; }
.contact-detail a { font-size: 0.85rem; text-decoration: none; color: var(--charcoal); transition: color 0.15s; }
.contact-detail a:hover { color: var(--accent); }

/* ── Quote form ─────────────────────────────────── */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(33, 38, 31, 0.8);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.65rem 0.875rem;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  background: #fff;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Addons box ─────────────────────────────────── */

.addon-box {
  background: #fff;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  padding: 1.75rem;
}
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand);
  flex-wrap: wrap;
}
.addon-row:last-child { border-bottom: none; }
.addon-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.addon-desc { font-size: 0.78rem; color: rgba(33,38,31,0.55); margin-top: 0.15rem; line-height: 1.4; }
.addon-price { font-size: 0.82rem; font-weight: 600; color: var(--accent); white-space: nowrap; text-align: right; }

/* ── Page hero (inner pages) ────────────────────── */

.page-hero {
  padding: 3.5rem 4rem 0;
}
.page-hero-divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 2.5rem 0 0 0;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(33, 38, 31, 0.6);
  line-height: 1.65;
  max-width: 540px;
}

/* ── Brands carried (equipment page) ────────────── */

.brands-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand-pill {
  background: var(--sand);
  border-radius: 5px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(33, 38, 31, 0.7);
}

/* ── Footer ─────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--sand);
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  font-size: 0.78rem;
  color: rgba(33, 38, 31, 0.42);
}
.site-footer a {
  color: rgba(33, 38, 31, 0.42);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer a:hover { color: var(--accent); }
.site-footer .dot { color: rgba(33, 38, 31, 0.22); }

/* ── Info 2-col (address / socials) ─────────────── */

.info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

@media (max-width: 560px) {
  .info-cols { grid-template-columns: 1fr; }
}

/* ── About page ─────────────────────────────────── */

.about-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(33, 38, 31, 0.82);
  max-width: 640px;
}
.about-body p { margin-bottom: 1.1rem; }
.about-note {
  display: inline-block;
  background: #fff4d6;
  border: 1px solid #e9c96a;
  border-radius: 6px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  color: #7a5c00;
  margin-bottom: 2rem;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 767px) {
  #sidebar {
    transform: translateX(-260px);
    transition: transform 0.25s ease;
  }
  #sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.22);
  }
  #sidebar-overlay.open { display: block; }
  #mobile-header { display: flex; }
  #page-wrapper { margin-left: 0; padding-top: 56px; }

  .section    { padding: 2.5rem 1.5rem; }
  .section-sm { padding: 2rem 1.5rem; }
  .cta-band   { padding: 2.5rem 1.5rem; }
  .site-footer { padding: 1.25rem 1.5rem; }
  .page-hero  { padding: 2.5rem 1.5rem 2rem; }

  .steps-row { flex-direction: column; gap: 1.5rem; }
  .step-item:not(:last-child)::after { display: none; }
  .step-item { padding-right: 0; }

  .form-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
}
