.elementor-1863 .elementor-element.elementor-element-c057fc6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1863 .elementor-element.elementor-element-04cffbd{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1863 .elementor-element.elementor-element-2ed8da1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-46dbfed */:root {
    --sage: #7a9e7e;
    --sage-light: #a8c5aa;
    --sage-dark: #4a6e4e;
    --cream: #f5f0e8;
    --cream-dark: #ede5d4;
    --warm-brown: #5c4a32;
    --warm-brown-light: #8a7060;
    --gold: #c4a44a;
    --gold-light: #d9bf7e;
    --white: #ffffff;
    --text-dark: #2e2319;
    --text-mid: #5c4a32;
    --text-light: #8a7a6a;
    --border: rgba(122,158,126,0.25);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
  }

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
  }

  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--sage-dark);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .logo-sub {
    font-size: 0.65rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-top: 1px;
  }

  .header-cta {
    background: var(--sage);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .header-cta:hover { background: var(--sage-dark); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #2a3d2c 0%, #3d5e40 50%, #4a6e4e 100%);
    color: var(--white);
    padding: 90px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(196,164,74,0.08);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-block;
    background: rgba(196,164,74,0.2);
    border: 1px solid rgba(196,164,74,0.4);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    max-width: 760px;
    margin-bottom: 22px;
    font-weight: 500;
    line-height: 1.15;
  }

  .hero h1 em {
    color: var(--gold-light);
    font-style: italic;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }

  .hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
  }

  .trust-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold-light);
    font-weight: 500;
    line-height: 1;
  }

  .trust-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── KEYWORDS STRIP ── */
  .kw-strip {
    background: var(--sage-dark);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .kw-pill {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
  }

  /* ── ABOUT SECTION ── */
  .about {
    padding: 90px 5%;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 14px;
  }

  .about h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.18;
  }

  .about p {
    font-size: 0.97rem;
    color: var(--text-mid);
    margin-bottom: 16px;
    font-weight: 300;
  }

  .credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .cred-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-mid);
  }

  .cred-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--sage);
    margin-top: 6px;
  }

  .about-image-block {
    position: relative;
  }

  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--cream-dark), var(--cream));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
  }

  .about-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--sage);
  }

  .coach-name-card {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: var(--sage-dark);
    color: var(--white);
    padding: 18px 24px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }

  .coach-name-card .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .coach-name-card .title {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 3px;
  }

  /* ── DREAM FORMULA ── */
  .dream {
    padding: 90px 5%;
    background: var(--cream);
  }

  .dream-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .dream-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 14px;
  }

  .dream-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
  }

  .dream-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
  }

  .dream-step {
    background: var(--white);
    padding: 36px 24px;
    position: relative;
    border-top: 3px solid var(--sage-light);
    transition: border-color 0.2s;
  }

  .dream-step:hover { border-color: var(--sage-dark); }

  .dream-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .dream-step h3 {
    font-size: 1.05rem;
    color: var(--sage-dark);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .dream-step p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
  }

  /* ── SERVICES ── */
  .services {
    padding: 90px 5%;
    background: var(--white);
  }

  .services-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .services-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 12px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
  }

  .service-card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
  }

  .service-card:hover::after { transform: scaleX(1); }
  .service-card:hover { box-shadow: 0 8px 30px rgba(74,110,78,0.1); }

  .service-icon {
    width: 46px;
    height: 46px;
    background: rgba(122,158,126,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .service-icon svg { width: 22px; height: 22px; stroke: var(--sage-dark); fill: none; stroke-width: 1.5; }

  .service-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 90px 5%;
    background: linear-gradient(135deg, #2a3d2c, #3d5e40);
    color: var(--white);
  }

  .testimonials h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    text-align: center;
    margin-bottom: 52px;
    color: var(--white);
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .testi-card p {
    color: var(--text-mid)
};
    border: 1px solid rgba(255,255,255,0.12)
    border-radius: 4px;
    padding: 32px 28px;
  }

  .stars {
    color: var(--gold-light);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .testi-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
  }

  .testi-author {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  /* ── WHY LOCAL ── */
  .why-local {
    padding: 90px 5%;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-local h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    color: var(--text-dark);
    margin-bottom: 20px;
  }

  .why-local .lead {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 36px;
  }

  .local-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .local-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .lp-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--sage-light);
    line-height: 1;
    min-width: 36px;
    font-weight: 500;
  }

  .lp-content h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
  }

  .lp-content p {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.65;
  }

  .map-block {
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .map-pin {
    width: 60px;
    height: 60px;
    background: rgba(122,158,126,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map-pin svg { width: 28px; height: 28px; stroke: var(--sage-dark); fill: none; stroke-width: 1.5; }

  .map-block h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
  }

  .map-block address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  .map-block .phone {
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--sage-dark);
    font-weight: 500;
    text-decoration: none;
  }

  /* ── CTA STRIP ── */
  .cta-strip {
    background: var(--gold);
    padding: 70px 5%;
    text-align: center;
  }

  .cta-strip h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 14px;
  }

  .cta-strip p {
    font-size: 1rem;
    color: rgba(44,35,25,0.75);
    margin-bottom: 34px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-dark {
    background: var(--sage-dark);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
  }
  .btn-dark:hover { background: var(--warm-brown); }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 50px 5% 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
  }

  footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
  }

  footer p, footer address {
    font-size: 0.85rem;
    line-height: 1.7;
    font-style: normal;
  }

  footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.4);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .about, .why-local { grid-template-columns: 1fr; gap: 48px; }
    .about-image-block { display: none; }
    .dream-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  }

  @media (max-width: 600px) {
    .dream-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 24px; }
    .kw-strip { gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  }
  .map-embed iframe{
    width:100%;
    border-radius:4px;
    display:block;
}
.review-link{
   display:inline-block;
   margin-top:12px;
   color:var(--gold-light);
   font-size:0.8rem;
   text-decoration:none;
   font-weight:500;
}

.review-link:hover{
   text-decoration:underline;
}
.testi-card p{
    color:#5c4a32 !important;
}

.testi-author{
    color:#4a6e4e !important;
}

.testi-card{
    background:#ffffff !important;
    border:1px solid rgba(122,158,126,0.25);
    padding:32px 28px;
}
a{
   color: var(--sage-dark);
   text-decoration:none;
}

a:hover{
   text-decoration:underline;
}/* End custom CSS */