/* ============================================================
   NICO GUILLEN — Sarasota & Manatee Real Estate
   Luxury Presence look: pure black, thin white serif display,
   bold letterspaced sans labels, white rectangular buttons.
   Modeled section-by-section on tylerhahne.com / adnandedic.com
   ============================================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --grey-card: #d8d4cf;     /* Tyler's portfolio card body */
  --grey-text: #6b665f;     /* muted brown-grey serif on grey cards */
  --soft: #cfcbc4;          /* soft warm grey accents on black */
  --line: rgba(255, 255, 255, 0.18);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
  /* legacy aliases used by inner pages */
  --ink: #000000;
  --ink-2: #0a0a0a;
  --ink-3: #121212;
  --cream: #ffffff;
  --cream-dim: #cfcbc4;
  --gold: #cfcbc4;
  --gold-bright: #ffffff;
  --tracking: 0.22em;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

/* Big LP-style section header: thin serif, sentence-width, left aligned */
.section-title {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 1rem;
  display: block;
}

.lede { color: rgba(255,255,255,0.85); max-width: 68ch; }

.center { text-align: center; }

/* header row with PREVIOUS | NEXT on the right (portfolio style) */
.title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pn-links {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
}

.pn-links button {
  background: none;
  border: none;
  color: var(--white);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
}

.pn-links button:hover { text-decoration: underline; text-underline-offset: 5px; }

.pn-links .sep { color: rgba(255,255,255,0.4); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  text-align: center;
}

.btn:hover { background: var(--white); color: var(--black); }

.btn.solid { background: var(--white); color: var(--black); }
.btn.solid:hover { background: transparent; color: var(--white); }

.btn.dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn.dark:hover { background: #222; }

/* underlined text link, like Tyler's HOME VALUATION in the hero */
.link-underline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--white);
  padding-bottom: 3px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 0.9rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Monogram + name lockup, like Adnan's AD mark */
.brand { display: flex; align-items: center; gap: 0.9rem; }

.brand .monogram {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.monogram-img { height: 46px; width: auto; display: block; }
.site-header.scrolled .monogram-img { height: 38px; }

.brand .brand-name {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

.nav-phone { border-bottom: 1px solid var(--white); padding-bottom: 2px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 1100px) {
  .site-header { padding: 1.1rem 1.4rem; }
  .site-header.scrolled { padding: 0.8rem 1.4rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: rgba(0, 0, 0, 0.97);
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; font-family: var(--serif); font-weight: 400; letter-spacing: 0.2em; font-size: 1.3rem; }
}

/* ---------- Floating LET'S CONNECT pill (Adnan) ---------- */

.connect-pill {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: #0a0a0a;
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 0.8rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.6);
  white-space: nowrap;
}

.connect-pill:hover { background: var(--white); color: var(--black); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.55) 100%);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1.4rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero-tagline {
  max-width: 54rem;
  margin-top: 0.9rem;
  font-size: 0.92rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero .link-underline { margin-top: 2rem; }

.hero.short { min-height: 58vh; padding-top: 9rem; }
.hero.short h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }

/* ---------- Hero search bar (Tyler) ---------- */

.hero-search { margin-top: 2.6rem; width: min(640px, 92vw); text-align: left; }

.search-tabs { display: flex; }

.search-tabs button {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.55rem 1.6rem;
  border: none;
  cursor: pointer;
  background: var(--black);
  color: var(--white);
}

.search-tabs button.on { background: var(--white); color: var(--black); }

.search-row { display: flex; }

.search-row input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 1rem 1.2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: var(--white);
  color: #222;
}

.search-row input:focus { outline: none; }

.search-row .btn { border: none; background: var(--white); color: var(--black); border-left: 1px solid #ddd; }
.search-row .btn:hover { background: #eee; }

@media (max-width: 560px) {
  .search-row { flex-direction: column; }
  .search-row .btn { border-left: none; border-top: 1px solid #ddd; }
}

/* ---------- Sections ---------- */

section { padding: 6rem 2.5rem; }
@media (max-width: 780px) { section { padding: 4.2rem 1.3rem; } }

.container { max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 880px; }

/* ---------- BUY / SELL / NEW CONSTRUCTION photo cards (Tyler) ---------- */

.mode-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

@media (max-width: 820px) { .mode-cards { grid-template-columns: 1fr; max-width: 480px; } }

.mode-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mode-card .tile-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.mode-card:hover .tile-bg { transform: scale(1.07); }

.mode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.28);
  transition: background 0.4s ease;
}

.mode-card:hover::after { background: rgba(0,0,0,0.1); }

.mode-card span {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
}

/* ---------- Meet section (Adnan: big photo, then text) ---------- */

.bio-photo {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  aspect-ratio: 16 / 10;
  background: #101010 center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.bio-copy { max-width: 1100px; margin: 0 auto; }

.bio-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.bio-copy p { margin-bottom: 1.4rem; color: rgba(255,255,255,0.88); }

.check-list { list-style: none; margin: 2rem 0 2.4rem; }

.check-list li { padding: 0.45rem 0; font-size: 0.92rem; }

.check-list li::before { content: "✓"; margin-right: 0.9rem; }

.check-list strong { font-weight: 700; }

/* ---------- Valuation band (both sites) ---------- */

.val-band {
  position: relative;
  isolation: isolate;
  padding: 9rem 2.5rem;
  background-size: cover;
  background-position: center;
}

.val-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
}

.val-band .section-title { text-shadow: 0 2px 24px rgba(0,0,0,0.5); }

.val-checks {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin: 1.4rem 0 2.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.val-checks span::before { content: "✓"; margin-right: 0.6rem; }

/* white address bar */
.addr-bar {
  display: flex;
  align-items: stretch;
  background: var(--white);
  max-width: 900px;
}

.addr-bar .pin {
  display: flex;
  align-items: center;
  padding: 0 0.4rem 0 1.3rem;
  color: #111;
  font-size: 1.1rem;
}

.addr-bar input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 1.25rem 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: #222;
}

.addr-bar input:focus { outline: none; }

.addr-bar .btn { align-self: center; margin-right: 0.55rem; padding: 0.95rem 2rem; white-space: nowrap; }

@media (max-width: 640px) {
  .addr-bar { flex-direction: column; padding: 1rem; gap: 0.8rem; }
  .addr-bar .pin { display: none; }
  .addr-bar .btn { align-self: stretch; margin: 0; }
}

/* ---------- Video feature ---------- */

.video-band { text-align: center; }

.video-band .section-title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }

.social-row { display: flex; justify-content: center; gap: 0.9rem; margin: 1.8rem 0 2.4rem; }

.social-row a {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.social-row a:hover { background: var(--white); color: var(--black); }

.video-frame {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #0d0d0d center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.play-btn:hover { transform: scale(1.08); background: var(--white); color: var(--black); }

/* ---------- Service area map (split with neighborhood tiles, Adnan-style) ---------- */

.map-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1.3rem;
  align-items: stretch;
}

.hood-stack { display: flex; flex-direction: column; gap: 1.3rem; }

.hood-stack .hood-tile { flex: 1; aspect-ratio: auto; min-height: 110px; }

#service-map {
  height: 100%;
  min-height: 620px;
  width: 100%;
  background: #e8e8e8;
  /* OSM tiles are colorful; this filter gives the grayscale Luxury Presence look */
  filter: grayscale(1) contrast(0.88) brightness(1.06);
}

@media (max-width: 900px) {
  .map-split { grid-template-columns: 1fr; }
  .hood-stack .hood-tile { min-height: 90px; }
  #service-map { min-height: 400px; height: 400px; }
}

#service-map a { color: #333; }

.map-tip {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 0.45rem 0.9rem;
}

.map-tip::before { display: none; }

/* ---------- Press band (white "As Seen On" strip, Adnan-style) ---------- */

.press-band {
  background: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.press-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b665f;
  margin-bottom: 2rem;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.5rem;
  flex-wrap: wrap;
}

.press-logos img { height: 58px; width: auto; }

@media (max-width: 560px) { .press-logos { gap: 2.5rem; } .press-logos img { height: 42px; } }

/* ---------- Portfolio cards (Tyler: banner strip + grey body) ---------- */

.carousel-wrap { max-width: 1200px; margin: 0 auto; }

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.carousel::-webkit-scrollbar { display: none; }

.listing-card {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  background: var(--grey-card);
}

.grid .listing-card { flex: none; }

.listing-media { position: relative; overflow: hidden; }

.listing-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.listing-card:hover .listing-media img { transform: scale(1.05); }

/* status banner block across the top of the photo */
.status-banner {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 55%;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 0.55rem 1.2rem;
}

.listing-body { padding: 1.7rem 1.4rem 1.9rem; text-align: center; }

.listing-body h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-text);
}

.listing-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3a372f;
  margin: 0.7rem 0 0.5rem;
  line-height: 1.9;
}

.listing-price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #26241f;
}

.listing-view {
  margin-top: 0.9rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #26241f;
  border-bottom: 1px solid #26241f;
  display: inline-block;
  padding-bottom: 2px;
}

a.listing-card { display: block; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* ---------- Stats band (Adnan: stacked over photo) ---------- */

.stats-band {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 7rem 1.5rem;
  background-size: cover;
  background-position: center;
}

.stats-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.35);
}

.stats-band h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.stat-stack { display: flex; flex-direction: column; gap: 2.8rem; }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  line-height: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.7rem;
}

/* ---------- Neighborhood guide bars (Adnan) ---------- */

.hood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 780px) { .hood-grid { grid-template-columns: 1fr; } }

.hood-tile {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 4.2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hood-tile .tile-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.hood-tile:hover .tile-bg { transform: scale(1.06); }

.hood-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.38);
  transition: background 0.4s ease;
}

.hood-tile:hover::after { background: rgba(0,0,0,0.15); }

.hood-tile h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}

/* ---------- Testimonial (Tyler: black card over photo) ---------- */

.testi-band {
  position: relative;
  isolation: isolate;
  padding: 7rem 1.5rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.testi-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.45);
}

.testi-card {
  background: var(--black);
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 3rem 3rem;
}

@media (max-width: 640px) { .testi-card { padding: 2.5rem 1.4rem 2rem; } }

.testi-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6rem auto 1.8rem;
  overflow: hidden;
}

.testi-badge img { width: 68%; height: auto; }

.testi-stars {
  color: #e7c15f;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.testi-quote { font-size: 0.95rem; line-height: 2; color: rgba(255,255,255,0.92); }

.testi-arrows { display: flex; justify-content: center; gap: 0.8rem; margin-top: 2.2rem; }

.testi-arrows button {
  width: 2.9rem;
  height: 2.9rem;
  background: var(--black);
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
}

.testi-arrows button:hover { background: var(--white); color: var(--black); }

/* ---------- Forms ---------- */

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  max-width: 780px;
  margin: 2.5rem auto 0;
  text-align: left;
}

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

@media (max-width: 640px) { .lead-form { grid-template-columns: 1fr; } }

.lead-form label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.5rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.7rem 0.1rem;
  transition: border-color 0.3s ease;
}

.lead-form select option { background: #111; color: var(--white); }

.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-bottom-color: var(--white);
}

.form-consent { font-size: 0.68rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ---------- Work-with band ---------- */

.work-band {
  position: relative;
  isolation: isolate;
  padding: 9rem 2rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.work-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.5);
}

.work-band .section-title { margin-bottom: 1.6rem; }

.work-band p { max-width: 62ch; margin: 0 auto 2.6rem; }

/* ---------- Footer (Tyler) ---------- */

.site-footer { background: var(--black); padding: 5rem 2.5rem 6.5rem; border-top: 1px solid rgba(255,255,255,0.08); }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}

.footer-touch {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-item .ci-icon { font-size: 1.15rem; padding-top: 0.15rem; }

.contact-item h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-item a, .contact-item p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.8;
}

.contact-item a { border-bottom: 1px solid rgba(255,255,255,0.5); }

.compass-mark {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  margin-bottom: 2.2rem;
}

.disclaimer {
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  max-width: 1100px;
}

.disclaimer .eho { margin-top: 1.4rem; letter-spacing: 0.08em; }

.footer-nav { display: flex; gap: 1.8rem; flex-wrap: wrap; margin: 2.6rem 0 0; list-style: none; }

.footer-nav a {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.footer-nav a:hover { color: var(--white); }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ---------- Inner-page helpers kept for compatibility ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } }

.portrait-frame { position: relative; }

.portrait-frame img, .portrait-frame .ph { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.cred-list { list-style: none; margin: 1.8rem 0 2.2rem; }

.cred-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
}

.cred-list li::before { content: "✓"; margin-right: 0.9rem; }

.search-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.search-bar select, .search-bar input {
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--sans);
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  min-width: 180px;
}

.fact-row div span { color: var(--white) !important; }

.hero-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1.2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

/* ---------- FAQ accordion ---------- */

.faq-list { max-width: 880px; margin: 2.5rem auto 0; text-align: left; }

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

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

.faq-list summary::after { content: "+"; font-family: var(--sans); font-weight: 400; font-size: 1.4rem; color: var(--soft); }

.faq-list details[open] summary::after { content: "–"; }

.faq-list details p { margin-top: 1rem; font-size: 0.92rem; color: rgba(255,255,255,0.85); max-width: 70ch; }

/* ---------- Social / blog cards ---------- */

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

@media (max-width: 820px) { .social-cards { grid-template-columns: 1fr; max-width: 480px; } }

.social-card {
  border: 1px solid var(--line);
  padding: 2.4rem 1.8rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.social-card:hover { border-color: var(--white); transform: translateY(-4px); }

.social-card .sc-net {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soft);
}

.social-card h3 { font-size: 1.35rem; letter-spacing: 0.05em; margin: 0.9rem 0 0.7rem; }

.social-card p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.social-card .sc-cta {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--white);
  padding-bottom: 3px;
}
