/* ══════════════════════════════════════════════════
   Lisa M. Lum — Site CSS
   Extracted from mockup-homepage.html
   ══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black: #0a0a0a;
  --deep-navy: #092B4A;
  --royal-navy: #012169;
  --cobalt: #004AAD;
  --sky-blue: #418FDE;
  --mauve: #9E776D;
  --mauve-light: #f3eeec;
  --cream: #FDFAF6;
  --warm-white: #FAF8F5;
  --off-white: #F5F2EE;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-muted: #999;
  --border: #e8e4df;
  --border-light: #f0ece8;
  --gold: #C5A572;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ── Scheinfeld-inspired subpage overrides ── */
.page-hero h1,
.community-hero-content h1,
.legal-page h1,
.investors-page h1,
.communities-page h1 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 400;
}
.page-hero .intro-label,
.legal-page .intro-label,
.investors-page .intro-label,
.communities-page .intro-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-body h2,
.legal-page h2,
.investors-page h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: 400;
}
.page-body h3,
.legal-page h3,
.investors-page h3,
.investor-service h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 500;
}
.page-cta h2 {
  text-transform: uppercase;
  letter-spacing: 4px;
}
.page-cta a,
.community-search-cta a,
.investors-cta a {
  letter-spacing: 3px;
  transition: all 0.2s;
}
.community-body h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
}
.community-highlight h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 500;
}
.community-search-cta h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 18px;
}
/* Blog card titles on landing and blog index */
.blog-card-title {
  letter-spacing: 0.3px;
}
.blog-card-date {
  letter-spacing: 2px;
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation — transparent over hero, solid on scroll ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(0,0,0,0.06);
  box-shadow: 0 1px 20px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  transition: opacity 0.4s;
}
.nav-logo-img.gold {
  display: block;
  mix-blend-mode: screen;
}
.nav-logo-img.black { display: none; }
.nav.scrolled .nav-logo-img.gold { display: none; }
.nav.scrolled .nav-logo-img.black { display: block; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #fff;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo-name { color: var(--black); }
.nav-logo-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mauve);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--black); }
.nav-contact {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: all 0.3s;
}
.nav-contact:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.nav.scrolled .nav-contact {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}
.nav.scrolled .nav-contact:hover {
  background: var(--black);
  color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 85vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.7) 100%),
    url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
}
.btn-hero {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-light {
  background: #fff;
  color: var(--black);
}
.btn-light:hover {
  background: var(--cream);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}

/* ── Intro / Value Prop ── */
.intro {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.intro-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 24px;
}
.intro h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.intro-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
}
.intro-body p + p {
  margin-top: 20px;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.intro-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.intro-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ── Services ── */
.services {
  padding: 0 60px 120px;
  max-width: 1400px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header .intro-label { margin-bottom: 16px; }
.services-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: #fff;
  padding: 56px 40px;
  transition: background 0.4s;
}
.service-card:hover {
  background: var(--warm-white);
}
.service-num {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.service-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }
.service-link .arrow {
  width: 24px;
  height: 1px;
  background: var(--black);
  position: relative;
  transition: width 0.3s;
}
.service-link:hover .arrow { width: 32px; }
.service-link .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: rotate(45deg);
}

/* ── Communities ── */
.communities {
  background: var(--black);
  padding: 120px 60px;
}
.communities-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.communities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.communities-header .intro-label {
  color: var(--mauve);
  margin-bottom: 16px;
}
.communities-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.3px;
}
.communities-view-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.communities-view-all:hover { color: #fff; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.community-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  transition: transform 0.6s;
}
.community-card:hover {
  transform: scale(1.01);
}
.community-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  transition: opacity 0.4s;
}
.community-card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.5) 100%);
}
.community-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}
.community-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.community-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

/* ── About ── */
.about {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  height: 520px;
  background-image: url('../images/lisa-headshot.png');
  background-size: cover;
  background-position: center top;
}
.about-content .intro-label { margin-bottom: 24px; }
.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 32px;
}
.about-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-languages {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.lang {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}
.lang:hover {
  border-color: var(--mauve);
  color: var(--mauve);
}
.btn-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-text .line {
  width: 32px;
  height: 1px;
  background: var(--black);
}

/* ── Testimonials ── */
.testimonials {
  background: var(--off-white);
  padding: 120px 60px;
}
.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.3px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: #fff;
  padding: 48px 36px;
  border: 1px solid rgba(0,0,0,0.04);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--mauve);
  line-height: 1;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.testimonial-line {
  width: 32px;
  height: 1px;
  background: var(--mauve);
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.3px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ── Blog ── */
.blog {
  padding: 120px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.blog-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.3px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card-img {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  overflow: hidden;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.02);
}
.blog-card-date {
  font-size: 11px;
  font-weight: 500;
  color: var(--mauve);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--mauve); }
.blog-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA ── */
.cta {
  background: var(--deep-navy);
  padding: 120px 60px;
  text-align: center;
}
.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta .intro-label {
  color: var(--mauve);
  margin-bottom: 24px;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.cta p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 48px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta-light {
  background: #fff;
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-cta-light:hover { background: var(--cream); }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ── Footer ── */
.footer {
  background: var(--black);
  padding: 80px 60px 40px;
  color: rgba(255,255,255,0.4);
  overflow-x: hidden;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-width: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr repeat(3, minmax(0, 1fr));
  gap: 60px;
  padding-bottom: 60px;
}
.footer-col { min-width: 0; }
.footer-col a, .footer-legal, .footer-brand p { word-wrap: break-word; overflow-wrap: break-word; }
.footer-brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 16px;
}
.footer-phone a {
  font-size: 18px;
  font-weight: 500;
  color: #fff !important;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
}
.footer-brand a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-brand a:hover { color: #fff; }
.footer-languages {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-lang {
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-cb-logo {
  height: 180px;
  margin-top: 24px;
  opacity: 0.8;
  display: block;
  margin-left: auto;
}
.footer-newsletter {
  margin-top: 28px;
}
.footer-newsletter h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.footer-newsletter .newsletter-form-wrap {
  max-width: 320px;
}
.footer-newsletter .newsletter-form input[type="email"] {
  padding: 12px 16px;
  font-size: 12px;
}
.footer-newsletter .newsletter-form button {
  padding: 12px 18px;
  font-size: 9px;
}
.footer-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.footer-col-right ul { text-align: right; }
.footer-cb-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.footer-disclaimer {
  padding-top: 24px;
  margin-top: 24px;
}
.footer-disclaimer p {
  font-size: 10px;
  line-height: 1.8;
  color: rgba(255,255,255,0.25);
}
.footer-bottom {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 11px;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ── Newsletter signup (optional component) ── */
.newsletter-section {
  background: var(--black);
  padding: 28px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.newsletter-inner h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  letter-spacing: 0.5px;
}
.newsletter-inner p {
  display: none;
}
.newsletter-text { flex-shrink: 0; }
@keyframes newsletter-glow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.newsletter-form-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(90deg, #C5A572, #E8D5B7, #DAA520, #F5E6C8, #C5A572, #DAA520, #E8D5B7);
  background-size: 400% 100%;
  animation: newsletter-glow 3s ease infinite;
}
.newsletter-form-wrap:hover,
.newsletter-form-wrap:focus-within {
  animation-duration: 2s;
}
.newsletter-form {
  display: flex;
  gap: 0;
  width: 100%;
  background: var(--black);
  border-radius: 6px;
  overflow: hidden;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 13px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  transition: all 0.3s;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.25);
}
.newsletter-form button {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
  .services { padding: 0 40px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 48px; padding: 80px 40px; }
  .about-image { max-width: 400px; height: 420px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2.5fr repeat(3, minmax(0, 1fr)); gap: 32px; }
  .hero-content { padding: 0 40px 60px; }
  .hero { height: 75vh; min-height: 560px; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .hero { height: 70vh; min-height: 480px; }
  .hero-content { padding: 0 24px 48px; }
  .hero-ctas { flex-direction: column; }
  .btn-hero { text-align: center; }
  .intro, .services, .about, .blog { padding-left: 24px; padding-right: 24px; }
  .communities, .testimonials, .cta, .footer { padding-left: 24px; padding-right: 24px; }
  .intro-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .community-grid { grid-template-columns: 1fr; }
  .community-card { height: 240px; }
  .communities-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-image { height: 360px; }
  .about-languages { flex-wrap: wrap; }
  .blog-card-img { height: 200px; }
  .newsletter-section { padding: 24px; }
  .newsletter-form-wrap { max-width: 100%; }
}
