/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #F6F5F1;
  --bg-2:      #E4E2DA;
  --stone:     #DAD7CC;
  --paper:     #FFFFFF;
  --ink:       #232323;
  --ink-soft:  #3A3B3D;
  --ink-mute:  #6E6F6C;
  --accent:    #3E5C76;   /* slate blue — trust, professionalism */
  --accent-2:  #B08D57;   /* warm brass — secondary warmth */
  --accent-ink:#24384A;
  --line:      rgba(34,31,26,0.12);
  --line-soft: rgba(34,31,26,0.07);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(34,31,26,0.06);
  --shadow-md: 0 14px 40px rgba(34,31,26,0.10);
  --shadow-lg: 0 24px 70px rgba(34,31,26,0.16);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --serif: "Fraunces", "Iowan Old Style", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1360px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section {
  padding: clamp(4rem, 9vw, 8rem) 0;
  position: relative;
}
.section-head {
  max-width: 660px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: .9rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.08rem; color: var(--ink-mute); }
.section--alt { background: var(--paper); }
.section--stone { background: var(--bg-2); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography components
   ============================================================= */
em { font-style: italic; color: var(--accent-ink); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--ink-mute); max-width: 62ch; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-ink); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-sm { padding: .75rem 1.35rem; font-size: .85rem; }

.card {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.15rem 0;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(247,244,236,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: .8rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); white-space: nowrap; flex-shrink: 0; }
.brand-mark { height: 30px; width: auto; display: block; }
.brand-word { line-height: 1; }
.footer-brand .brand-mark { height: 32px; }
.nav-links { display: none; align-items: center; gap: 1.6rem; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.nav-links a { position: relative; padding: .2rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px;
  background: var(--accent); transition: width .35s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; width: 42px; height: 42px; border-radius: 50%;
  align-items: center; justify-content: center; border: 1px solid var(--line);
  background: var(--paper);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 17px; height: 1.6px; background: var(--ink); position: relative;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem clamp(1.25rem, 6vw, 3rem);
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 2rem; }
.mobile-menu a { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: clamp(7.5rem, 16vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 8%, rgba(62,92,118,0.16), transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 95%, rgba(176,141,87,0.14), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.85fr; }
}
.hero-kicker { margin-bottom: 1.6rem; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; }
.hero .lede { margin-bottom: 2.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero-tagline {
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); display: flex; align-items: center; gap: .8rem;
}
.hero-tagline span:not(:last-child)::after { content: "·"; margin-left: .8rem; color: var(--accent); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  padding: .8rem 1rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); flex-shrink: 0; }
.hero-badge-text { flex: 1; min-width: 0; }
.hero-badge-text strong { display: block; font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--accent-ink); }
.hero-badge-pin {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: rgba(255,255,255,0.26);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-pin svg { width: 16px; height: 16px; fill: none; stroke: var(--accent-ink); stroke-width: 1.7; }

/* --- Marquee --- */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.marquee { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track { display: flex; align-items: center; gap: 3rem; padding: 1.1rem 1.5rem; white-space: nowrap; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink-mute); display: flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "—"; color: var(--accent); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation-duration: 60s; } }

/* --- About --- */
.about-grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 0.4fr 0.6fr; } }
.about-num { font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 6rem); color: var(--accent); line-height: 1; opacity: .85; }
.about-copy p { font-size: 1.12rem; margin-bottom: 1.3rem; color: var(--ink-soft); }
.about-copy p:last-child { margin-bottom: 0; }
.about-stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.2rem; flex-wrap: wrap; }
.about-stat { border-left: 2px solid var(--accent); padding-left: 1rem; }
.about-stat strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.about-stat span { font-size: .85rem; color: var(--ink-mute); }

/* --- Approach cards --- */
.approach-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.approach-card { padding: 2.1rem 1.8rem; position: relative; overflow: hidden; }
.approach-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  transition: background .4s var(--ease-out), transform .4s var(--ease-out);
}
.approach-card:hover .approach-icon { background: var(--accent); transform: rotate(-6deg) scale(1.05); }
.approach-icon svg { width: 24px; height: 24px; stroke: var(--accent-ink); fill: none; stroke-width: 1.6; transition: stroke .4s var(--ease-out); }
.approach-card:hover .approach-icon svg { stroke: var(--paper); }
.approach-card h3 { font-size: 1.28rem; margin-bottom: .6rem; }
.approach-card p { color: var(--ink-mute); font-size: .98rem; }

/* --- Rental options --- */
.options-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.option-card { padding: 2.4rem 2rem; }
.option-tag {
  display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--bg-2); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.option-card h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.option-card p { color: var(--ink-mute); }
.options-note {
  margin-top: 2.4rem; padding: 1.3rem 1.6rem; border-radius: var(--radius-sm);
  background: var(--bg-2); border-left: 3px solid var(--accent); font-size: .95rem; color: var(--ink-soft);
}

/* --- Why section --- */
.why-wrap { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .why-wrap { grid-template-columns: 0.45fr 0.55fr; } }
.why-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--accent-2) 0%, #7A5F34 100%);
  min-height: 320px;
  padding: 2.5rem;
  color: var(--bg);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,244,236,0.14), transparent 70%);
}
.why-visual .why-quote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.35; }
.why-visual .why-sign { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin-top: 1.5rem; }
.why-list { display: grid; gap: 1.1rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem; border-radius: var(--radius-sm);
  background: var(--paper); border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.why-item .why-check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: .1rem;
}
.why-item .why-check svg { width: 13px; height: 13px; stroke: var(--accent-ink); fill: none; stroke-width: 2.4; }
.why-item strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: .2rem; }
.why-item span { color: var(--ink-mute); font-size: .92rem; }

/* --- Residents split --- */
.residents-split { display: grid; gap: 1.4rem; }
@media (min-width: 780px) { .residents-split { grid-template-columns: 1fr 1fr; } }
.resident-panel {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}
.resident-panel.dark { background: var(--ink); color: var(--bg-2); }
.resident-panel.dark h3, .resident-panel.dark p { color: var(--bg-2); }
.resident-panel.light { background: var(--paper); border: 1px solid var(--line-soft); }
.resident-panel h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.resident-panel p { color: var(--ink-mute); margin-bottom: 1.6rem; }
.resident-panel.dark p { opacity: .8; }
.resident-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.resident-panel.dark .btn-ghost { border-color: rgba(237,230,214,0.3); color: var(--bg-2); }
.resident-panel.dark .btn-ghost:hover { border-color: var(--bg-2); }
.resident-panel.dark .btn-primary { background: var(--bg-2); color: var(--ink); }

/* --- Contact --- */
.contact-wrap { display: grid; gap: clamp(2.5rem, 6vw, 4rem); }
@media (min-width: 960px) { .contact-wrap { grid-template-columns: 0.42fr 0.58fr; } }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 1.2rem; }
.contact-info > p { color: var(--ink-mute); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.3rem; }
.contact-detail .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail .ic svg { width: 17px; height: 17px; stroke: var(--accent-ink); fill: none; stroke-width: 1.7; }
.contact-detail strong { display: block; color: var(--ink); }
.contact-detail span, .contact-detail a { color: var(--ink-mute); font-size: .95rem; }
.contact-detail a:hover { color: var(--accent-ink); }

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 620px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(62,92,118,0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.form-note { font-size: .82rem; color: var(--ink-mute); }
.form-success {
  display: none; align-items: center; gap: .7rem; padding: 1rem 1.2rem;
  background: var(--bg-2); border-radius: var(--radius-sm); color: var(--ink-soft); font-size: .92rem; margin-top: 1.2rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 18px; height: 18px; stroke: var(--accent-2); fill: none; stroke-width: 2; flex-shrink: 0; }

.form-error {
  display: none; align-items: center; gap: .7rem; padding: 1rem 1.2rem;
  background: #FBEAEA; border-radius: var(--radius-sm); color: #7A2E2E; font-size: .92rem; margin-top: 1.2rem;
}
.form-error.is-visible { display: flex; }
.form-error svg { width: 18px; height: 18px; stroke: #B34444; fill: none; stroke-width: 1.8; flex-shrink: 0; }

.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }

.btn-primary[disabled] { opacity: .65; cursor: default; pointer-events: none; }

/* --- FAQ --- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
}
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0; position: relative; transition: transform .4s var(--ease-out), border-color .4s var(--ease-out); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--ink); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .plus::before { width: 10px; height: 1.4px; }
.faq-q .plus::after { width: 1.4px; height: 10px; transition: opacity .3s var(--ease-out); }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); border-color: var(--accent); }
.faq-item.is-open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.faq-a-inner { padding-bottom: 1.6rem; color: var(--ink-mute); max-width: 62ch; }

/* --- Final CTA --- */
.final-cta {
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--ink) 0%, #1C2A36 100%);
  color: var(--bg);
  padding: clamp(3rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(62,92,118,0.30), transparent 70%);
}
.final-cta h2 { color: var(--bg); font-size: clamp(2rem, 4.5vw, 3rem); position: relative; }
.final-cta p { color: var(--bg-2); opacity: .82; max-width: 50ch; margin: 1.1rem auto 2rem; position: relative; }
.final-cta .btn-primary { background: var(--accent); color: #fff; position: relative; }
.final-cta .btn-primary:hover { background: var(--bg); color: var(--ink); }

/* --- Footer --- */
.footer { padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: .9rem; }
.footer-brand p { color: var(--ink-mute); font-size: .92rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a, .footer-col span { color: var(--ink-mute); font-size: .93rem; }
.footer-col a:hover { color: var(--accent-ink); }

.footer-tech {
  padding-top: 1.6rem;
  margin-top: .5rem;
  border-top: 1px solid var(--line-soft);
  max-width: 52ch;
}
.footer-tech strong {
  display: block;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-mute);
  margin-bottom: .4rem;
}
.footer-tech p {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--ink-mute);
  opacity: .85;
  margin-bottom: .5rem;
}
.footer-tech a {
  display: inline-flex;
  align-items: center;
  gap: .3em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent-ink);
}
.footer-tech a:hover { text-decoration: underline; }
.footer-tech a span { transition: transform .3s var(--ease-out); display: inline-block; }
.footer-tech a:hover span { transform: translateX(3px); }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  font-size: .82rem; color: var(--ink-mute);
}
.footer-eho { display: flex; align-items: center; gap: .6rem; }
.footer-eho svg { width: 18px; height: 18px; stroke: var(--ink-mute); fill: none; stroke-width: 1.6; }

/* =============================================================
   7. Effects
   ============================================================= */
.tilt-hover { transition: transform .5s var(--ease-out); }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (max-width: 480px) {
  /* Long button labels: allow wrap as a safety net, shrink slightly so
     they still usually fit on one line on most phones (iPhone SE and up). */
  .btn {
    font-size: .86rem;
    padding: .9rem 1.4rem;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
  /* final-cta had its own large padding stacked on top of .container's
     padding, leaving too little width for the button on narrow phones. */
  .final-cta { padding: 2.5rem 1.25rem; }
  /* Nav brand ("ComfortKey Rentals" + icon) vs. the menu toggle button —
     tighten so both fit without forcing horizontal overflow on the page. */
  .nav-inner { gap: .75rem; }
  .brand { font-size: 1rem; gap: .45rem; }
  .brand-mark { height: 26px; }

  /* Hero had too much top/bottom padding and a square (very tall) photo,
     pushing the image far below the fold. Tighten the whole block. */
  .hero { padding: 6rem 0 2.5rem; }
  .hero-kicker { margin-bottom: 1.1rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero .lede { margin-bottom: 1.4rem; }
  .hero-actions { margin-bottom: 1.4rem; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .hero-badge { padding: .75rem .9rem; gap: .6rem; }
  .hero-badge-text strong { font-size: .84rem; }
}
@media (max-width: 959px) {
  /* Show the photo before the text block on phones/tablets, without
     changing the underlying HTML/reading order (accessibility-friendly). */
  .hero-visual { order: -1; margin-bottom: .5rem; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}
@media (min-width: 960px) {
  .section { padding: clamp(5rem, 10vw, 9rem) 0; }
}
@media (min-width: 1800px) {
  /* Extra-large / 32"+ monitors: widen the content column further so
     the layout doesn't feel like a narrow strip on a huge screen. */
  :root { --container: 1520px; }
}

/* =============================================================
   9. Reduced motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
