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

:root {
  --green: #3cb371;
  --green-dark: #2a8f57;
  --green-deep: #1a5c38;
  --green-pale: #e8f5ee;
  --green-mid: #c2e8d2;
  --cream: #f9f6f0;
  --warm-white: #fdfcfa;
  --charcoal: #1e2420;
  --stone: #4a5148;
  --mist: #8a9488;
  --border: rgba(60,179,113,0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --nav-h: 72px;
  --max: 1140px;
  --radius: 4px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(253,252,250,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.logo img { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 400; letter-spacing: 0.01em;
  color: var(--stone); text-decoration: none; padding: 0.5rem 0.9rem;
  border-radius: var(--radius); transition: all 0.2s;
}
.nav-links a:hover { color: var(--charcoal); background: var(--green-pale); }
.nav-links .cta {
  background: var(--green); color: white; margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
}
.nav-links .cta:hover { background: var(--green-dark); color: white; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--charcoal); display: block; transition: all 0.3s; }

/* ─── DROPDOWN ─── */
.has-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.chevron { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform 0.2s; }
.has-dropdown.open .chevron { transform: rotate(180deg); }
.dropdown {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0.4rem;
  list-style: none; min-width: 210px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
}
.has-dropdown.open .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 0.6rem 0.9rem;
  font-size: 0.875rem; color: var(--stone);
  border-radius: var(--radius); transition: all 0.15s;
}
.dropdown li a:hover { color: var(--charcoal); background: var(--green-pale); }

/* ─── MOBILE MENU SUB-ITEMS ─── */
.mobile-parent {
  font-size: 0.75rem !important; font-weight: 500 !important;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mist) !important; cursor: default;
  padding-bottom: 0.4rem !important; border-bottom: none !important;
  font-family: var(--font-sans) !important;
}
.mobile-sub {
  font-size: 1rem !important; padding-left: 1.25rem !important;
  color: var(--stone) !important;
}

/* ─── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── SECTIONS ─── */
.section { padding: 6rem 2rem; max-width: var(--max); margin: 0 auto; }
.section-narrow { max-width: 760px; }
.section-wide { max-width: var(--max); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  position: relative; overflow: hidden;
  background-color: var(--charcoal);
  background-image: url("https://img1.wsimg.com/isteam/getty/2157364438/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,m");
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.hero-grid {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--green); }
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.1;
  font-weight: 600; color: white; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.75rem 1.75rem; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s; cursor: pointer; border: none;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 1px solid rgba(30,36,32,0.2);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); }

.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.stat-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.75rem;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateX(-4px); }
.stat-num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600;
  color: var(--charcoal); line-height: 1; margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.85rem; color: var(--mist); font-weight: 400; }
.stat-card.accent { background: var(--green); border-color: var(--green); }
.stat-card.accent .stat-num,
.stat-card.accent .stat-label { color: white; }
.stat-card.accent .stat-label { color: rgba(255,255,255,0.75); }

/* ─── PROBLEM STRIP ─── */
.strip {
  background: var(--charcoal);
  padding: 5rem 2rem;
}
.strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center;
}
.strip h2 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: white; line-height: 1.2; letter-spacing: -0.02em;
}
.strip h2 em { font-style: italic; color: var(--green); }
.strip-text { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.9; }
.strip-text p { margin-bottom: 1rem; }

/* ─── SECTION HEADINGS ─── */
.label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
  display: flex; align-items: center;
}

h2.display {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--charcoal); line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
h2.display em { font-style: italic; color: var(--green-dark); }
.lead {
  font-size: 1.05rem; color: var(--stone); line-height: 1.85; max-width: 600px;
  margin-bottom: 3rem;
}

/* ─── PILLARS ─── */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--green-pale); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--green-mid);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(60,179,113,0.12); }
.pillar-icon {
  width: 44px; height: 44px; background: var(--green);
  border-radius: var(--radius); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon svg { width: 22px; height: 22px; fill: white; }
.pillar h3 {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.6rem;
}
.pillar p { font-size: 0.9rem; color: var(--stone); line-height: 1.75; }

/* ─── WHO WE SERVE ─── */
.serve-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem;
}
.serve-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: border-color 0.2s;
}
.serve-card:hover { border-color: var(--green); }
.serve-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); margin-top: 7px; flex-shrink: 0;
}
.serve-card h4 {
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.25rem;
}
.serve-card p { font-size: 0.85rem; color: var(--mist); }

/* ─── ABOUT PAGE ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-split-text {
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm-white);
}
.about-split-text h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-split-text p {
  font-size: 1.05rem; color: var(--stone); line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-split-text p:last-child { margin-bottom: 0; }
.about-split-text strong { color: var(--charcoal); font-weight: 500; }
.about-split-img {
  background-image: url("https://img1.wsimg.com/isteam/getty/2162423861/:/cr=t:45.36%25,l:0%25,w:49.68%25,h:49.68%25/rs=w:1920,m");
  background-size: cover;
  background-position: center;
  min-height: 500px;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-text { padding: calc(var(--nav-h) + 2.5rem) 2rem 2.5rem; }
  .about-split-img { min-height: 320px; }
}
.team-section {
  padding: 5rem 2rem;
  background: var(--warm-white);
}
.team-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.team-section h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--charcoal); text-align: center;
  margin-bottom: 0.5rem;
}
.team-section .section-sub {
  text-align: center; color: var(--stone); margin-bottom: 3rem; font-size: 1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.4rem; color: white; font-weight: 600;
  flex-shrink: 0;
}
.team-avatar.alt { background: var(--charcoal); }
.team-card h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.2rem; color: var(--charcoal); }
.team-card .team-title { font-size: 0.8rem; color: var(--green); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.team-card ul { list-style: none; padding: 0; margin: 0; }
.team-card ul li { font-size: 0.88rem; color: var(--stone); line-height: 1.6; padding: 0.2rem 0; padding-left: 1rem; position: relative; }
.team-card ul li::before { content: "–"; position: absolute; left: 0; color: var(--green); }
@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: auto 1fr; }
}

/* ─── BLOG PAGE ─── */
.blog-hero {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
}
.blog-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 100%);
}
.blog-hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: calc(var(--nav-h) + 3rem) 2rem 3rem;
}
.blog-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.blog-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; }
.blog-grid-section { padding: 5rem 2rem; max-width: var(--max); margin: 0 auto; }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 3rem;
}
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s; cursor: default;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.blog-card.featured { grid-column: span 2; flex-direction: row; }
.blog-card-img {
  height: 200px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
.blog-card.featured .blog-card-img { width: 420px; height: auto; }
.blog-card-body { padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-tag {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green); background: var(--green-pale); border-radius: 99px;
  padding: 0.25rem 0.75rem; display: inline-block; width: fit-content;
}
.blog-card-title {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.35;
}
.blog-card.featured .blog-card-title { font-size: 1.6rem; }
.blog-card-excerpt { font-size: 0.9rem; color: var(--stone); line-height: 1.75; flex: 1; }
.blog-card-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--mist); margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }
.blog-coming-soon { text-align: center; color: var(--mist); font-size: 0.9rem; }
.blog-coming-soon a { color: var(--green); text-decoration: none; }
.blog-coming-soon a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { flex-direction: column; grid-column: span 1; }
  .blog-card.featured .blog-card-img { width: 100%; height: 200px; }
}

/* ─── MISSION PAGE ─── */
.mission-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.mission-hero-img {
  background-image: url("https://img1.wsimg.com/isteam/ip/e3376d55-62b2-4dbb-b60d-ed7db92a3fb9/create%20image_%20Scandinavian-Inspired%20Homes_Clea.jpg/:/cr=t:5.77%25,l:0%25,w:100%25,h:88.46%25/rs=w:1920,m");
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.mission-hero-text {
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center;
}
.mission-hero-text h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.mission-hero-text h1 em { font-style: italic; color: var(--green); }
.mission-hero-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }
@media (max-width: 900px) {
  .mission-hero-split { grid-template-columns: 1fr; }
  .mission-hero-img { min-height: 280px; order: -1; }
  .mission-hero-text { padding: 3rem 2rem; }
}
.mission-pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.mission-pillar-row.reverse { direction: rtl; }
.mission-pillar-row.reverse > * { direction: ltr; }
.mission-pillar-img {
  background-size: cover;
  background-position: center;
}
.mission-pillar-text {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--warm-white);
}
.mission-pillar-text .label { margin-bottom: 0.75rem; }
.mission-pillar-text h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.mission-pillar-text p {
  font-size: 1rem; color: var(--stone); line-height: 1.85; margin-bottom: 0.75rem;
}
.mission-pillar-text ul {
  margin: 0; padding: 0; list-style: none;
}
.mission-pillar-text ul li {
  font-size: 1rem; color: var(--stone); padding: 0.3rem 0 0.3rem 1.25rem; position: relative; line-height: 1.6;
}
.mission-pillar-text ul li::before { content: "–"; position: absolute; left: 0; color: var(--green); }
@media (max-width: 900px) {
  .mission-pillar-row { grid-template-columns: 1fr; direction: ltr; }
  .mission-pillar-img { min-height: 260px; }
  .mission-pillar-text { padding: 2.5rem 2rem; }
}

.lagom-word {
  max-width: 860px; margin: 0 auto; padding: 5rem 2rem;
  text-align: center;
}
.lagom-word .big {
  font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 600;
  color: var(--green); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 0.5rem;
}
.lagom-word .ipa {
  font-size: 1rem; color: var(--mist); margin-bottom: 2rem;
}
.lagom-word p { font-size: 1.1rem; color: var(--stone); line-height: 1.85; max-width: 640px; margin: 0 auto 1rem; }


/* ─── SIPS PAGE ─── */
.sips-hero-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 580px;
}
.sips-hero-img {
  background-image: url("https://img1.wsimg.com/isteam/ip/e3376d55-62b2-4dbb-b60d-ed7db92a3fb9/Gemini_Generated_Image_arg8idarg8idarg8.png/:/cr=t:11.54%25,l:11.54%25,w:76.92%25,h:76.92%25/rs=w:1160,h:633");
  background-size: cover; background-position: center; min-height: 480px;
}
.sips-hero-text {
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem;
  background: var(--cream); display: flex; flex-direction: column; justify-content: center;
}
.sips-hero-text h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.sips-hero-text p { font-size: 1.05rem; color: var(--stone); line-height: 1.7; margin-bottom: 1.75rem; }
@media (max-width: 900px) {
  .sips-hero-split { grid-template-columns: 1fr; }
  .sips-hero-img { min-height: 280px; }
  .sips-hero-text { padding: 3rem 2rem; }
}
.sips-what-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.sips-what-text {
  padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--warm-white);
}
.sips-what-text h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 1.25rem;
}
.sips-what-text p { font-size: 1rem; color: var(--stone); line-height: 1.85; margin-bottom: 1rem; }
.sips-what-img {
  background-image: url("https://img1.wsimg.com/isteam/ip/e3376d55-62b2-4dbb-b60d-ed7db92a3fb9/Gemini_Generated_Image_ulg66oulg66oulg6.png/:/cr=t:2.21%25,l:14.17%25,w:70.42%25,h:70.42%25/rs=w:800,cg:true,m");
  background-size: cover; background-position: center;
}
@media (max-width: 900px) {
  .sips-what-split { grid-template-columns: 1fr; }
  .sips-what-img { min-height: 280px; }
  .sips-what-text { padding: 3rem 2rem; }
}
.sips-advantages {
  display: grid; grid-template-columns: 380px 1fr; gap: 0; align-items: stretch;
  max-width: var(--max); margin: 0 auto;
  padding: 5rem 2rem;
}
.sips-advantages-img {
  border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0;
}
.sips-advantages-img img {
  width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg);
}
.sips-advantages-content { padding-left: 4rem; }
.sips-advantages-content h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .sips-advantages { grid-template-columns: 1fr; }
  .sips-advantages-img { height: 260px; margin-bottom: 2rem; }
  .sips-advantages-content { padding-left: 0; }
}
.sips-myths { background: var(--charcoal); padding: 5rem 2rem; }
.sips-myths-inner { max-width: var(--max); margin: 0 auto; }
.sips-myths h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: white; text-align: center; margin-bottom: 0.5rem;
}
.sips-myths .section-sub { text-align: center; color: rgba(255,255,255,0.55); margin-bottom: 3rem; }
.sips-myth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.sips-myth-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(60,179,113,0.2);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sips-myth-card img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }
.sips-myth-body { padding: 1.5rem; }
.sips-myth-card .myth { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.sips-myth-card h4 { font-family: var(--font-serif); font-size: 1.1rem; color: white; margin-bottom: 0.5rem; }
.sips-myth-card .truth-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 0.4rem; display: block; }
.sips-myth-card p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
@media (max-width: 900px) { .sips-myth-grid { grid-template-columns: 1fr; } }

.sips-diagram {
  max-width: var(--max); margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.sips-panel {
  background: var(--charcoal); border-radius: var(--radius-lg);
  padding: 3rem; display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
}
.sips-layer {
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem; font-weight: 500;
}
.sips-layer:nth-child(1) { background: var(--green-pale); color: var(--charcoal); }
.sips-layer:nth-child(2) { background: var(--green-mid); color: var(--charcoal); }
.sips-layer:nth-child(3) { background: var(--green); color: white; flex: 1; min-height: 80px; }
.sips-layer:nth-child(4) { background: var(--green-mid); color: var(--charcoal); }
.sips-layer:nth-child(5) { background: var(--green-pale); color: var(--charcoal); }
.layer-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }

.sips-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.benefit-row {
  display: flex; gap: 1rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-num {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 600;
  color: var(--green); line-height: 1; flex-shrink: 0; width: 60px; text-align: right;
}
.benefit-text h4 { font-weight: 500; color: var(--charcoal); margin-bottom: 0.25rem; }
.benefit-text p { font-size: 0.9rem; color: var(--stone); line-height: 1.7; }

/* ─── PROJECTS PAGE ─── */
.projects-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  background-color: var(--charcoal);
  background-image: url("https://img1.wsimg.com/isteam/getty/2050529796/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,m");
  background-size: cover;
  background-position: center;
  position: relative;
}
.projects-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.projects-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.projects-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.projects-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 580px; }
.oakdale-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  background-color: var(--charcoal);
  background-image: url("https://miro.medium.com/v2/resize:fit:1200/1*ra87FIjbXSC_T31CJjKe-g.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.oakdale-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}
.oakdale-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.oakdale-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.oakdale-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 580px; }

.project-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  max-width: var(--max); margin: 0 auto 4rem;
}
.project-card-body {
  display: grid; grid-template-columns: 1fr 1fr;
}
.project-map {
  background: var(--charcoal);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.project-map-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(60,179,113,0.15) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(60,179,113,0.04) 40px, rgba(60,179,113,0.04) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(60,179,113,0.04) 40px, rgba(60,179,113,0.04) 41px);
}
.project-map-pin {
  z-index: 1; text-align: center;
}
.pin {
  width: 56px; height: 56px; background: var(--green);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  margin: 0 auto 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.pin::after {
  content: '';
  width: 20px; height: 20px; background: white; border-radius: 50%;
  transform: rotate(45deg);
}
.project-map-label {
  color: white; font-size: 0.9rem; font-weight: 500; z-index: 1;
  position: relative;
}
.project-info { padding: 3rem; }
.project-info h2 {
  font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.project-location { color: var(--mist); font-size: 0.875rem; margin-bottom: 2rem; }
.project-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem;
}
.p-stat { background: var(--green-pale); border-radius: var(--radius); padding: 1rem; }
.p-stat-n {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--charcoal); line-height: 1;
}
.p-stat-l { font-size: 0.78rem; color: var(--mist); text-transform: uppercase; letter-spacing: 0.06em; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.feature-check {
  width: 20px; height: 20px; background: var(--green);
  border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.feature-check svg { width: 10px; height: 10px; fill: white; }
.feature-item p { font-size: 0.9rem; color: var(--stone); line-height: 1.5; }

/* ─── FAQS PAGE ─── */
.faqs-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 4rem;
  background: var(--cream); text-align: center;
}
.faqs-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.faqs-hero p { color: var(--stone); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

.faq-list {
  max-width: 760px; margin: 0 auto; padding: 4rem 2rem;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.3; gap: 1rem;
}
.faq-q:hover { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; background: var(--green-pale);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); fill: white; }
.faq-a {
  overflow: hidden; max-height: 0; transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 1.75rem;
  font-size: 1rem; color: var(--stone); line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 4rem;
  background: var(--charcoal); text-align: center;
}
.contact-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.contact-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }

.contact-body {
  max-width: var(--max); margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
}
.contact-info h2 {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.contact-info p { color: var(--stone); line-height: 1.8; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--green-pale);
  border-radius: var(--radius); text-decoration: none; color: var(--charcoal);
  font-size: 0.9rem; transition: background 0.2s;
}
.contact-item:hover { background: var(--green-mid); }
.c-icon {
  width: 36px; height: 36px; background: var(--green);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 16px; height: 16px; fill: white; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form h2 {
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--stone); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem; border: 1px solid rgba(30,36,32,0.15);
  border-radius: var(--radius); font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--charcoal); background: white; transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { height: 120px; resize: vertical; }
.form-success {
  background: var(--green-pale); border: 1px solid var(--green-mid);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  color: var(--green-deep); font-size: 0.9rem; display: none;
}

/* ─── COMMUNITIES PAGE ─── */
.communities-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  background-color: var(--charcoal);
  background-image: url("https://img1.wsimg.com/isteam/getty/2157364438/:/cr=t:0%25,l:0%25,w:100%25,h:100%25/rs=w:1920,m");
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}
.communities-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.communities-hero > * { position: relative; z-index: 1; }
.communities-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600; color: white; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.communities-hero h1 em { font-style: italic; color: var(--green); }
.communities-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background-image: url("https://img1.wsimg.com/isteam/getty/1347316374/:/rs=w:1920,m");
  background-size: cover; background-position: center; position: relative;
  padding: 5rem 2rem; text-align: center;
}
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; color: white; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-strip p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white { background: white; color: var(--green-dark); }
.btn-white:hover { background: var(--cream); }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal); padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo { color: white; margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.875rem; line-height: 1.75; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.9rem; margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  max-width: var(--max); margin: 3rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: all 0.2s; font-size: 0.8rem;
}
.social-link:hover { border-color: var(--green); color: var(--green); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: var(--nav-h); z-index: 99;
  background: var(--warm-white); padding: 2rem;
  flex-direction: column; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.2rem; font-family: var(--font-serif); font-weight: 600;
  color: var(--charcoal); text-decoration: none; padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--green); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .sips-diagram { grid-template-columns: 1fr; }
  .project-card-body { grid-template-columns: 1fr; }
  .projects-built-grid { grid-template-columns: 1fr !important; }
  .contact-body { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .serve-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar { margin: 0 auto; }
  .project-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .pillars { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .project-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── OAKDALE FOREST ─── */
.oakdale-stats-strip { display: flex; background: var(--charcoal); }
.oakdale-stat { flex: 1; padding: 2rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.oakdale-stat:last-child { border-right: none; }
.oakdale-stat-n { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; color: var(--green); }
.oakdale-stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
.oakdale-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.oakdale-phase { padding: 2rem 2rem; border-left: 1px solid var(--border); }
.oakdale-phase:first-child { border-left: none; }
.oakdale-phase-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--green); opacity: 0.25; line-height: 1; }
.oakdale-phase-title { font-weight: 700; font-size: 1rem; color: var(--charcoal); margin: 0.5rem 0 0.25rem; }
.oakdale-phase-detail { font-size: 0.88rem; color: var(--stone); line-height: 1.5; }
.oakdale-phase.active .oakdale-phase-num { opacity: 1; }
.oakdale-phase.active .oakdale-phase-title { color: var(--green); }
.oakdale-badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--green); color: white; border-radius: 20px; padding: 0.2rem 0.7rem; margin-left: 0.5rem; vertical-align: middle; }
.home-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.home-type-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; background: white; box-shadow: 0 2px 16px rgba(0,0,0,0.06); display: flex; flex-direction: column; }
.home-type-card h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.home-type-price { font-size: 1.6rem; font-weight: 700; color: var(--green); margin-bottom: 0.75rem; }
.home-type-price-soon { font-size: 0.9rem; color: var(--mist); font-style: italic; margin-bottom: 0.75rem; }
.home-type-detail { font-size: 0.9rem; color: var(--stone); line-height: 1.65; flex: 1; }
.home-type-specs { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.5rem; }
.home-type-spec-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.home-type-spec-row .spec-label { color: var(--mist); }
.home-type-spec-row .spec-val { font-weight: 600; color: var(--charcoal); }
@media (max-width: 768px) {
  .oakdale-stats-strip { flex-wrap: wrap; }
  .oakdale-stat { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .oakdale-phases { grid-template-columns: 1fr; }
  .oakdale-phase { border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 0; }
  .oakdale-phase:first-child { border-top: none; }
  .home-types-grid { grid-template-columns: 1fr; }
}

/* ─── ARTICLE PAGE ─── */
.article-page { max-width: 780px; margin: 0 auto; padding: calc(var(--nav-h) + 3rem) 2rem 5rem; }
.article-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--green); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; margin-bottom: 2.5rem; background: none; border: none; padding: 0; }
.article-back:hover { opacity: 0.75; }
.article-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; display: block; }
.article-title { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--charcoal); line-height: 1.15; margin-bottom: 1.25rem; }
.article-subtitle { font-size: 1.2rem; color: #555; line-height: 1.6; margin-bottom: 2rem; }
.article-meta { font-size: 0.85rem; color: #888; margin-bottom: 3rem; display: flex; gap: 1.5rem; flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.article-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--charcoal); border-radius: var(--radius); overflow: hidden; margin-bottom: 3rem; }
.article-stat { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.article-stat:last-child { border-right: none; }
.article-stat-number { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--green); display: block; }
.article-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.4rem; display: block; }
.article-body p { font-size: 1.05rem; line-height: 1.8; color: #333; margin-bottom: 1.75rem; }
.article-body h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin: 2.5rem 0 1rem; }
.pull-quote { border-left: 4px solid var(--green); padding: 1.25rem 1.75rem; margin: 2.5rem 0; background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; }
.pull-quote p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--charcoal); line-height: 1.55; margin: 0; }
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-tag-pill { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--charcoal); background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 0.3rem 0.85rem; }
.article-cta { background: var(--green-pale); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin-top: 3rem; }
.article-cta h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--charcoal); margin-bottom: 0.75rem; }
.article-cta p { color: #555; margin-bottom: 1.5rem; font-size: 0.95rem; }
@media (max-width: 600px) {
  .article-stats { grid-template-columns: 1fr; }
  .article-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .article-stat:last-child { border-bottom: none; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page.active .hero h1,
.page.active .hero-sub,
.page.active .hero-actions,
.page.active .hero-eyebrow {
  animation: fadeUp 0.6s ease both;
}
.page.active .hero-eyebrow { animation-delay: 0.1s; }
.page.active .hero h1 { animation-delay: 0.2s; }
.page.active .hero-sub { animation-delay: 0.3s; }
.page.active .hero-actions { animation-delay: 0.4s; }
