/* ============================================================
   Dockside Vacation Rentals — Main Stylesheet
   Chain O' Lakes Property Management · Lake County, IL
   Fonts are loaded via <link rel="stylesheet"> in HTML head to
   avoid the double round-trip caused by @import.
   ============================================================ */

:root {
  /* Dockside palette: Deep dock-blue, rope amber, buoy red */
  --dock:       #1b3d5a;   /* deep dock-blue — primary brand */
  --dock-dark:  #0f2438;   /* dark navy — nav, footer */
  --dock-mid:   #2a5f8a;   /* medium blue — links, accents */
  --rope:       #c47c2e;   /* weathered rope amber — CTA */
  --rope-lt:    #e8a84a;   /* lighter rope — hover states */
  --buoy:       #d94f3f;   /* buoy red — urgent B2B CTA only */
  --buoy-dark:  #b33b2c;
  --pine:       #2d6a4f;   /* success / checkmarks */
  --pine-lt:    #3b8c66;   /* lighter green for guest CTA hover */
  --mist:       #eef4f8;   /* light section backgrounds */
  --driftwood:  #f8f5ef;   /* warm alternating sections */
  --sky:        #e4f0f8;
  --white:      #ffffff;
  --text:       #1c2b38;
  --text-lt:    #4a6070;
  --border:     #ccd8e3;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 8px 28px rgba(15,36,56,0.09);
  --shadow-lg:  0 18px 48px rgba(15,36,56,0.13);
  --font-heading: 'DM Sans', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 100px; /* Offset for sticky header on mobile/desktop */
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dock-mid); text-decoration: none; }
a:hover { color: var(--rope); }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.tag {
  display: inline-block;
  background: var(--sky);
  color: var(--dock);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tag-rope   { background: #fdf0e0; color: #7a4c19; }
.tag-buoy   { background: #fdecea; color: #922b1e; }
.tag-pine   { background: #e4f2eb; color: var(--pine); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dock-dark); }
h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
p  { color: var(--text-lt); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--text-lt); max-width: 640px; }

/* ── SKIP TO CONTENT (a11y) ── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--dock-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius) 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-to-content:focus {
  left: 0;
  outline: 3px solid var(--rope-lt);
  color: #fff;
}

/* ── AVAILABILITY BANNER ── */
.availability-banner {
  background: #e4f0f8;
  border-bottom: 2px solid var(--dock);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
}
.availability-banner a { color: var(--dock); text-decoration: underline; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(15,36,56,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.nav-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo strong {
  color: var(--dock);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.nav-logo span {
  color: var(--text-lt);
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 440px) {
  .nav-logo span { display: none; }
  .nav-logo strong { font-size: 1rem; }
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--dock-mid); }
.nav-links .cta-btn {
  background: var(--buoy);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background .2s;
}
.nav-links .cta-btn:hover { background: var(--buoy-dark); }

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dock-dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--dock-dark) 0%, var(--dock) 60%, #234f72 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='40' viewBox='0 0 80 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q20 8 40 20 Q60 32 80 20' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--rope-lt); }
.hero .lead { color: rgba(255,255,255,.82); margin-bottom: 36px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-primary   { background: var(--rope); color: var(--white); }
.btn-primary:hover { background: var(--rope-lt); color: var(--dock-dark); }
.btn-buoy      { background: var(--buoy); color: var(--white); }
.btn-buoy:hover { background: var(--buoy-dark); color: var(--white); }
.btn-pine      { background: var(--pine); color: var(--white); }
.btn-pine:hover { background: var(--pine-lt); color: var(--white); }
.btn-outline   { background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dock      { background: var(--dock); color: var(--white); }
.btn-dock:hover { background: var(--dock-dark); color: var(--white); }
.btn-outline-dark { background: transparent; border-color: var(--dock); color: var(--dock); }
.btn-outline-dark:hover { background: var(--dock); color: var(--white); }

/* ── DUAL FORK CARDS ── */
.fork-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.fork-card {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.fork-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fork-card.owner { border-color: var(--buoy); }
.fork-card.guest { border-color: var(--rope); }
.fork-icon { font-size: 2.8rem; margin-bottom: 16px; }
.fork-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fork-label.owner { color: var(--buoy); }
.fork-label.guest { color: var(--rope); }
.fork-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.fork-card p  { font-size: .95rem; flex: 1; margin-bottom: 24px; }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.stat {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--dock); font-family: var(--font-heading); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .8rem; color: var(--text-lt); text-transform: uppercase; letter-spacing: .08em; }

/* ── AMENITY GRID ── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.amenity-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.amenity-card h3 { font-size: 1rem; margin-bottom: 6px; }
.amenity-card p  { font-size: .875rem; }

/* ── FEATURE ROWS ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  background: var(--mist);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.feature-img-dark {
  background: var(--dock-dark);
  color: var(--white);
}
.feature-img-dark p {
  color: var(--white) !important;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.feature-content h2 { margin-bottom: 16px; }
.feature-content p  { margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-list li { position: relative; padding-left: 24px; font-size: .95rem; color: var(--text-lt); line-height: 1.6; }
.feature-list li::before { content: '✓'; color: var(--pine); font-weight: 800; position: absolute; left: 0; top: 0; }

/* ── PROPERTY CARDS ── */
.page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.page-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.page-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.page-card-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--mist);
}
.thumb-plr      { background: linear-gradient(135deg, #0f2d45 0%, #1a4a6e 100%); }
.thumb-cypress  { background: linear-gradient(135deg, #0e2222 0%, #1a3a3a 100%); }
.thumb-hideaway { background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 100%); }
.thumb-dock     { background: linear-gradient(135deg, #0f2438 0%, #1b3d5a 100%); }
.page-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.page-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.page-card-body p  { font-size: .9rem; flex: 1; margin-bottom: 16px; }
.page-card-body .card-meta { font-size: .8rem; color: var(--text-lt); margin-bottom: 12px; }
.page-card-body a.card-link { font-size: .875rem; font-weight: 700; color: var(--dock); }
.page-card-body a.card-link:hover { color: var(--rope); }

/* ── BENEFIT GRID ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.benefit-card .icon { font-size: 2rem; margin-bottom: 12px; }
.benefit-card h3 { margin-bottom: 8px; }

/* ── STEPS ── */
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--dock);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 8px; }
.step-content p  { margin-bottom: 0; }

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--driftwood);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-audience {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-audience-owner { color: var(--buoy); }
.blog-audience-guest { color: var(--dock-mid); }
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-card p  { font-size: .875rem; flex: 1; margin-bottom: 16px; }
.blog-card a  { font-size: .85rem; font-weight: 700; color: var(--dock); }
.blog-card a:hover { color: var(--rope); }

/* ── FAQ ACCORDION ── */
.faq-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-list details[open] { border-color: var(--dock-mid); }
.faq-list summary {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text);
  font-family: var(--font-heading);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--dock-mid);
  flex-shrink: 0;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list .faq-answer {
  padding: 0 24px 20px;
  font-size: .95rem;
  color: var(--text-lt);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--rope) 0%, #a5671e 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }

/* ── REVENUE SNAPSHOT BOX ── */
.revenue-box {
  background: var(--dock-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
}
.revenue-box h3 { color: var(--rope-lt); margin-bottom: 20px; }
.revenue-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.revenue-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .95rem;
}
.revenue-row:last-child { border-bottom: none; }
.revenue-row span:first-child { color: rgba(255,255,255,.75); }
.revenue-row span:last-child { font-weight: 700; color: var(--white); }
.revenue-row.total span:last-child { color: var(--rope-lt); font-size: 1.2rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.t-stars { color: var(--rope); margin-bottom: 12px; font-size: 1rem; }
.t-quote { font-style: italic; color: var(--text); margin-bottom: 16px; line-height: 1.65; }
.t-cite  { font-weight: 700; color: var(--dock); font-size: .9rem; }
.t-cite span { font-weight: 400; color: var(--text-lt); font-size: .8rem; }
.t-type  { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--buoy); margin-bottom: 8px; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table th {
  background: var(--dock-dark);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: .875rem;
}
.spec-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--mist); }

/* ── INCLUDE/EXCLUDE TABLE ── */
.include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.include-col {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.include-col.yes { background: #edf7f2; border: 1px solid #a8d8bb; }
.include-col.no  { background: #fdf2f2; border: 1px solid #f0b8b8; }
.include-col h4  { margin-bottom: 16px; font-size: .9rem; }
.include-col.yes h4 { color: #1a6639; }
.include-col.no  h4 { color: #8b2217; }
.include-list    { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.include-list li { font-size: .9rem; color: var(--text); position: relative; padding-left: 22px; line-height: 1.5; }
.include-list.yes li::before { content: '✓'; color: #1a6639; font-weight: 700; position: absolute; left: 0; top: 0; }
.include-list.no  li::before { content: '✗'; color: #8b2217; font-weight: 700; position: absolute; left: 0; top: 0; }

/* ── CALCULATOR ── */
.calc-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--text);
}
.form-row select,
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-row select:focus,
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--dock-mid);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row .check-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.form-row .check-group label { font-weight: 400; display: flex; gap: 10px; align-items: center; cursor: pointer; }
.form-row .check-group input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; }
.calc-result {
  background: var(--dock-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  display: none;
}
.calc-result.visible { display: block; }
.calc-result h3 { color: var(--rope-lt); margin-bottom: 20px; }
.calc-number { font-size: 2.6rem; font-weight: 800; color: var(--rope-lt); font-family: var(--font-heading); }

/* ── LOCATION STRIP ── */
.location-strip {
  background: var(--dock-dark);
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem;
}
.location-strip .location-tagline { font-weight: 700; font-size: 1rem; margin: 0 0 .35rem; color: #fff; }
.location-strip .location-detail { font-size: .82rem; color: rgba(255,255,255,.9); margin: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dock-dark) 0%, var(--dock) 100%);
  padding: 72px 24px 56px;
  color: var(--white);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.hero-phone { margin-top: 14px; font-size: .88rem; color: rgba(255,255,255,.85); }
.hero-phone a { color: var(--white); font-weight: 700; text-decoration: none; }
.hero-phone a:hover { text-decoration: underline; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--rope-lt); }
.breadcrumb span { color: rgba(255,255,255,.9); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.82); }

/* ── SISTER STRIP (managed properties band) ── */
.sister-strip { background: var(--driftwood); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 24px; }
.sister-strip-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.sister-strip h4 { color: var(--dock); white-space: nowrap; font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; }
.sister-links { display: flex; gap: 20px; flex-wrap: wrap; }
.sister-link {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.sister-link:hover { border-color: var(--rope); box-shadow: var(--shadow); color: var(--dock); }

/* ── BLOG POST ── */
.blog-post { max-width: 760px; margin: 3rem auto; padding: 0 1.5rem; }
.blog-post h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.2; color: var(--dock-dark); margin-bottom: .5rem; }
.blog-post .post-meta { font-size: .82rem; color: #5a6878; margin-bottom: 2rem; }
.blog-post h2 { font-size: 1.3rem; color: var(--dock); margin: 2rem 0 .75rem; }
.blog-post h3 { font-size: 1.1rem; color: var(--dock); margin: 1.5rem 0 .5rem; }
.blog-post p { line-height: 1.75; color: #333; margin-bottom: 1.25rem; }
.blog-post ul, .blog-post ol { line-height: 1.75; color: #333; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post li { margin-bottom: .4rem; }
.blog-post .post-cta { background: var(--dock); color: #fff; border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin: 3rem 0; }
.blog-post .post-cta h3 { color: #fff; margin: 0 0 .75rem; }
.blog-post .post-cta p { color: rgba(255,255,255,.88); margin: 0 0 1.25rem; }
.blog-post .seo-callout { background: var(--mist); border-left: 4px solid var(--dock); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.blog-post .seo-callout strong { color: var(--dock); }

/* ── SEASONAL STRIP ── */
.seasonal-strip { background: var(--dock-dark); color: var(--white); }
.season-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.season-card { padding: 36px 24px; border-right: 1px solid rgba(255,255,255,.08); transition: background .2s; }
.season-card:last-child { border-right: none; }
.season-card:hover { background: rgba(255,255,255,.05); }
.season-icon { font-size: 2.2rem; margin-bottom: 12px; }
.season-card h3 { color: var(--rope-lt); font-size: 1rem; margin-bottom: 4px; }
.season-card h4 { color: var(--white); font-size: .9rem; margin-bottom: 8px; font-weight: 600; }
.season-card p  { color: rgba(255,255,255,.8); font-size: .82rem; line-height: 1.5; }

/* ── FOOTER ── */
.footer {
  background: var(--dock-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo-img { height: 80px; width: 80px; object-fit: contain; display: block; margin-bottom: 12px; }
.footer-brand strong { color: var(--white); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; display: block; margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }
.footer-brand p { font-size: .875rem; line-height: 1.6; margin-bottom: 16px; color: rgba(255,255,255,.9); }
.nap { font-size: .875rem; line-height: 1.8; }
.nap strong { color: rgba(255,255,255,.9); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--rope-lt); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.85); }

/* ── UTILITY: RESPONSIVE 2-COL GRIDS ── */
/* Use these classes instead of inline grid-template-columns so mobile media queries work */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
/* Centered property card pair — stays 2-col down to 620px then stacks */
.page-cards-2up {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .fork-grid { grid-template-columns: 1fr; }
  .page-cards { grid-template-columns: repeat(2, 1fr); }
  .season-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .include-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 4px 16px rgba(15,36,56,0.12);
    padding: 8px 0 16px;
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; font-size: 1rem; }
  .nav-links .cta-btn { margin: 8px 24px; text-align: center; }
  .page-cards { grid-template-columns: 1fr; }
  .season-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero { padding: 64px 24px 56px; }
  .hero-btns { flex-direction: column; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .fork-grid { gap: 16px; }
  .feature-img { 
    aspect-ratio: auto; 
    min-height: 280px; 
    padding: 40px 20px;
  }
  .feature-img-dark p { font-size: 1.1rem !important; }
  .grid-2col { grid-template-columns: 1fr; gap: 24px; }
  .form-grid-2col { grid-template-columns: 1fr; }
  .page-cards-2up { grid-template-columns: 1fr; }
}

/* ── LEAD FORM (Standardized) ── */
.lead-form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-top: 32px;
  text-align: left;
}
.lead-form-inline {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.lead-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.lead-form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dock);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lead-form-group input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
}
.lead-form-group input:focus {
  outline: none;
  border-color: var(--dock);
}
.form-sent-msg {
  display: none;
  background: #e4f2eb;
  border: 1.5px solid var(--pine);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--text);
  margin-top: 20px;
}
.form-error-msg {
  display: none;
  background: #fdecea;
  border: 1.5px solid var(--buoy);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 12px;
  color: var(--buoy);
  font-size: 0.85rem;
  text-align: center;
}
.btn-loader { display: none; align-items: center; justify-content: center; gap: 8px; }

@media (max-width: 600px) {
  .lead-form-inline { flex-direction: column; }
}

