:root {
  --navy: #426b92;
  --navy-dark: #31587c;
  --navy-deep: #274867;
  --sky: #eef4f8;
  --yellow: #efbd2c;
  --yellow-dark: #d8a519;
  --pink: #e7bdc8;
  --blue-icon: #9cb9d3;
  --white: #ffffff;
  --text: #3b4b5b;
  --muted: #6d7f92;
  --line: #dbe5ee;
  --shadow: 0 10px 24px rgba(28, 58, 92, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #f7f9fb;
}

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

.container {
  width: min(1150px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy-deep);
  line-height: 1;
}

.brand-text strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  color: var(--yellow-dark);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.96rem;
}

.nav a:hover,
.nav a.active {
  color: var(--yellow-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0,0,0,0.08);
}

.btn:hover { background: var(--yellow-dark); }
.btn.secondary {
  background: var(--white);
  color: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.5);
}

.hero {
  background: linear-gradient(100deg, rgba(39,72,103,0.95) 0%, rgba(66,107,146,0.9) 38%, rgba(66,107,146,0.28) 62%, rgba(66,107,146,0.15) 100%),
              url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
}

.hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 54px 0;
}

.hero-copy h1,
.page-hero h1,
.section-title,
.split-card h2,
.cta-band h2 {
  font-family: Georgia, 'Times New Roman', serif;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
  max-width: 560px;
}

.hero-copy p {
  margin: 0 0 10px;
  font-size: 1.15rem;
  max-width: 500px;
}

.hero-points {
  list-style: none;
  margin: 20px 0 28px;
  padding: 0;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
}

.hero-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--yellow);
  font-size: 1.2rem;
}

.hero-panel {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  backdrop-filter: blur(3px);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.hero-panel h2 {
  margin: 0 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
}

.hero-panel p {
  line-height: 1.65;
  margin-bottom: 18px;
}

.section {
  padding: 58px 0;
  background: var(--white);
}

.section.alt {
  background: linear-gradient(180deg, #edf4f9 0%, #f7fafc 100%);
}

.section-title {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
}

.section-subtitle {
  max-width: 740px;
  margin: 12px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.info-grid,
.card-grid,
.step-grid,
.contact-grid,
.rental-grid {
  display: grid;
  gap: 20px;
}

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

.split-card,
.card,
.step-card,
.contact-card,
.rental-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split-card {
  padding: 28px;
}

.split-card h2 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.05;
}

.split-card h2 .accent { color: var(--yellow-dark); }
.split-card p,
.split-card li,
.card p,
.step-card p,
.contact-card p,
.rental-card p,
.form-card p,
.form-note,
.site-footer {
  line-height: 1.65;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow-dark);
  font-weight: 700;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--yellow);
  border-radius: 8px;
  color: var(--navy-deep);
  font-weight: 800;
}

.card-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
}

.card {
  padding: 22px 16px 18px;
  text-align: center;
}

.icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  background: linear-gradient(180deg, #f6f9fc 0%, #eef4f9 100%);
}

.card h3,
.rental-card h3,
.step-card h3,
.contact-card h3,
.form-card h2,
.page-hero h1 {
  color: var(--navy-deep);
}

.card h3,
.rental-card h3,
.step-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.step-card {
  padding: 24px;
  text-align: center;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy-deep);
  font-weight: 800;
}

.step-icon {
  font-size: 2.7rem;
  margin-bottom: 10px;
}

.cta-band {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.site-footer {
  background: #1c3b59;
  color: #eff5fb;
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.page-hero {
  background: linear-gradient(180deg, #edf4f9 0%, #f7fafc 100%);
  padding: 56px 0 48px;
}

.page-hero .hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.logo-panel {
  background: linear-gradient(180deg, #4d7399 0%, #426b92 100%);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 100%;
  border-radius: 16px;
}

.rental-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.rental-card {
  overflow: hidden;
}

.rental-top {
  padding: 24px 24px 8px;
}

.rental-meta {
  color: var(--yellow-dark);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.rental-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.65;
}

.rental-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px 24px;
}

.price {
  color: var(--navy-deep);
  font-weight: 800;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.form-card {
  padding: 26px;
}

.form-card h2 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

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

.field,
.full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full { grid-column: 1 / -1; }

label {
  font-weight: 700;
  color: var(--navy-deep);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid #cbd8e5;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.95rem;
}

.note-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.note-list li {
  padding-left: 22px;
  position: relative;
  margin: 10px 0;
}

.note-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--yellow-dark);
  font-size: 1.1rem;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.contact-card {
  padding: 24px;
}

.about-copy {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-copy p { margin: 0 0 18px; }

.about-box {
  margin-top: 28px;
  background: linear-gradient(180deg, #f7fafc 0%, #eef4f9 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}

@media (max-width: 1040px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .rental-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-inner,
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-inner,
  .page-hero .hero-layout,
  .info-grid,
  .form-layout,
  .contact-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner { min-height: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .brand { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .card-grid,
  .rental-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero,
  .cta-band { padding: 42px 0; }

  .site-header { position: static; }
}


/* Legal pages */
.legal-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.legal-card h2 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
}

.legal-card h2 + p,
.legal-card p,
.legal-card li {
  line-height: 1.75;
}

.legal-card h2:not(:first-child) {
  margin-top: 26px;
}

.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f7fafc;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
}


/* FAQ accordion */
.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fbfd;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy-deep);
  position: relative;
  padding-right: 56px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  line-height: 1.75;
}


/* Reserve form options */
.form-options {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  min-height: auto;
}

.checkbox-group label {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.checkbox-group a,
.text-link {
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: underline;
}

.policy-helper {
  margin: -2px 0 0 28px;
  font-size: 0.92rem;
  color: var(--muted);
}

.text-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 42, 62, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  width: min(760px, 100%);
  max-height: 85vh;
  overflow: auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(18, 37, 56, 0.25);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
}

.modal-card h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
}

.modal-content p {
  line-height: 1.75;
  margin: 0 0 14px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.secondary-outline {
  background: var(--white);
  color: var(--navy-deep);
  border: 1px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-deep);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .policy-helper {
    margin-left: 0;
  }

  .modal-card {
    padding: 22px;
  }

  .modal-card h2 {
    font-size: 1.6rem;
    padding-right: 28px;
  }
}


/* Reserve page spacing fix */
.reserve-submit-area {
  margin-top: 22px;
  padding-top: 8px;
  clear: both;
}

.reserve-submit-area .form-options {
  margin: 0 0 18px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  column-gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
}

.checkbox-group label {
  display: block;
  max-width: 100%;
  line-height: 1.45;
}

.policy-helper {
  margin: 2px 0 0 32px;
  line-height: 1.45;
}

.reserve-submit-btn {
  margin-top: 6px;
}

.form-grid > .field.full textarea {
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .checkbox-group {
    grid-template-columns: 18px 1fr;
    column-gap: 10px;
  }

  .policy-helper {
    margin-left: 0;
  }
}


/* Reserve spacing fix v2 */
.reserve-submit-area {
  margin-top: 28px !important;
  padding-top: 14px !important;
  border-top: 1px solid var(--line);
}

.form-options {
  display: block !important;
  margin: 0 0 24px !important;
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 0 0 18px !important;
}

.checkbox-row:last-of-type {
  margin-bottom: 16px !important;
}

.checkbox-row input[type="checkbox"] {
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 0 !important;
  min-height: 0 !important;
}

.checkbox-row label {
  display: block !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

.policy-helper-wrap {
  margin: 4px 0 0 30px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
}

.policy-helper-label {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.terms-preview-link {
  display: inline-block !important;
  margin: 0 !important;
  font-size: 0.95rem !important;
}

.submit-button-wrap {
  margin-top: 26px !important;
}

.reserve-submit-btn {
  display: inline-flex !important;
}

#notes,
textarea[name="Notes"] {
  margin-bottom: 10px !important;
}

@media (max-width: 640px) {
  .checkbox-row {
    gap: 10px !important;
  }

  .policy-helper-wrap {
    margin-left: 0 !important;
  }

  .submit-button-wrap {
    margin-top: 22px !important;
  }
}



/* Hero accessibility improvements */
.hero { position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 60, 0.48);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-panel {
  background: rgba(20, 40, 60, 0.78) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28) !important;
  backdrop-filter: blur(8px);
}
.hero-panel h2 {
  color: #ffffff !important;
  font-weight: 700;
}
.hero-panel p {
  color: rgba(255,255,255,0.95) !important;
  font-size: 1.06rem;
  line-height: 1.7;
}
.hero-panel .btn,
.hero-panel .btn.secondary {
  background: #ffffff !important;
  color: var(--navy-deep) !important;
  border: none !important;
}
.hero-panel .btn:hover,
.hero-panel .btn.secondary:hover {
  background: #f2f5f8 !important;
}




/* Reserve spacing fix v3 */
.reserve-submit-area {
  margin-top: 26px !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--line) !important;
}

.checkbox-stack {
  display: block !important;
  margin: 0 0 24px 0 !important;
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 0 0 16px 0 !important;
}

.checkbox-row + .checkbox-row {
  margin-top: 10px !important;
}

.checkbox-row input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 4px 0 0 0 !important;
  flex: 0 0 16px !important;
}

.checkbox-row label {
  display: block !important;
  margin: 0 !important;
  line-height: 1.45 !important;
  font-size: 0.98rem !important;
  width: auto !important;
  flex: 1 1 auto !important;
}

.policy-helper-box {
  margin: 8px 0 22px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  align-items: flex-start !important;
  color: var(--muted) !important;
  font-size: 0.93rem !important;
}

.reserve-submit-btn {
  margin-top: 8px !important;
}

#notes,
textarea[name="Notes"] {
  margin-bottom: 18px !important;
}

@media (max-width: 640px) {
  .policy-helper-box {
    margin-left: 0 !important;
  }
}
