/* ===========================
   WESTERN ROAD STORAGE — CSS
   =========================== */

:root {
  --red:       #C0272D;
  --red-dark:  #8B1A1E;
  --red-light: #D94F54;
  --black:     #0D0D0D;
  --charcoal:  #1A1A1A;
  --slate:     #2C2C2C;
  --ash:       #4A4A4A;
  --warm-grey: #8C8070;
  --cream:     #F5F0E8;
  --off-white: #FAF8F4;
  --white:     #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --radius: 4px;
  --transition: 0.25s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.10);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,39,45,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION COMMON ---- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.section-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-header { max-width: 680px; margin-bottom: 4rem; }
.section-header.centered { margin: 0 auto 4rem; text-align: center; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ash);
  max-width: 560px;
  line-height: 1.7;
}

/* ========================
   NAV
   ======================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

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

.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo:hover img { opacity: 0.8; }

.nav-logo #title {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid var(--red);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,13,13,0.98);
  padding: 1.5rem 2rem 2rem;
  gap: 1.25rem;
}
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
}

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

/* ========================
   HERO
   ======================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139,26,30,0.15) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.6) 60%, rgba(13,13,13,0.92) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
}

.hero-grain { 
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none; 
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  animation: heroFadeUp 1s ease both;
}

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

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red-light);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--red-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 3rem;
  bottom: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  background: var(--red);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  justify-content: center;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 0 6px rgba(192,39,45,0.2);
  animation: pulse 3s ease-in-out infinite;
}
.hero-badge span { font-size: 0.65rem; font-weight: 600; }
.hero-badge strong { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(192,39,45,0.2); }
  50%       { box-shadow: 0 0 0 14px rgba(192,39,45,0.08); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--black);
  padding: 2rem 0;
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-item svg { width: 20px; height: 20px; color: var(--red-light); flex-shrink: 0; }

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* ========================
   UNITS
   ======================== */
#units { background: var(--off-white); }

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.unit-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.unit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.unit-card:hover::before { transform: scaleX(1); }

.unit-size {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.unit-size span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ash);
}

.unit-dims {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 1rem;
}

.unit-visual {
  margin: 1rem 0;
}
.unit-visual svg { width: 100%; height: auto; }

.unit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.75rem;
}
.unit-badge.available {
  background: rgba(34, 139, 34, 0.1);
  color: #1a7a1a;
}
.unit-badge.limited {
  background: rgba(192,39,45,0.1);
  color: var(--red);
}
.unit-badge.waitlist {
  background: rgba(150,100,0,0.1);
  color: #8B6400;
}
.unit-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.units-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(192,39,45,0.05);
  border: 1px solid rgba(192,39,45,0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  max-width: 680px;
}
.note-icon svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.units-note p { font-size: 0.9rem; color: var(--ash); }
.units-note a { color: var(--red); font-weight: 500; }
.units-note a:hover { text-decoration: underline; }

/* ========================
   RV SECTION
   ======================== */
#rv {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.rv-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(192,39,45,0.08) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
}

.rv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rv-text .section-label { color: var(--red-light); }

.rv-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.rv-text > p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.rv-list {
  margin-bottom: 2rem;
}
.rv-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.rv-list li svg { width: 16px; height: 16px; color: var(--red-light); flex-shrink: 0; }

.rv-availability {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.5rem;
}

.rv-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.rv-visual .rv-card:first-child {
  grid-column: 1 / -1;
}

.rv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: background var(--transition), border-color var(--transition);
}
.rv-card:hover {
  background: rgba(192,39,45,0.1);
  border-color: rgba(192,39,45,0.3);
}
.rv-icon svg { width: 100%; height: auto; color: var(--red-light); }
.rv-icon { width: 100%; max-width: 160px; }
.rv-card span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ========================
   SECURITY
   ======================== */
#security { background: var(--white); }

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

.security-card {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.security-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.sec-icon {
  width: 48px; height: 48px;
  background: rgba(192,39,45,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.sec-icon svg { width: 22px; height: 22px; color: var(--red); }

.security-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.security-card p {
  font-size: 0.92rem;
  color: var(--ash);
  line-height: 1.7;
}

/* ========================
   LOCATION
   ======================== */
#location { background: var(--off-white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.location-text .section-header { margin-bottom: 0; }
.location-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.address-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.address-block svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.address-block > div { display: flex; flex-direction: column; gap: 0.15rem; }
.address-block strong { font-size: 0.95rem; font-weight: 600; color: var(--black); }
.address-block span { font-size: 0.85rem; color: var(--ash); }

.map-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
  background: var(--slate);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 2rem;
}
.map-fallback svg { width: 32px; height: 32px; color: var(--red-light); }
.map-fallback p { font-size: 1rem; font-weight: 500; color: var(--white); }
.map-fallback a { color: var(--red-light); font-family: var(--font-cond); font-size: 0.85rem; letter-spacing: 0.08em; }

/* ========================
   CONTACT
   ======================== */
#contact {
  background: var(--black);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-text .section-label { color: var(--red-light); }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.contact-text > p {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--red-light); }
.contact-link svg { width: 18px; height: 18px; color: var(--red-light); flex-shrink: 0; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-group select option { background: var(--charcoal); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(192,39,45,0.05);
}
.form-group textarea { resize: vertical; }

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.form-note a { color: var(--red-light); }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34,139,34,0.12);
  border: 1px solid rgba(34,139,34,0.25);
  border-radius: var(--radius);
  color: #5cc85c;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========================
   FOOTER
   ======================== */
footer {
  background: #080808;
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.footer-logo p { font-size: 0.85rem; line-height: 1.65; }

.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }

footer h4 {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}
.footer-links a, .footer-contact a, .footer-contact p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--red-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; }
.admin-link {
  font-size: 0.75rem;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
  transition: color var(--transition);
}
.admin-link:hover { color: rgba(255,255,255,0.5); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .rv-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rv-visual { grid-template-columns: 1fr 1fr 1fr; }
  .rv-visual .rv-card:first-child { grid-column: auto; }

  .security-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 300px; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo { grid-column: 1 / -1; }

  .hero-badge { right: 1.5rem; bottom: 3rem; width: 80px; height: 80px; }
  .hero-badge strong { font-size: 0.9rem; }
}

@media (max-width: 600px) {
  section { padding: 4rem 0; }
  .section-inner { padding: 0 1.25rem; }

  .units-grid { grid-template-columns: 1fr 1fr; }
  .rv-visual { grid-template-columns: 1fr; }
  .rv-visual .rv-card:first-child { grid-column: auto; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .trust-divider { display: none; }
  .hero-badge { display: none; }
  .hero-content h1 { font-size: 2.6rem; }
}
