/**
 * Homepage Styles
 *
 * Global homepage-specific styles.
 * Imports section styles.
 *
 * Related File:
 * front-page.php
 */

/* ──────────────────────────────────────────────────────────────
   CEDARS HOMEPAGE DESIGN TOKENS
   Scoped to homepage only
   ────────────────────────────────────────────────────────────── */

.cedars-homepage {
    /* Brand Colors */
    --olive: #A8AD00;
    --olive-dark: #868a00;

    --blue: #32AFD9;
    --blue-dark: #2290b5;

    --gold: #D8AA26;
    --gold-dark: #c49a1e;

    --green: #376B47;
    --green-dark: #2a5337;

    --gray: #707070;
    --gray-light: #999999;
    --gray-pale: #f4f4f4;

    --cream: #FBFBFB;
    --white: #FFFFFF;
    --dark: #3B3B3B;
    --text: #333333;
    --border: #e0e0e0;

    /* Typography */
    --font-primary: 'brandon-grotesque', sans-serif;
    --font-secondary: 'museo-sans', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.16);

    --radius: 4px;
    --radius-lg: 8px;

    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);

    -webkit-font-smoothing: antialiased;
}

/* ──────────────────────────────────────────────────────────────
   HOMEPAGE RESET
   Scoped to homepage only
   ────────────────────────────────────────────────────────────── */

.cedars-homepage *,
.cedars-homepage *::before,
.cedars-homepage *::after {
    box-sizing: border-box;
}

.cedars-homepage img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cedars-homepage a {
    text-decoration: none;
}

.cedars-homepage ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ──────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ────────────────────────────────────────────────────────────── */

.cedars-homepage h1 {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.2;
	    margin-top: 0;
}

.cedars-homepage h2,
.cedars-homepage h3 {
    font-family: var(--font-secondary);
    line-height: 1.2;
	    margin-top: 0;
}

.cedars-homepage h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
	    margin-top: 0;
}

.cedars-homepage h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
	    margin-top: 0;
}

.cedars-homepage h1 em,
.cedars-homepage h2 em,
.cedars-homepage h3 em {
    font-style: normal;
	    margin-top: 0;
}

.cedars-homepage h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
	margin-top: 0;
}

.cedars-homepage p {
    font-family: var(--font-body);
	margin-top: 0;
   
}

/* ──────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ────────────────────────────────────────────────────────────── */

.cedars-homepage .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.cedars-homepage .container--narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.cedars-homepage .section {
    padding: 80px 0;
}

.cedars-homepage .section--cream {
    background: var(--cream);
}

.cedars-homepage .section--green {
    background: var(--green);
    color: var(--white);
}

.cedars-homepage .section--dark {
    background: var(--dark);
    color: var(--white);
}

/* ──────────────────────────────────────────────────────────────
   EYEBROW LABELS
   ────────────────────────────────────────────────────────────── */

.cedars-homepage .eyebrow {
    display: block;
    margin-bottom: 10px;

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;

    color: var(--olive);
}

.cedars-homepage .eyebrow--white {
    color: rgba(255,255,255,.75);
}

/* ──────────────────────────────────────────────────────────────
   SCRIPT ACCENT
   ────────────────────────────────────────────────────────────── */

.cedars-homepage .script-accent {
    display: block;

    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 300;
    font-style: normal;

    color: var(--olive);
    line-height: 1.3;
}

/* ──────────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────────── */

.cedars-homepage .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 15px 30px;

    border: none;
    border-radius: var(--radius);

    cursor: pointer;

    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    transition: all .22s ease;
    white-space: nowrap;
}

.cedars-homepage .btn--primary {
    background: var(--gold);
    color: var(--white);
}

.cedars-homepage .btn--primary:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cedars-homepage .btn--secondary {
    background: var(--olive);
    color: var(--white);
}

.cedars-homepage .btn--secondary:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cedars-homepage .btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.75);
}

.cedars-homepage .btn--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}

.cedars-homepage .btn--outline-green {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.cedars-homepage .btn--outline-green:hover {
    background: var(--blue);
    color: var(--white);
}

.cedars-homepage .btn--lg {
    padding: 18px 38px;
    font-size: 14px;
}

.cedars-homepage .btn--full {
    width: 100%;
    justify-content: center;
}


    /* ─── STICKY HEADER ─────────────────────────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .site-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 24px;
      max-width: 1160px;
      margin: 0 auto;
      gap: 16px;
    }
    .site-header__logo img { height: 52px; width: auto; }
    .site-header__actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .header-phone {
      font-family: var(--font-body);
      font-size: 20px;
      font-weight: 400;
      color: var(--olive);
      letter-spacing: -.02em;
    }
    .header-phone:hover { color: var(--olive-dark); }
    @media (max-width: 600px) {
      .site-header__logo img { height: 40px; }
      .header-phone { font-size: 16px; }
      .site-header__actions .btn { display: none; }
    }


 /* ─── HERO ───────────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: center;
    }
    .hero__bg {
      position: absolute;
      inset: 0;
      background-image: url('https://12oaks.net/wp-content/uploads/2025/09/the-cedars-at-woodland-hills-gallery-4.jpg');
      background-size: cover;
      background-position: center 30%;
      z-index: 0;
    }
    .hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,25,15,.62) 0%,
        rgba(10,25,15,.40) 50%,
        rgba(0,0,0,.18) 100%
      );
    }
    .hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: center;
      max-width: 1160px;
      margin: 0 auto;
      padding: 80px 24px;
      width: 100%;
    }
    .hero__content {}
    .hero__rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }
    .hero__stars { color: #f5c518; font-size: 18px; letter-spacing: 2px; }
    .star-rating {
      display: inline-block;
      position: relative;
      letter-spacing: 2px;
      font-size: inherit;
    }
    .star-rating__empty { color: rgba(255,255,255,.35); }
    .star-rating__full {
      position: absolute;
      top: 0; left: 0;
      overflow: hidden;
      width: 92%; /* 4.6/5 = 92% */
      white-space: nowrap;
      color: #f5c518;
    }
    .hero__rating-text {
      font-size: 13px;
      color: rgba(255,255,255,.85);
      font-weight: 600;
    }
    .hero h1 {
      color: var(--white);
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      font-weight: 700;
      margin-bottom: 8px;
      text-shadow: 0 2px 12px rgba(0,0,0,.65), 0 1px 3px rgba(0,0,0,.5);
      font-style: normal;
    }
    .hero__sub {
      font-size: 17px;
      color: rgba(255,255,255,.98);
      margin-bottom: 32px;
      font-weight: 300;
      max-width: 520px;
      line-height: 1.65;
    }
    .hero__cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .hero__badge {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      color: rgba(255,255,255,.8);
      font-size: 13px;
    }
    .hero__badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #5ec47a;
      flex-shrink: 0;
    }

    /* Hero form */
    .hero__form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      box-shadow: var(--shadow-lg);
    }
    .hero__form-title {
      font-family: var(--font-body);
      font-size: 1.5rem;
      color: var(--olive);
      margin-bottom: 6px;
      font-weight: 700;
		margin-top: 0;
    }
    .hero__form-sub {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 20px;
		    margin-top: 0;
    }


    .form-group { margin-bottom: 12px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 4px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--dark);
      background: var(--white);
      transition: border-color .2s;
      appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--olive);
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }
    .form-disclaimer {
      font-size: 11px;
      color: var(--gray-light);
      margin-top: 10px;
      line-height: 1.5;
    }

    @media (max-width: 900px) {
      .hero__inner { grid-template-columns: 1fr; }
      .hero__form-card { display: none; }
    }

 /* ─── TRUST BAR ─────────────────────────────────────────────────── */
    .trust-bar {
      background: var(--green);
      padding: 20px 0;
    }
    .trust-bar__inner {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 0;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 16px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 8px 14px;
      border-right: 1px solid rgba(255,255,255,.25);
      color: var(--white);
      white-space: nowrap;
    }
    .trust-item:last-child { border-right: none; }
    .trust-item__icon { display: flex; align-items: center; }
    .trust-item__icon svg { display: block; }
    .trust-item__text { font-size: 12.5px; font-weight: 600; letter-spacing: .03em; }
        @media (max-width: 700px) {
      .trust-bar__inner {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

    .trust-item {
        border-right: none;
        justify-content: center;
        text-align: center;
    }
      .trust-item:last-child { border-bottom: none; }
    }

 /* ─── LIFESTYLE BENEFITS ────────────────────────────────────────── */
    .benefits__header { text-align: center; margin-bottom: 56px; }
    .benefits__header h2 { color: var(--olive); margin-bottom: 16px; }
    .benefits__header p { font-size: 17px; color: var(--gray); max-width: 640px; margin: 0 auto; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .benefit-card {
      text-align: center;
      padding: 40px 28px;
      border-radius: var(--radius-lg);
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: box-shadow .22s, transform .22s;
    }
    .benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .benefit-card__icon {
      width: 64px; height: 64px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      border: 2px solid rgba(55,107,71,.15);
      color: var(--olive);
    }
    .benefit-card__icon svg { display: block; }
    .benefit-card h3 {
      font-size: 1.3rem;
      color: var(--blue);
      margin-bottom: 10px;
    }
    .benefit-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }
    @media (max-width: 768px) {
      .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
    }

/* ─── INLINE CTA BAND ────────────────────────────────────────────── */
    .cta-band {
      background: var(--cream);
      padding: 40px 0;
      text-align: center;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .cta-band p { font-size: 18px; color: var(--dark); margin-bottom: 20px; font-family: var(--font-body); }
    .cta-band .btn-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }


    /* ─── AMENITIES ─────────────────────────────────────────────────── */
    .amenities { background: var(--cream); }
    .amenities__header { text-align: center; margin-bottom: 56px; }
    .amenities__header h2 { color: var(--dark); margin-bottom: 16px; }
    .amenities__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: stretch;
    }
    .amenities__photos-left {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .amenities__photo {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      flex: 1;
      min-height: 0;
    }
    .amenities__photo img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 200px; }
    .amenities__photo-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.6));
      color: var(--white);
      padding: 24px 20px 16px;
      font-size: 14px;
      font-weight: 600;
    }
    .amenities__list-group { margin-bottom: 28px; }
    .amenities__list-group h4 {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
      border-bottom: 2px solid var(--border);
      padding-bottom: 8px;
    }
    .amenity-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 7px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14.5px;
    }
    .amenity-item:last-child { border-bottom: none; }
    .amenity-item__check {
      width: 18px; height: 18px;
      background: var(--olive);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 3px;
      font-size: 10px;
      color: var(--white);
      font-weight: 900;
    }
    @media (max-width: 860px) {
      .amenities__layout { grid-template-columns: 1fr; }
      .amenities__photo img { min-height: 220px; }
    }
   /* ─── GALLERY ROW ────────────────────────────────────────────────── */
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 48px;
    }
    .gallery-strip--3col {
      grid-template-columns: repeat(3, 1fr);
    }
    .gallery-strip img {
      width: 100%; height: 240px; object-fit: cover;
      border-radius: var(--radius);
      transition: opacity .22s;
    }
    .gallery-strip img:hover { opacity: .88; }
    @media (max-width: 700px) {
      .gallery-strip { grid-template-columns: 1fr 1fr; }
    }

    /* ─── FLOOR PLANS ────────────────────────────────────────────────── */
    .floorplans__header { text-align: center; margin-bottom: 56px; }
    .floorplans__header h2 { color: var(--olive); margin-bottom: 16px; }
    .floorplans__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .plan-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      background: var(--white);
      transition: box-shadow .22s, transform .22s;
    }
    .plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .plan-card__image img { width: 100%; height: 240px; object-fit: cover; }
    .plan-card__body { padding: 28px; }
    .plan-card__badge {
      display: inline-block;
      background: var(--blue);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .plan-card h3 { color: var(--dark); margin-bottom: 4px; font-size: 1.5rem; }
    .plan-card__sqft { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
    .plan-card__price {
      font-family: var(--font-secondary);
      font-size: 2rem;
      font-weight: 700;
      color: var(--olive);
      line-height: 1;
      margin-bottom: 4px;
    }
    .plan-card__price-note { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
    .plan-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
      margin-bottom: 24px;
    }
    .plan-feature {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--text);
    }
    .plan-feature::before {
      content: '✓';
      color: var(--olive);
      font-weight: 900;
      font-size: 12px;
    }
    .plan-card__availability {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--olive);
      margin-bottom: 16px;
    }
    .plan-card__availability::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--olive);
    }
    @media (max-width: 700px) {
      .floorplans__grid { grid-template-columns: 1fr; }
    }

    /* ─── WHY CEDARS ─────────────────────────────────────────────────── */
    .why-cedars { background: var(--green); }
    .why-cedars__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-cedars__content .eyebrow { color: rgba(255,255,255,.7); }
    .why-cedars__content h2 { color: var(--white); margin-bottom: 16px; }
    .why-cedars__content > p {
      color: rgba(255,255,255,.85);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 32px;
    }
    .why-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .why-item__icon {
      width: 40px; height: 40px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #D8AA26;
    }
    .why-item__icon svg { display: block; }
    .why-item__text h4 {
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 2px;
		    margin-top: 0;
    }
    .why-item__text p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.6; }
    .why-cedars__photo {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 16px 60px rgba(0,0,0,.3);
    }
    .why-cedars__photo img { width: 100%; height: 520px; object-fit: cover; }
    @media (max-width: 860px) {
      .why-cedars__inner { grid-template-columns: 1fr; }
      .why-cedars__photo { display: none; }
    }
    /* ─── SECTION DIVIDERS ───────────────────────────────────────────── */
    .section-divider {
      text-align: center;
      padding: 20px 0 0;
      margin-bottom: -1px;
    }

    /* ─── PRICING CALLOUT ────────────────────────────────────────────── */
    .pricing-callout {
      background: var(--green);
      color: var(--white);
      text-align: center;
      padding: 28px 24px;
      border-radius: var(--radius-lg);
      margin-top: 40px;
    }
    .pricing-callout p { font-size: 15px; opacity: 1; color: rgba(255,255,255,.95); margin-bottom: 8px; }
    .pricing-callout .price-from {
      font-family: var(--font-secondary);
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1;
    }
    .pricing-callout .price-note { font-size: 13.5px; font-weight: 500; opacity: .92; margin-top: 6px; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────── */
    .testimonials { background: var(--white); }
    .testimonials__header { text-align: center; margin-bottom: 16px; }
    .testimonials__header h2 { color: var(--dark); margin-bottom: 12px; }
    .google-rating {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 48px;
    }
    .google-rating__stars { color: #f5c518; font-size: 24px; letter-spacing: 2px; }
    .google-rating__stars .star-rating__empty { color: #ddd; }
    .google-rating__info { font-size: 15px; color: var(--gray); }
    .google-rating__score { font-weight: 900; font-size: 20px; color: var(--dark); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .testimonial-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      border: 1px solid var(--border);
      position: relative;
    }
    .testimonial-card__quote {
      font-family: var(--font-secondary);
      font-size: 3.5rem;
      line-height: 1;
      color: var(--olive);
      opacity: .35;
      margin-bottom: -10px;
    }
    .testimonial-card__text {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text);
      font-style: italic;
      margin-bottom: 20px;
    }
    .testimonial-card__author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-card__avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--olive);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 15px;
      flex-shrink: 0;
    }
    .testimonial-card__name { font-weight: 700; font-size: 14px; color: var(--dark); }
    .testimonial-card__role { font-size: 12px; color: var(--gray); }
    .testimonial-card__stars { font-size: 12px; color: #f5c518; letter-spacing: 2px; }
    @media (max-width: 768px) {
      .testimonials-grid { grid-template-columns: 1fr; }
    }

    /* ─── LIFESTYLE GALLERY ─────────────────────────────────────────── */
    .lifestyle { background: var(--cream); }
    .lifestyle__header { text-align: center; margin-bottom: 48px; }
    .lifestyle__header h2 { color: var(--dark); margin-bottom: 14px; }
    .lifestyle__header p { font-size: 17px; color: var(--gray); max-width: 560px; margin: 0 auto; }
    .lifestyle-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 240px 240px;
      gap: 10px;
    }
    .lifestyle-grid__item { border-radius: var(--radius); overflow: hidden; }
    .lifestyle-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
    .lifestyle-grid__item:hover img { transform: scale(1.04); }
    .lifestyle-grid__item--tall { grid-row: span 2; }
    @media (max-width: 768px) {
      .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .lifestyle-grid__item--tall { grid-row: span 1; }
      .lifestyle-grid__item img { height: 180px; }
    }

/* ─── CONVERSION REASSURANCE ─────────────────────────────────────── */
    .next-steps { background: var(--white); }
    .next-steps__header { text-align: center; margin-bottom: 56px; }
    .next-steps__header h2 { color: var(--olive); margin-bottom: 14px; }
    .next-steps__header p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .step-card { text-align: center; padding: 36px 24px; }
    .step-card__number {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 2px solid var(--blue);
      color: var(--blue);
      font-family: var(--font-secondary);
      font-size: 1.6rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .step-card h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 10px; }
    .step-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
    @media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 8px; } }

/* ─── FINAL CTA / CONTACT FORM ───────────────────────────────────── */
    .contact-section {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
      position: relative;
      overflow: hidden;
    }
    .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('https://12oaks.net/wp-content/uploads/2025/09/the-cedars-at-woodland-hills-gallery-22.jpg');
      background-size: cover;
      background-position: center;
      opacity: .07;
    }
    .contact-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
      z-index: 0;
    }
    .contact-section__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 64px;
      align-items: start;
      max-width: 1160px;
      margin: 0 auto;
      padding: 80px 24px;
    }
    .contact-section__content .eyebrow { color: rgba(255,255,255,.9); }
    .contact-section__content h2 {
      color: var(--white);
      margin-bottom: 16px;
      font-size: clamp(2rem, 4vw, 2.6rem);
      text-shadow: 0 2px 8px rgba(0,0,0,.4);
    }
    .contact-section__content p {
      color: #ffffff;
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 32px;
      text-shadow: 0 1px 4px rgba(0,0,0,.35);
    }
    .contact-details { display: flex; flex-direction: column; gap: 16px; }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: #ffffff;
      font-size: 15px;
      text-shadow: 0 1px 4px rgba(0,0,0,.35);
    }
    .contact-detail__icon {
      margin-top: 2px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      color: rgba(255,255,255,.85);
    }
    .contact-detail__icon svg { display: block; }
    .contact-detail a { color: var(--white); font-weight: 700; }
    .contact-detail a:hover { text-decoration: underline; }

    .contact-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
    }
    .contact-form-card h3 {
      font-size: 1.5rem;
      color: var(--olive);
      margin-bottom: 6px;
		margin-top: 0;
    }
    .contact-form-card__sub { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

    @media (max-width: 900px) {
      .contact-section__inner { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ─── LOCATION STRIP ─────────────────────────────────────────────── */
    .location-strip {
      background: var(--dark);
      color: var(--white);
      padding: 16px 0;
      text-align: center;
    }
    .location-strip p { font-size: 14px; opacity: .75; }
    .location-strip strong { color: var(--white); }


/* ─── FOOTER ─────────────────────────────────────────────────────── */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,.65);
      padding: 48px 0 24px;
    }
    .site-footer__inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-bottom: 16px;
    }
    .footer-logo { filter: brightness(0) invert(1); opacity: .7; width: 180px; margin-bottom: 14px; }
    .footer-col p, .footer-col address { font-size: 14px; line-height: 1.8; font-style: normal; }
    .footer-col a { color: rgba(255,255,255,.7); transition: color .2s; }
	.footer-col a:visited  { color: var(--white); }
    .footer-col a:hover { color: var(--white); }
    .footer-phone { font-size: 20px; font-weight: 700; color: var(--white); display: block; margin: 8px 0; }
    .footer-bottom {
      max-width: 1160px;
      margin: 0 auto;
      padding: 20px 24px 0;
      border-top: 1px solid rgba(255,255,255,.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 12px;
    }
    @media (max-width: 700px) {
      .site-footer__inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

/* Gravity forms style update */


/* ==================================================
   HERO FORM - GRAVITY FORMS (FORM ID 1)
================================================== */

/* Remove default Gravity Forms spacing */
#gform_wrapper_1,
#gform_wrapper_1 .gform_body,
#gform_wrapper_1 .gform_fields {
    margin: 0;
    padding: 0;
	gap: 2px;
}

/* Field spacing */
#gform_1 .gfield {
    margin-bottom: 12px;
}

/* Labels */
#gform_1 .gfield_label,
#gform_1 label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

/* Inputs */
#gform_1 input[type="text"],
#gform_1 input[type="email"],
#gform_1 input[type="tel"],
#gform_1 input[type="number"],
#gform_1 select,
#gform_1 textarea {
    width: 100%;
    padding: 0px 14px !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--dark);
    background: var(--white);
    transition: border-color .2s ease;
    appearance: none;
    box-shadow: none;
}

/* Focus */
#gform_1 input:focus,
#gform_1 select:focus,
#gform_1 textarea:focus {
    outline: none;
    border-color: var(--olive) !important;
    box-shadow: none !important;
}

/* Select arrow */
#gform_1 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px !important;
}

/* Textarea */
#gform_1 textarea {
    resize: vertical;
    min-height: 50px;
	max-height: 60px;
}

/* First / Last Name columns */
#gform_1 .gf_left_half,
#gform_1 .gf_right_half {
    width: calc(50% - 6px) !important;
}

@media (max-width: 640px) {
    #gform_1 .gf_left_half,
    #gform_1 .gf_right_half {
        width: 100% !important;
    }
}

/* Submit button */
#gform_1 .gform_button,
#gform_1 input[type="submit"],
#gform_1 button[type="submit"] {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 18px 38px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .22s ease;
}

#gform_1 .gform_button:hover,
#gform_1 input[type="submit"]:hover,
#gform_1 button[type="submit"]:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Footer */
#gform_1 .gform_footer,
#gform_1 .gform-page-footer {
    margin-top: 12px;
    padding-top: 0;
}

/* Validation messages */
#gform_1 .validation_message,
#gform_1 .gfield_validation_message {
    font-size: 12px;
    margin-top: 4px;
}

/* Description / Disclaimer */
#gform_1 .gform_description {
    font-size: 11px;
    color: var(--gray-light);
    line-height: 1.5;
    margin-top: 10px;
}
#gform_1 .ginput_counter{
	display: none;
}
.gform_required_legend{
	display: none;
}