/* ===== BASE RESET & VARIABLES ===== */
:root {
  --primary: #5C4033;
  --accent: #D4A76A;
  --light-bg: #FAF6F1;
  --dark: #2C1A0E;
  --white: #FFFFFF;
  --gray-100: #F5F0EA;
  --gray-200: #E8E0D6;
  --gray-300: #C9BFAD;
  --gray-500: #8A7E70;
  --gray-700: #5A5047;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
}


/* ===== HEADER / NAV — Hamburger on all screens ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44,26,14,0.08);
}

/* On non-hero pages, header is solid from the start */
.header.solid {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.header:not(.scrolled):not(.solid) .logo {
  color: var(--white);
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.header:not(.scrolled):not(.solid) .logo-icon {
  background: rgba(255,255,255,0.15);
  color: var(--accent);
}

/* Hamburger button — always visible */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header:not(.scrolled):not(.solid) .hamburger span {
  background: var(--white);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--primary);
}

/* Slide-out drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer a {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--primary);
  padding-left: 8px;
}

.nav-drawer .nav-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: none;
  text-align: center;
}

.nav-drawer .nav-cta:hover {
  background: var(--dark);
  padding-left: 28px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}


/* ===== HERO — Minimal, massive typography ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}

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

.hero .hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 48px;
}

.hero .btn-hero {
  display: inline-block;
  padding: 18px 40px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.hero .btn-hero:hover {
  background: #c99a55;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}


/* ===== CATEGORY BAR — horizontal e-commerce filters ===== */
.category-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 72px;
  z-index: 900;
}

.category-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.category-bar-inner::-webkit-scrollbar {
  display: none;
}

.category-bar a {
  display: block;
  padding: 18px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.category-bar a:hover,
.category-bar a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}


/* ===== FEATURED ITEMS — Clean list layout ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 48px;
}

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

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 560px;
}

/* List-style item rows (like an elegant menu) */
.item-list {
  border-top: 1px solid var(--gray-200);
}

.item-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease;
}

.item-row:hover {
  background: var(--light-bg);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.item-thumb {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.item-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.item-info p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.item-price {
  text-align: right;
  white-space: nowrap;
}

.item-price .amount {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.item-price .period {
  font-size: 0.75rem;
  color: var(--gray-500);
}


/* ===== FEATURES / WHY RENT ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  padding: 0;
}

.feature-item .feature-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* ===== TESTIMONIALS — Blockquote style ===== */
.testimonials-stack {
  max-width: 700px;
}

.testimonial-block {
  border-left: 3px solid var(--accent);
  padding: 24px 0 24px 28px;
  margin-bottom: 40px;
}

.testimonial-block:last-child {
  margin-bottom: 0;
}

.testimonial-block p.quote-text {
  font-size: 1.063rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-block .quote-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-block .quote-detail {
  font-size: 0.813rem;
  color: var(--gray-500);
}


/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--primary);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-section .btn-cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.938rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-section .btn-cta:hover {
  background: #c99a55;
  transform: translateY(-2px);
}


/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 32px;
  font-size: 0.875rem;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  background: rgba(255,255,255,0.1);
}

.footer-brand p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.813rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--accent);
}


/* ===== RENTALS PAGE — Sidebar + Main layout ===== */
.rentals-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

.rentals-sidebar {
  position: sticky;
  top: 140px;
}

.rentals-sidebar h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.rentals-sidebar a {
  display: block;
  padding: 10px 16px;
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--gray-500);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
  margin-bottom: 2px;
}

.rentals-sidebar a:hover {
  color: var(--primary);
}

.rentals-sidebar a.active {
  color: var(--primary);
  font-weight: 600;
  border-left-color: var(--accent);
  background: var(--light-bg);
}

.rentals-main {
  min-width: 0;
}

.rental-category-section {
  margin-bottom: 56px;
  scroll-margin-top: 160px;
}

.rental-category-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.rental-category-section .cat-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* Rental item rows */
.rental-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}

.rental-row:first-of-type {
  border-top: 1px solid var(--gray-200);
}

.rental-row-thumb {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.rental-row-info h3 {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.rental-row-info p {
  font-size: 0.813rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 8px;
}

.rental-row-info .rates {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rental-row-info .rate {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.rental-row-info .rate strong {
  color: var(--dark);
  font-weight: 600;
}

.rental-row-action {
  padding-top: 4px;
}

.rental-row-action .price-main {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.rental-row-action .price-label {
  font-size: 0.688rem;
  color: var(--gray-500);
  text-align: right;
}

.rental-row-action .btn-reserve {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.rental-row-action .btn-reserve:hover {
  background: var(--dark);
}

/* Bundle callout box */
.bundle-callout {
  background: var(--light-bg);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 40px;
  margin-top: 56px;
  scroll-margin-top: 160px;
}

.bundle-callout h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.bundle-callout .bundle-sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.bundle-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-300);
  gap: 24px;
}

.bundle-item:first-of-type {
  border-top: 1px solid var(--gray-300);
}

.bundle-item-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.bundle-item-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bundle-item-info ul li {
  font-size: 0.75rem;
  color: var(--gray-500);
  background: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}

.bundle-item-price {
  text-align: right;
  flex-shrink: 0;
}

.bundle-item-price .amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.bundle-item-price .period {
  font-size: 0.688rem;
  color: var(--gray-500);
  display: block;
}

.bundle-item-price .btn-bundle {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.bundle-item-price .btn-bundle:hover {
  background: #c99a55;
}


/* ===== PAGE HEADER (for inner pages) ===== */
.page-hero {
  padding: 120px 24px 48px;
  background: var(--light-bg);
}

.page-hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
}


/* ===== ABOUT PAGE ===== */

/* Full-width founder quote banner */
.founder-banner {
  background: var(--primary);
  padding: 80px 24px;
  text-align: center;
}

.founder-banner blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.6;
  font-weight: 400;
}

.founder-banner .attribution {
  margin-top: 24px;
  font-size: 0.938rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* Narrow editorial column */
.editorial {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px;
}

.editorial h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.editorial p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.8;
}

.editorial .inline-stats {
  font-size: 1.063rem;
  color: var(--dark);
  font-weight: 500;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.8;
}

.editorial .inline-stats strong {
  color: var(--primary);
  font-weight: 700;
}

/* Values — simple text in narrow column */
.editorial .value-block {
  margin-bottom: 24px;
}

.editorial .value-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.editorial .value-block p {
  margin-bottom: 0;
}

/* Team — simple name/role/bio paragraphs */
.team-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.team-section h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.team-member {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.team-member:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.team-member h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.team-member .role {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 0.938rem;
  color: var(--gray-700);
  line-height: 1.7;
}


/* ===== CONTACT PAGE — Centered single column ===== */
.contact-centered {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.contact-centered h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.contact-line {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.contact-line a {
  color: var(--primary);
  font-weight: 500;
}

.contact-line a:hover {
  color: var(--accent);
}

.contact-line strong {
  color: var(--dark);
  font-weight: 600;
  display: inline-block;
  min-width: 80px;
}

.hours-block {
  margin-top: 32px;
  margin-bottom: 48px;
}

.hours-block h3 {
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.938rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.hours-row.today {
  color: var(--primary);
  font-weight: 600;
}

.hours-note {
  font-size: 0.813rem;
  color: var(--gray-500);
  margin-top: 8px;
}

/* Contact form — minimal bottom-border fields */
.contact-form-section {
  margin-top: 16px;
}

.contact-form-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-group label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-300);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

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

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A7E70' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

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

.form-hint {
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: 4px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--dark);
}

.form-note {
  text-align: center;
  font-size: 0.813rem;
  color: var(--gray-500);
  margin-top: 12px;
}


/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  width: 100%;
  height: 240px;
  background: var(--gray-100);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 48px;
}

.map-placeholder span:first-child {
  font-size: 2rem;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .rentals-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rentals-sidebar {
    position: static;
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 0;
    margin-bottom: 32px;
  }

  .rentals-sidebar h3 {
    display: none;
  }

  .rentals-sidebar a {
    border-left: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 0.813rem;
  }

  .rentals-sidebar a.active {
    border-bottom-color: var(--accent);
    background: transparent;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .section {
    padding: 56px 0;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .item-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .item-price {
    grid-column: 2;
    text-align: left;
  }

  .rental-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .rental-row-action {
    grid-column: 2;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .rental-row-action .price-label {
    text-align: left;
  }

  .rental-row-thumb {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .bundle-callout {
    padding: 28px 20px;
  }

  .bundle-item {
    flex-direction: column;
    gap: 12px;
  }

  .bundle-item-price {
    text-align: left;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .founder-banner {
    padding: 56px 20px;
  }

  .category-bar a {
    padding: 14px 20px;
    font-size: 0.813rem;
  }

  .nav-drawer {
    width: 100%;
    max-width: 100vw;
    padding: 90px 28px 28px;
  }
}
