/* Miranda Rentals — shared styles */
:root {
  --red: #E7413C;
  --yellow: #FFD43B;
  --green: #3CBA6E;
  --blue: #4DA3FF;
  --orange: #FFB020;
  --ink: #22242B;
  --muted: #565B66;
  --bg: #FFFDFA;
  --line: #EEEAE1;
  --line-soft: #F0EDE6;
  --input-line: #E4E0D8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a { color: inherit; }

/* Top banner */
.banner {
  background: var(--yellow);
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  padding: 8px;
}

/* Header / nav */
.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 16px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--line-soft);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 19px;
  white-space: nowrap;
}
.brand span { color: var(--red); }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--muted);
}
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--red); }
.btn-quote {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
}
.btn-quote:hover { background: var(--red); }

/* Layout */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 36px clamp(16px, 4vw, 40px) 64px;
  flex: 1;
}
.wide { max-width: 1200px; margin: 0 auto; }

/* Home hero */
.hero {
  text-align: center;
  padding: clamp(40px, 7vw, 64px) clamp(20px, 6vw, 60px) 48px;
  position: relative;
}
.hero h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 7vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 16.5px;
  color: var(--muted);
  margin: 14px auto 0;
  max-width: 480px;
  line-height: 1.6;
}
.confetti { position: absolute; }

/* Section cards (home) */
.sections { padding: 0 clamp(16px, 4vw, 40px) 56px; }
.sections h2 {
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.5px;
  margin: 0 0 24px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-head {
  color: #fff;
  font-weight: 700;
  font-size: 16.5px;
  text-align: center;
  padding: 14px 12px;
}
.card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.card-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.card-cta {
  text-decoration: none;
  text-align: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 11px 12px;
  border-radius: 10px;
  display: block;
}
.card.red .card-head { background: var(--red); }
.card.red .card-cta:hover { background: var(--red); }
.card.blue .card-head { background: var(--blue); }
.card.blue .card-cta:hover { background: var(--blue); }
.card.green .card-head { background: var(--green); }
.card.green .card-cta:hover { background: var(--green); }
.card.orange .card-head { background: var(--orange); }
.card.orange .card-cta:hover { background: var(--orange); }

/* Pricing page header */
.back-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.back-link:hover { color: var(--ink); }
.page-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.page-title .dot { width: 14px; height: 14px; border-radius: 50%; }
.page-title h1 {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: -.8px;
}
.page-intro {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 560px;
  line-height: 1.6;
}
.feature-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-top: 24px;
  display: block;
}
.feature-img.tall { height: 320px; }

.section-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.4px;
  margin: 32px 0 14px;
}

/* Package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.pkg {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}
.pkg-tag {
  background: var(--yellow);
  display: inline-block;
  font-weight: 700;
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.pkg-name { font-weight: 700; font-size: 16px; }
.pkg-desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pkg-price { font-weight: 800; font-size: 26px; margin-top: 10px; }
.pkg-price.red { color: var(--red); }
.pkg-price.green { color: var(--green); }

/* Price tables (individual rentals) */
.price-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
  align-items: start;
}
.price-cols .section-title { margin: 0 0 12px; }
.price-cols .section-title + .price-table + .section-title { margin-top: 24px; }
.price-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14.5px;
  background: #fff;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 20px;
}
.price-row:nth-child(odd) { background: #FAF8F3; }
.price-row .item { font-weight: 600; }
.price-row .price { font-weight: 700; }

/* Snack list */
.snack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.snack {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.quote-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.quote-box .title { font-weight: 700; font-size: 16px; }
.quote-box .sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.quote-box .btn {
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  white-space: nowrap;
  text-decoration: none;
}

.crosslink { font-size: 13.5px; color: var(--muted); margin-top: 20px; }
.crosslink a { font-weight: 600; text-decoration: none; }
.crosslink a.red { color: var(--red); }
.crosslink a.green { color: var(--green); }
.crosslink a.blue { color: var(--blue); }

/* Contact form */
.contact {
  padding: 0 clamp(16px, 4vw, 40px) 64px;
}
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact .eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 20px;
}
.contact h2 {
  text-align: center;
  font-weight: 800;
  font-size: clamp(20px, 3.5vw, 26px);
  letter-spacing: -.4px;
  margin: 0 0 28px;
}
.contact h2 a {
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-form input,
.contact-form textarea {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--input-line);
  background: transparent;
  padding: 10px 4px;
  outline: none;
  border-radius: 0;
}
.contact-form input:focus { border-bottom: 2px solid var(--red); }
.contact-form textarea {
  border: 1px solid var(--input-line);
  border-radius: 12px;
  padding: 14px 16px;
  resize: vertical;
}
.contact-form textarea:focus { border-color: var(--red); }
.contact-submit-wrap { text-align: center; margin-top: 30px; }
.contact-submit {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}
.contact-submit:hover { background: var(--ink); }

/* Lightbox photo viewer */
.zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(34, 36, 43, .85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  z-index: 1000;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .4);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  font-family: Poppins, sans-serif;
}

/* City landing pages */
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 6px; font-weight: 700; font-size: 13px; }
.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 7px;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.active { color: var(--ink); background: var(--line); }
.deliver-to {
  font-size: 14px !important;
  color: var(--muted);
  max-width: 560px !important;
}
.faq { display: flex; flex-direction: column; gap: 18px; max-width: 720px; }
.faq-q { font-weight: 700; font-size: 15.5px; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 4px; }

/* Footer */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 38px clamp(16px, 4vw, 40px);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 20px;
}
.footer .tagline { font-weight: 800; font-size: 22px; }
.footer-credit {
  max-width: 1120px;
  margin: 20px auto 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
}
.footer-credit a { color: rgba(255, 255, 255, .8); text-decoration: underline; }
.footer-credit a:hover { color: #fff; }
.footer .btn {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
