/* =============================================
   NewHomeSammy.com — Global Stylesheet
   Brand: Navy #1B3A6B · Red #C8102E · Cream #F5F0E8
   Type: Playfair Display (display) + Lato (body)
   ============================================= */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Design Tokens --- */
:root {
  --navy:       #1B3A6B;
  --navy-mid:   #2a4f8f;
  --red:        #C8102E;
  --red-dark:   #a50d24;
  --white:      #FFFFFF;
  --cream:      #F5F0E8;
  --cream-dark: #EAE4D8;
  --charcoal:   #2C2C2A;
  --muted:      #6B6B69;
  --gold:       #E8A0A8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --shadow-sm: 0 2px 12px rgba(27,58,107,0.08);
  --shadow-md: 0 4px 24px rgba(27,58,107,0.12);
  --shadow-lg: 0 8px 40px rgba(27,58,107,0.18);

  --radius:    8px;
  --radius-lg: 16px;
  --max-w:     1200px;
  --nav-h:     72px;
}

/* --- Base Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p  { line-height: 1.75; color: var(--muted); }

/* --- Layout Utilities --- */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section      { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.75); }
.text-center  { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn--red  { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--navy { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--outline-white:hover { background: var(--white); color: var(--navy); }
.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav__brand em { color: var(--gold); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  z-index: 199;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ================================================
   HERO — Signature split-headline design
   ================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Emerald Coast gradient: deep navy → coastal teal */
  background: linear-gradient(155deg,
    #0C1F3F 0%,
    #1B3A6B 30%,
    #1A5F7A 60%,
    #2A8FA8 80%,
    #3DB5CC 100%
  );
}
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__photo[data-src] { /* JS lazy-loads when real photo added */ }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,31,63,0.94) 0%,
    rgba(27,58,107,0.80) 45%,
    rgba(27,58,107,0.30) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px;
}
.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.hero__headline {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 700px;
}
/* Split: italic small line + big bold line */
.hero__line1 {
  display: block;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.78;
  margin-bottom: 6px;
}
.hero__line2 {
  display: block;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================================================
   CREDIBILITY BAR
   ================================================ */
.cred-bar {
  background: var(--charcoal);
  padding: 14px 24px;
}
.cred-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 28px;
}
.cred-bar__item {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.cred-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.6;
}

/* ================================================
   WHY NEW CONSTRUCTION
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 52px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
  transition: box-shadow 0.25s, transform 0.25s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card__icon { font-size: 2rem; margin-bottom: 16px; }
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card__text { font-size: 0.88rem; line-height: 1.65; }

/* ================================================
   CITY TILES
   ================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.city-tile {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
}
.city-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.city-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.city-tile:hover .city-tile__bg { transform: scale(1.05); }
.city-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(27,58,107,0.92) 0%,
    rgba(27,58,107,0.45) 50%,
    rgba(27,58,107,0.10) 100%
  );
}
.city-tile__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px;
}
.city-tile__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 3px;
}
.city-tile__sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.city-tile__arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
}
.city-tile:hover .city-tile__arrow { opacity: 1; }

/* City gradient placeholders */
.city-tile--freeport .city-tile__bg  { background: linear-gradient(135deg,#0D2D5E,#1E7A9C,#4EBACF); }
.city-tile--chipley .city-tile__bg   { background: linear-gradient(135deg,#1a3a16,#2D6A28,#56A04E); }
.city-tile--srb .city-tile__bg       { background: linear-gradient(135deg,#5C3D10,#C8913A,#E8C478); }
.city-tile--destin .city-tile__bg    { background: linear-gradient(135deg,#0A3547,#1479A0,#2ABBD8); }
.city-tile--pcb .city-tile__bg       { background: linear-gradient(135deg,#0A3848,#1280A2,#1FC8E8); }
.city-tile--miramar .city-tile__bg   { background: linear-gradient(135deg,#132B4E,#2260A0,#4098D8); }

/* ================================================
   HOME OF THE WEEK
   ================================================ */
.hotw-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 52px auto 0;
}
.hotw-card__img {
  min-height: 340px;
  position: relative;
  background: linear-gradient(135deg,#1B3A6B,#2A8FA8,#4EBACF);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotw-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotw-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
}
.hotw-img-placeholder {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}
.hotw-card__info {
  background: var(--navy);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.hotw-card__community {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hotw-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1.15;
}
.hotw-card__specs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hotw-spec__val { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.hotw-spec__label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hotw-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.hotw-card__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ================================================
   ABOUT TEASER
   ================================================ */
.about-teaser__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 20px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  margin: 20px 0 28px;
}
.about-text p { margin-bottom: 14px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 52px;
}
.t-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.1);
}
.t-card__stars {
  color: #FFD700;
  letter-spacing: 3px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.t-card__text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
}
.t-card__name { font-weight: 700; color: var(--white); font-size: 0.88rem; }
.t-card__role {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 3px;
}
.t-card--placeholder {
  border-style: dashed;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 200px;
}
.t-card--placeholder p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.t-review-cta {
  text-align: center;
  margin-top: 40px;
}
.t-review-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.t-review-link:hover { color: var(--white); }

/* ================================================
   LEAD MAGNET / GATED FORMS
   ================================================ */
.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lm-book {
  aspect-ratio: 3/4;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.lm-book__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}
.lm-book__sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.lm-book__icon { font-size: 3rem; margin-bottom: 24px; }

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--navy);
}
.lead-form input::placeholder { color: #aaa; }
.lead-form__privacy {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.lead-form .btn { width: 100%; }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
}
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.35;
}
.faq-q__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-item.open .faq-q__icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a__inner {
  padding: 0 0 22px 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb {
  background: var(--cream);
  padding: 14px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb__inner a { color: var(--navy); transition: color 0.2s; }
.breadcrumb__inner a:hover { color: var(--red); }
.breadcrumb__sep { color: var(--cream-dark); }
.breadcrumb__current { color: var(--charcoal); font-weight: 600; }

/* ================================================
   AVAILABILITY TABLE (Community Pages)
   ================================================ */
.avail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.9rem;
}
.avail-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.avail-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--charcoal);
}
.avail-table tr:hover td { background: rgba(245,240,232,0.5); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-badge--ready   { background: #D4EDDA; color: #1A6B30; }
.status-badge--build   { background: #FFF3CD; color: #856404; }
.status-badge--presale { background: #D1ECF1; color: #0C5460; }

/* ================================================
   COMMUNITY TILES (City Pages)
   ================================================ */
.comm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.comm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
  display: block;
}
.comm-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.comm-card__img {
  height: 180px;
  background: linear-gradient(135deg,#1B3A6B,#4EBACF);
  position: relative;
  overflow: hidden;
}
.comm-card__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.comm-card__body { padding: 24px 22px; }
.comm-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.comm-card__desc { font-size: 0.85rem; margin-bottom: 16px; line-height: 1.6; }
.comm-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.comm-card:hover .comm-card__link { gap: 8px; }

/* ================================================
   CONTACT FORM (Full)
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info__icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-info__val { font-size: 1rem; color: var(--charcoal); font-weight: 600; }
.contact-info__val a { color: var(--navy); }
.contact-info__val a:hover { color: var(--red); }
.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus { outline: none; border-color: var(--navy); }
.contact-form-full input::placeholder,
.contact-form-full textarea::placeholder { color: #aaa; }
.contact-form-full textarea { resize: vertical; min-height: 120px; }
.contact-form-full .btn { align-self: flex-start; }

/* ================================================
   RESOURCES PAGE
   ================================================ */
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-dark);
}
.resource-card__top {
  background: var(--navy);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resource-card__icon { font-size: 2.2rem; }
.resource-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  line-height: 1.25;
}
.resource-card__sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.resource-card__form { padding: 28px 32px; display: flex; flex-direction: column; gap: 12px; }
.resource-card__form input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
}
.resource-card__form input:focus { outline: none; border-color: var(--navy); }
.resource-card__form input::placeholder { color: #aaa; }
.resource-card__form .btn { width: 100%; margin-top: 4px; }
.resource-card__privacy {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
}

/* ================================================
   FLOATING TEXT BUTTON
   ================================================ */
.text-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
}
.text-float__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 22px rgba(200,16,46,0.4);
  transition: all 0.2s;
  white-space: nowrap;
}
.text-float__btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,16,46,0.5);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--charcoal);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 240px;
}
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.2s;
}
.footer__social:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.footer__contact-line a { color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer__contact-line a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  max-width: 580px;
}
.eho-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.eho-logo {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.48rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.25;
  padding: 4px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eho-text {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  max-width: 120px;
  line-height: 1.5;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  .cities-grid         { grid-template-columns: repeat(2, 1fr); }
  .hotw-card           { grid-template-columns: 1fr; }
  .hotw-card__img      { min-height: 260px; }
  .about-teaser__inner { grid-template-columns: 1fr; gap: 36px; }
  .about-photo         { aspect-ratio: 1/1; max-width: 260px; }
  .lead-magnet__inner  { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav__links, .nav__cta-wrap { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 56px 0; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .city-tile { aspect-ratio: 3/4; }
  .city-tile__name { font-size: 1.1rem; }
  .hero__content { padding: 80px 20px; }
  .hero__ctas { flex-direction: column; }
  .hotw-card__info { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .cred-bar__dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
