/* ============================================
   Stay in Columbus GA — WhiteDoorProperties, LLC
   ============================================ */

:root {
  --navy: #04294b;
  --navy-dark: #021c34;
  --navy-light: #0d3d66;
  --gold: #c9a24b;
  --gold-light: #e2c887;
  --cream: #f7f4ee;
  --white: #ffffff;
  --gray: #5b6b7a;
  --gray-light: #eef1f4;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(4, 41, 75, 0.12);
  --font-head: 'Manrope','Inter',sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(4, 41, 75, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }
.logo-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-body);
}

.main-nav { display: flex; align-items: center; gap: 32px; }

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--gold); }

.nav-cta { margin-left: 8px; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: " ▾";
  font-size: 11px;
  color: var(--gold);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 12px 34px rgba(4, 41, 75, 0.18);
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  z-index: 300;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 12.5px;
  border-bottom: none;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--cream); border-bottom: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(2, 28, 52, 0.55), rgba(2, 28, 52, 0.65)), var(--hero-img, linear-gradient(135deg, #0d3d66, #04294b));
  background-size: cover;
  background-position: center;
}

.hero-content { max-width: 900px; padding: 80px 24px; }

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 19px;
  max-width: 640px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Section basics ---------- */
section { padding: 90px 0; }

.section-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 42px);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 17px;
}

/* ---------- Features ---------- */
.features { background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 34px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 32px; height: 32px; }

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 12px;
}
.feature-card p { color: var(--gray); font-size: 15px; }

/* ---------- Property cards ---------- */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(4,41,75,0.18); }

.prop-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--gray-light);
}
.prop-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prop-card:hover .prop-photo img { transform: scale(1.05); }

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.prop-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }

.prop-body h3 {
  font-family: var(--font-head);
  font-size: 21px;
  margin-bottom: 8px;
}

.prop-specs {
  display: flex;
  gap: 18px;
  color: var(--gray);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.prop-desc { color: var(--gray); font-size: 15px; margin-bottom: 20px; flex: 1; }

.prop-body .btn { align-self: flex-start; padding: 12px 26px; font-size: 12.5px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); color: var(--white); }
.testimonials .section-title, .testimonials .section-eyebrow { color: var(--white); }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-sub { color: rgba(255,255,255,0.75); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 30px;
}

.stars { color: var(--gold-light); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }

.testi-card blockquote {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
  font-style: italic;
}

.testi-meta { font-size: 14px; }
.testi-meta strong { display: block; color: var(--gold-light); font-style: normal; }
.testi-meta span { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ---------- Split section (Book & Save) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--gray-light);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }

.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 18px;
}
.split-text .section-eyebrow { text-align: left; }
.split-text p { color: var(--gray); margin-bottom: 16px; }
.split-text .btn { margin-top: 12px; }

.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(rgba(2, 28, 52, 0.75), rgba(2, 28, 52, 0.8)), var(--cta-img, linear-gradient(135deg, #0d3d66, #021c34));
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.cta-banner p { max-width: 600px; margin: 0 auto 32px; color: rgba(255,255,255,0.9); font-size: 18px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(rgba(2, 28, 52, 0.6), rgba(2, 28, 52, 0.7)), var(--page-img, linear-gradient(135deg, #0d3d66, #04294b));
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 110px 24px;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(34px, 5vw, 52px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 18px; max-width: 640px; margin: 0 auto; }

/* ---------- Guide cards ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.guide-photo { aspect-ratio: 16/10; background: var(--gray-light); overflow: hidden; }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-body { padding: 26px; }
.guide-body h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 10px; }
.guide-body p { color: var(--gray); font-size: 15px; }
.guide-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  padding: 20px 26px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 26px 22px; color: var(--gray); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info h2 { font-family: var(--font-head); font-size: 30px; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 24px; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 500;
}
.contact-line .ico {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line .ico svg { width: 20px; height: 20px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

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

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d5dce3;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

.contact-form .btn { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}

.footer-brand .logo-text { color: var(--white); font-size: 20px; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,0.65); }

.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.75); transition: color 0.2s; }
.site-footer a:hover { color: var(--gold-light); }

.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { border-color: var(--gold-light); }
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.newsletter { display: flex; gap: 0; margin-top: 6px; }
.newsletter input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}
.newsletter button {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 12px 18px;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
}
.newsletter button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin: 0 8px; }
.footer-bottom strong { color: rgba(255,255,255,0.85); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .features-grid, .props-grid, .testi-grid, .guide-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 12px 20px rgba(4,41,75,0.12);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown {
    position: static;
    display: block;
    box-shadow: none;
    padding: 4px 0 0 16px;
    min-width: 0;
  }
  .has-dropdown > a::after { content: ""; }
  .features-grid, .props-grid, .testi-grid, .guide-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  section { padding: 64px 0; }
}

/* ============================================
   v2 — City site layout (split hero + photo cards)
   ============================================ */
.split-hero { display: grid; grid-template-columns: 1fr 1.12fr; min-height: 560px; background: var(--navy); padding: 0 !important; }
.sh-left { background: var(--navy); color: #fff; padding: 66px 54px 60px; display: flex; flex-direction: column; justify-content: center; border-radius: 0 0 64px 0; }
.sh-left .eyebrow { color: var(--gold); font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.sh-left h1 { font-family: var(--font-head); font-size: clamp(30px, 3.6vw, 46px); line-height: 1.14; margin-bottom: 16px; }
.sh-left p.lede { color: #c6d4e2; font-size: 15.5px; max-width: 430px; margin-bottom: 28px; }
.sh-right { position: relative; background-size: cover; background-position: center; border-radius: 64px 0 0 0; }
.sh-badge { position: absolute; left: 26px; bottom: 26px; background: rgba(255,255,255,.94); border-radius: 10px; padding: 13px 18px; box-shadow: 0 8px 26px rgba(0,0,0,.2); }
.sh-badge .t { font-family: var(--font-head); color: var(--navy); font-size: 17px; }
.sh-badge .s { font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gray); font-weight: 600; margin-top: 2px; }
@media (max-width: 900px){
  .split-hero { grid-template-columns: 1fr; }
  .sh-left { padding: 48px 26px 44px; border-radius: 0; }
  .sh-right { min-height: 320px; border-radius: 0; }
}

/* Inline availability bar */
.avail { display: flex; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.22); max-width: 470px; }
.avail .fld { flex: 1; padding: 11px 15px; border-right: 1px solid #e7ecf1; }
.avail label { display: block; font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); font-weight: 700; margin-bottom: 3px; }
.avail input { width: 100%; border: none; outline: none; font-family: inherit; font-size: 14px; color: var(--navy); background: transparent; }
.avail button { border: none; background: var(--gold); color: var(--navy); font-family: inherit; font-weight: 800; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; padding: 0 22px; cursor: pointer; white-space: nowrap; }
.avail button:hover { background: var(--gold-light); }
@media (max-width: 520px){ .avail { flex-direction: column; } .avail .fld { border-right: none; border-bottom: 1px solid #e7ecf1; } .avail button { padding: 15px; } }

/* Script accent */
.script { font-family: var(--font-head); font-style: italic; font-size: 25px; color: var(--gold); text-align: center; margin-top: 14px; }

/* Amenity photo cards with overlay label */
.amen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 18px; max-width: 1060px; margin: 0 auto; }
.amen { position: relative; height: 330px; border-radius: 12px; overflow: hidden; display: block; text-decoration: none; }
.amen img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.amen:hover img { transform: scale(1.06); }
.amen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(2,20,38,.72) 100%); }
.amen .lbl { position: absolute; left: 20px; bottom: 20px; z-index: 2; color: #fff; font-family: var(--font-head); font-size: 22px; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.amen .go { position: absolute; right: 16px; bottom: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; }

/* Local strip */
.local { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 18px; max-width: 1060px; margin: 0 auto; }
.local-item { text-align: center; }
.local-item img { width: 100%; height: 150px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.local-item h4 { font-family: var(--font-head); color: var(--navy); font-size: 17px; margin-bottom: 4px; }
.local-item p { font-size: 13.5px; color: var(--gray); }

/* =====================================================================
   WHITE DOOR — design pass 2

   The first pass was Playfair Display over navy and gold, everything
   centred, small uppercase buttons. It reads as a template. This layer
   keeps every class name and rebuilds the visual language: one
   geometric sans at a proper scale, left-aligned headings, light
   surfaces with hairline borders instead of heavy drop shadows, and
   generous radii.
   ===================================================================== */

:root {
  /* ink and surface, warmed slightly so white pages do not read clinical */
  --ink:        #10192a;
  --ink-soft:   #5a6675;
  --line:       #e8eaef;
  --surface:    #ffffff;
  --surface-2:  #f7f8fa;
  --surface-3:  #f2ede3;

  --navy:       #0a2540;
  --navy-dark:  #061a2e;
  --navy-light: #14395c;
  --gold:       #b8912f;
  --gold-light: #d8b968;
  --cream:      #f7f8fa;
  --gray:       #5a6675;
  --gray-light: #e8eaef;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  24px;

  --shadow:     0 1px 2px rgba(16,25,42,.04), 0 14px 34px -16px rgba(16,25,42,.18);
  --shadow-lg:  0 2px 4px rgba(16,25,42,.04), 0 28px 60px -24px rgba(16,25,42,.26);

  --font-head: 'Manrope', 'Inter', -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

body {
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); }

.container { max-width: 1180px; padding: 0 28px; }

/* ---------- type ---------- */
h1, h2, h3, h4, .logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--ink);
}
h3, h4 { font-weight: 700; letter-spacing: -0.018em; }

/* ---------- buttons ---------- */
.btn {
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0;
  text-transform: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); transform: none; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: none; }

.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.65);
}
.btn-outline:hover { background: #fff; color: var(--navy); }

/* ---------- header ---------- */
.site-header {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
.header-inner { padding: 14px 28px; max-width: 1400px; }
.logo-text { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; }
.logo-text span { color: var(--gold); }
.logo-sub { font-size: 9.5px; letter-spacing: 1.6px; color: var(--ink-soft); }
.logo-mark { width: 34px; height: 34px; }

.main-nav { gap: 26px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  border-bottom: none;
  border-radius: 8px;
  padding: 7px 2px;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); border-bottom-color: transparent; }
.has-dropdown > a::after { content: " ⌄"; font-size: 13px; color: var(--ink-soft); }
.dropdown {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 262px;
}
.dropdown a { font-size: 14px; padding: 9px 12px; border-radius: 8px; color: var(--ink-soft); }
.dropdown a:hover { background: var(--surface-2); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  min-height: 600px;
  text-align: left;
  background: linear-gradient(100deg, rgba(6,20,36,.74) 0%, rgba(6,20,36,.40) 62%, rgba(6,20,36,.22) 100%),
              var(--hero-img, linear-gradient(135deg, #14395c, #0a2540));
  background-size: cover;
  background-position: center;
}
.hero-content { max-width: 1180px; width: 100%; padding: 110px 28px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.036em;
  line-height: 1.04;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero p {
  font-size: 18.5px;
  max-width: 52ch;
  margin: 0 0 34px;
  color: rgba(255,255,255,.88);
}
.hero-eyebrow {
  font-size: 12.5px; letter-spacing: 1.8px; font-weight: 600;
  color: var(--gold-light); margin-bottom: 18px;
}
.hero-buttons { justify-content: flex-start; }

.page-hero { text-align: left; }
.page-hero h1 { color: #fff; letter-spacing: -0.032em; }

/* ---------- sections ---------- */
section { padding: 104px 0; }

.section-eyebrow {
  text-align: left;
  font-size: 12.5px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  text-align: left;
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: -0.032em;
  margin-bottom: 16px;
  max-width: 20ch;
}
.section-sub {
  text-align: left;
  margin: 0 0 54px;
  max-width: 62ch;
  font-size: 17.5px;
  color: var(--ink-soft);
}

/* ---------- cards, the shared treatment ---------- */
.features { background: var(--surface-2); }
.features-grid { gap: 22px; }

.feature-card,
.prop-card,
.guide-card,
.testi-card,
.local-item {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 28px 32px;
}
.feature-card:hover { transform: none; box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 44px; height: 44px; margin: 0 0 18px;
  background: var(--surface-3);
  border-radius: 12px;
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 { font-size: 18.5px; margin-bottom: 9px; }
.feature-card p { font-size: 15px; color: var(--ink-soft); }

.prop-card, .guide-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.prop-card:hover, .guide-card:hover { transform: none; box-shadow: var(--shadow-lg); }
.prop-photo, .guide-photo { border-radius: 0; }
.prop-body, .guide-body { padding: 22px 22px 26px; }
.prop-body h3, .guide-body h3 { font-size: 19px; margin-bottom: 8px; }
.prop-desc, .guide-body p { font-size: 14.5px; color: var(--ink-soft); }

.prop-badge {
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .4px;
  text-transform: none;
  font-weight: 600;
  padding: 6px 12px;
  top: 14px; left: 14px; right: auto; bottom: auto;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.guide-tag {
  font-size: 11px; letter-spacing: 1.2px; font-weight: 600;
  color: var(--gold);
}

/* ---------- around town ---------- */
.local { gap: 22px; }
.local-item { text-align: left; box-shadow: none; }
.local-item img { height: 210px; border-radius: var(--radius); }
.local-item h4 { font-size: 18px; }
.local-item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- testimonials / the arrangement ---------- */
.testi-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: none;
}

/* ---------- split sections ---------- */
.split { gap: 56px; align-items: center; }
.split-photo img { border-radius: var(--radius-lg); }
.split-text h2 { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.03em; }

/* ---------- cta banner ---------- */
.cta-banner {
  background: linear-gradient(100deg, rgba(6,20,36,.86), rgba(6,20,36,.62)),
              var(--cta-img, linear-gradient(135deg, #14395c, #061a2e));
  background-size: cover;
  background-position: center;
  padding: 96px 24px;
}
.cta-banner h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.03em; }

/* ---------- forms ---------- */
input, select, textarea {
  font-family: var(--font-body) !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--line) !important;
  font-size: 15px !important;
  padding: 12px 14px !important;
}
input:focus, select:focus, textarea:focus {
  outline: none !important;
  border-color: var(--navy) !important;
  box-shadow: 0 0 0 3px rgba(10,37,64,.09) !important;
}
label { font-size: 13.5px; font-weight: 600; color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-dark); }
.site-footer h4 {
  font-size: 12.5px; letter-spacing: 1.4px; font-weight: 600;
  text-transform: uppercase; color: var(--gold-light);
}
.site-footer a, .site-footer li, .site-footer p { font-size: 14.5px; }
.footer-bottom { font-size: 13px; }

/* ---------- checklists ---------- */
.checklist li { font-size: 15.5px; color: var(--ink-soft); }

/* ---------- narrow screens ---------- */
@media (max-width: 900px) {
  section { padding: 68px 0; }
  .hero-content { padding: 78px 24px; }
  .hero h1 { max-width: none; }
  .section-title, .section-sub { max-width: none; }
  .features-grid, .props-grid, .guide-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   Fixes found by screenshotting the pass above.
   --------------------------------------------------------------------- */

/* The header CTA was running off the right edge on 1440px. */
.header-inner { max-width: 1340px; gap: 20px; }
.main-nav { gap: 22px; flex-wrap: nowrap; }
.main-nav a { white-space: nowrap; }
.nav-cta { flex-shrink: 0; margin-left: 4px; padding: 11px 20px; font-size: 14px; }

/* Interior page heroes: heading and paragraph were landing on different
   left edges because only the paragraph sat inside a container. */
.page-hero {
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 0;
  background: linear-gradient(100deg, rgba(6,20,36,.76) 0%, rgba(6,20,36,.46) 100%),
              var(--page-img, linear-gradient(135deg, #14395c, #0a2540));
  background-size: cover; background-position: center;
}
.page-hero > * { width: 100%; max-width: 1180px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 56px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 56ch; }

/* Section headings were wrapping too tightly against a wide empty column. */
.section-title { max-width: 26ch; }

/* whitedoor's own hero: the heading was near-black over a photograph. */
.hero-shot { text-align: left; padding: 118px 0 128px; }
.hero-shot > * { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.hero-shot::before {
  background: linear-gradient(100deg, rgba(4,16,30,.82) 0%, rgba(4,16,30,.52) 58%, rgba(4,16,30,.34) 100%);
}
.hero-shot h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -0.034em;
  text-transform: none;
  color: #fff;
  max-width: 17ch;
  text-shadow: none;
}
.hero-shot h1 b { font-weight: 800; }
.hero-shot .tag {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 18.5px;
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  margin-top: 20px;
}
.hero-shot .hero-buttons, .hero-shot .btn-row { justify-content: flex-start; }

/* Interior heroes have no inner container, so the gutter goes on the
   section itself. Auto margins on the children were centring the short
   heading box while the paragraph stayed left. */
.page-hero {
  display: block;
  padding: 96px max(28px, calc((100% - 1180px) / 2));
}
.page-hero > * { max-width: none; margin: 0; padding: 0; }
.page-hero h1 { max-width: 18ch; text-align: left; }
.page-hero p { max-width: 56ch; text-align: left; margin: 0; }

/* The nav CTA sat hard against the viewport edge at 1440. */
.header-inner { padding-right: 34px; }

/* ---------- amenity picker and display ---------- */
.amen-groups { display: grid; gap: 22px; }
.amen-group { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px 18px; }
.amen-group legend { font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--ink-soft); padding: 0 6px; }
.amen-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 6px 18px; }
.amen { display: flex; align-items: center; gap: 10px; font-size: 15px; padding: 7px 6px; border-radius: 9px; cursor: pointer; }
.amen:hover { background: var(--surface-2); }
.amen input { width: 17px; height: 17px; accent-color: var(--navy); flex: 0 0 auto; margin: 0 !important; padding: 0 !important; border: 0 !important; }
.amen-ico { color: var(--ink-soft); display: flex; }

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 4px 40px; }
.amenity-row { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
.amenity-row:last-child { border-bottom: none; }
.amenity-row .ico { color: var(--ink); flex: 0 0 auto; margin-top: 1px; }
.amenity-more { margin-top: 22px; }

/* ---------- one page per listing ---------- */
.lp-skip { position:absolute; left:-9999px; }
.lp-head { border-bottom:1px solid var(--line); background:#fff; position:sticky; top:0; z-index:50; }
.lp-head-in { display:flex; justify-content:space-between; align-items:center; padding:15px 28px; }
.lp-back { font-size:14.5px; font-weight:600; color:var(--ink); }
.lp { padding:34px 28px 90px; }
.lp-title { font-size:clamp(28px,3.4vw,42px); letter-spacing:-.032em; margin-bottom:8px; }
.lp-where { color:var(--ink-soft); font-size:16px; margin-bottom:24px; }

.lp-gallery { display:grid; grid-template-columns:1.4fr 1fr; gap:10px; margin-bottom:44px; }
.lp-main img { width:100%; height:460px; object-fit:cover; border-radius:var(--radius); }
.lp-side { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.lp-side img { width:100%; height:225px; object-fit:cover; border-radius:var(--radius); }

.lp-cols { display:grid; grid-template-columns:1fr 380px; gap:60px; align-items:start; }
.lp-block { padding:0 0 34px; border-bottom:1px solid var(--line); margin-bottom:34px; }
.lp-block:last-child { border-bottom:none; }
.lp-block h2 { font-size:23px; letter-spacing:-.026em; margin-bottom:18px; }
.lp-desc { color:var(--ink-soft); font-size:16.5px; white-space:pre-wrap; }
.lp-more { display:inline-block; cursor:pointer; list-style:none; color:var(--ink); border-color:var(--line); background:#fff; }
.lp-more::-webkit-details-marker { display:none; }

.lp-side-col { position:sticky; top:88px; }
.lp-card { border:1px solid var(--line); border-radius:var(--radius); padding:24px; box-shadow:var(--shadow); }
.lp-price { font-size:24px; font-weight:800; letter-spacing:-.02em; margin-bottom:4px; font-family:var(--font-head); }
.lp-host { color:var(--ink-soft); font-size:14.5px; margin-bottom:18px; }
.lp-card input, .lp-card select, .lp-card textarea { width:100%; margin-bottom:9px; }
.lp-row { display:grid; grid-template-columns:1fr 1fr; gap:9px; }
.lp-send { width:100%; margin-top:6px; }
.lp-fineprint { font-size:12.5px; color:var(--ink-soft); margin-top:14px; line-height:1.55; }
.lp-msgbox { display:none; padding:11px 13px; border-radius:10px; font-size:14px; margin-bottom:10px; }
.lp-msgbox.ok { background:#e8f5ec; color:#14562c; }
.lp-msgbox.bad { background:#fdeceb; color:#8a1f19; }

@media (max-width:900px) {
  .lp-gallery { grid-template-columns:1fr; }
  .lp-main img { height:280px; }
  .lp-side img { height:150px; }
  .lp-cols { grid-template-columns:1fr; gap:34px; }
  .lp-side-col { position:static; }
}

.lp-chips { display:flex; flex-wrap:wrap; gap:6px; margin:0 0 12px; }
.lp-chip { display:inline-flex; align-items:center; gap:6px; font-size:12.5px; color:var(--ink-soft);
           border:1px solid var(--line); border-radius:999px; padding:5px 11px; background:#fff; }
.lp-chip.more { color:var(--ink); font-weight:600; }
