/* =====================
   BERMINGHAM FINANCIAL
   ===================== */

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

html, body {
  margin: 0;
  padding: 0;
  height: auto;
  display: block;
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  background: #f8f6f2;
}

html { scroll-behavior: smooth; }

/* Anchor offset for sticky nav */
.anchor-offset {
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
  pointer-events: none;
}


html, body {
    margin: 0;
    padding: 0;
    height: auto !important;
    display: block;
    overflow-y: visible !important;
    overflow-x: hidden;
  }

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

#hero, #reviews, #why-us, #services, #how-it-works, #about-me, #faq, #contact {
  scroll-margin-top: 80px;
}

/* === hero === */
html, body {
    margin: 0;
    padding: 0;
    height: auto;
    display: block;
  }

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

.block-hero {
    font-family: 'DM Sans', sans-serif;
    background: #571680;
    padding: 0;
  }

.block-hero .hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 60px 48px 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
  }

@media (max-width: 900px) {
  .block-hero .hero {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 36px 24px;
    }
  .block-hero .photo-side { order: 1; }
}

.block-hero .text-side {
    padding-left: 72px;
  }

@media (max-width: 900px) {
  .block-hero .text-side { padding-left: 0; }
  .block-hero .hero-cta { margin-left: auto; margin-right: auto; }
}

.block-hero .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5.5vw, 64px);
    color: #fff;
    line-height: 1.12;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

.block-hero .hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 22px;
  }

@media (max-width: 900px) {
  .block-hero .hero p { margin: 0 auto 22px auto; }
}

.block-hero .photo-side {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
  }

.block-hero .photo-circle {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

.block-hero .photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.block-hero .photo-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    padding: 20px;
  }

.block-hero .photo-placeholder .icon {
    font-size: 36px;
    margin-bottom: 8px;
  }

.block-hero .signature {
    margin-top: 10px;
    font-family: 'Mr De Haviland', cursive;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(28px, 3.2vw, 38px);
    color: #fff;
    text-align: center;
    white-space: nowrap;
    width: 100%;
  }

.block-hero .photo-side > div {
    max-width: 320px;
    width: 100%;
  }

/* === reviews === */
.block-reviews {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 28px 24px;
  }

.block-reviews .section {
    max-width: 1100px;
    margin: 0 auto;
  }

.block-reviews .header {
    text-align: center;
    margin-bottom: 30px;
  }

.block-reviews .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

.block-reviews .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
  }

.block-reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

@media (max-width: 768px) {
  .block-reviews .reviews-grid { grid-template-columns: 1fr; }
}

.block-reviews .review-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

.block-reviews .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(87,22,128,0.1);
  }

.block-reviews .stars {
    display: flex;
    gap: 4px;
  }

.block-reviews .stars svg {
    width: 16px;
    height: 16px;
  }

.block-reviews .review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    font-weight: 300;
    flex: 1;
  }

.block-reviews .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
  }

.block-reviews .reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(87,22,128,0.1);
    color: #571680;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

.block-reviews .reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #0d0d1a;
  }

.block-reviews .reviewer-business {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
  }

/* === why === */
body { overflow-x: hidden; }

.block-why {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 28px 24px;
  }

.block-why .section {
    max-width: 1100px;
    margin: 0 auto;
  }

.block-why .header {
    text-align: center;
    margin-bottom: 30px;
  }

.block-why .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

.block-why .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
  }

.block-why .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

@media (max-width: 768px) {
  .block-why .why-grid { grid-template-columns: 1fr; }
}

.block-why .why-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
  }

.block-why .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(87,22,128,0.1);
  }

.block-why .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(87,22,128,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
  }

.block-why .why-icon svg {
    width: 24px;
    height: 24px;
  }

.block-why .why-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: #0d0d1a;
    margin-bottom: 10px;
  }

.block-why .why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
  }

/* === services === */
.block-services {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 48px 24px 10px 24px;
  }

.block-services .section {
    max-width: 1100px;
    margin: 0 auto;
  }

.block-services .header {
    text-align: center;
    margin-bottom: 30px;
  }

.block-services .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

.block-services .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

.block-services .header p {
    font-size: 14px;
    color: #888;
    font-weight: 400;
  }

.block-services .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

@media (max-width: 768px) {
  .block-services .cards { grid-template-columns: 1fr; }
}

.block-services .card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }

.block-services .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(87,22,128,0.1);
  }

.block-services .card.popular {
    border: 2px solid #571680;
    background: #fff;
  }

.block-services .popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #571680;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }

.block-services .card-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
  }

.block-services .card-tier {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 6px;
  }

.block-services .card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #0d0d1a;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 10px;
  }

.block-services .card-price {
    font-size: 22px;
    font-weight: 700;
    color: #0d0d1a;
    margin-bottom: 10px;
  }

.block-services .card-price span {
    font-size: 13px;
    font-weight: 400;
    color: #888;
  }

.block-services .card-close {
    display: inline-block;
    background: rgba(87,22,128,0.08);
    color: #571680;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
  }

.block-services .features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

.block-services .feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.5;
  }

.block-services .feature .check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(87,22,128,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }

.block-services .feature .check svg {
    width: 10px;
    height: 10px;
  }

.block-services .feature.inherited {
    color: #999;
    font-size: 13px;
  }

.block-services .feature-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #571680, #7b22b8);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(87,22,128,0.35);
  }

.block-services .feature-guarantee .guarantee-icon {
    font-size: 16px;
    flex-shrink: 0;
  }

.block-services .feature-guarantee strong {
    font-weight: 700;
  }

.block-services .addons-header {
    text-align: center;
    margin-bottom: 20px;
  }

.block-services .addons-header .eyebrow {
    margin-bottom: 10px;
  }

.block-services .addons-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    color: #0d0d1a;
    letter-spacing: 1.5px;
  }

.block-services .addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
  }

@media (max-width: 768px) {
  .block-services .addons-grid { grid-template-columns: 1fr; }
}

.block-services .addon-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

.block-services .addon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(87,22,128,0.1);
  }

.block-services .addon-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(87,22,128,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
  }

.block-services .addon-icon svg {
    width: 18px;
    height: 18px;
  }

.block-services .addon-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0d0d1a;
    letter-spacing: 0.5px;
  }

.block-services .addon-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
  }

.block-services .addon-card .addon-price {
    font-size: 15px;
    font-weight: 700;
    color: #571680;
    margin-top: 10px;
  }

.block-services .addon-card .addon-price span {
    font-size: 12px;
    font-weight: 500;
    color: #888;
  }

.block-cta {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 0 24px 28px 24px;
  }

.block-cta .cta {
    max-width: 1100px;
    margin: 0 auto;
    background: #571680;
    border-radius: 18px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 12px 36px rgba(87,22,128,0.2);
  }

.block-cta .cta-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

.block-cta .cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    margin-bottom: 18px;
  }

@media (max-width: 600px) {
  .block-cta .cta {
      text-align: center;
      justify-content: center;
      padding: 32px 24px;
    }
}

/* === how === */
.block-how {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 28px 24px;
  }

.block-how .section {
    max-width: 1100px;
    margin: 0 auto;
  }

.block-how .header {
    text-align: center;
    margin-bottom: 30px;
  }

.block-how .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

.block-how .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
  }

.block-how .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }

@media (max-width: 768px) {
  .block-how .steps { grid-template-columns: 1fr; }
  .block-how .step::after { display: none; }
}

.block-how .step {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }

.block-how .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(87,22,128,0.1);
  }

.block-how .step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 24px;
    height: 1px;
    border-top: 1px dashed rgba(87,22,128,0.35);
  }

.block-how .step:last-child::after {
    display: none;
  }

.block-how .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #571680;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

.block-how .step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: #0d0d1a;
    margin-bottom: 10px;
  }

.block-how .step p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
  }

/* === about === */
.block-about {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 48px 24px;
  }

.block-about .section {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

@media (max-width: 768px) {
  .block-about .section { grid-template-columns: 1fr; gap: 40px; }
  .block-about { padding: 40px 24px; }
}

.block-about .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

.block-about .eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: #571680;
  }

.block-about h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    color: #0d0d1a;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 6px;
  }

.block-about .subheading {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 26px);
    color: #571680;
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.3;
  }

.block-about .body-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

.block-about .body-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    font-weight: 300;
  }

.block-about .sign-off {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border-left: 3px solid #571680;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }

.block-about .sign-off .icon {
    font-size: 22px;
    flex-shrink: 0;
  }

.block-about .sign-off p {
    font-size: 15px;
    font-weight: 600;
    color: #0d0d1a;
    line-height: 1.4;
  }

.block-about .sign-off p span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
  }

.block-about .photo-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.block-about .photo-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(87,22,128,0.15);
    aspect-ratio: 4/5;
    background: #0d0d1a;
  }

.block-about .photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.block-about .photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #aaa;
    font-size: 13px;
    text-align: center;
    padding: 20px;
  }

.block-about .photo-placeholder .icon {
    font-size: 36px;
  }

/* === faq === */
.block-faq {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 48px 24px;
  }

.block-faq .section {
    max-width: 800px;
    margin: 0 auto;
  }

.block-faq .header {
    text-align: center;
    margin-bottom: 30px;
  }

.block-faq .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

.block-faq .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
  }

.block-faq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

.block-faq .faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
  }

.block-faq .faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0d0d1a;
  }

.block-faq .faq-question .plus {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(87,22,128,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.25s ease, background 0.25s ease;
  }

.block-faq .faq-question .plus::before, .block-faq .faq-question .plus::after {
    content: '';
    position: absolute;
    background: #571680;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

.block-faq .faq-question .plus::before {
    width: 12px;
    height: 2px;
  }

.block-faq .faq-question .plus::after {
    width: 2px;
    height: 12px;
  }

.block-faq .faq-item.active .faq-question .plus {
    background: #571680;
    transform: rotate(180deg);
  }

.block-faq .faq-item.active .faq-question .plus::before, .block-faq .faq-item.active .faq-question .plus::after {
    background: #fff;
  }

.block-faq .faq-item.active .faq-question .plus::after {
    opacity: 0;
  }

.block-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

.block-faq .faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-weight: 300;
  }

.block-faq .faq-item.active .faq-answer {
    max-height: 500px;
  }

/* === booking === */
.block-booking {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 28px 24px 60px 24px;
  }

.block-booking .section {
    max-width: 800px;
    margin: 0 auto;
  }

.block-booking .header {
    text-align: center;
    margin-bottom: 24px;
  }

.block-booking .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

.block-booking .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

.block-booking .header p {
    font-size: 14px;
    color: #888;
    font-weight: 400;
  }

.block-booking .calendly-wrapper {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 8px;
    max-width: 100%;
  }

.block-booking .calendly-inline-widget {
    width: 100% !important;
    min-width: 0 !important;
  }

.block-booking .calendly-inline-widget iframe {
    width: 100% !important;
  }
/* === contact form === */
.block-contact {
    font-family: 'DM Sans', sans-serif;
    background: #f8f6f2;
    padding: 48px 24px 40px 24px;
  }

  .block-contact .section {
    max-width: 700px;
    margin: 0 auto;
  }

  .block-contact .header {
    text-align: center;
    margin-bottom: 30px;
  }

  .block-contact .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #571680;
    margin-bottom: 12px;
  }

  .block-contact .header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #0d0d1a;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .block-contact .header p {
    font-size: 14px;
    color: #888;
    font-weight: 400;
  }

  .contact-form {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 36px 32px 28px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0d0d1a;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #0d0d1a;
    background: #f8f6f2;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #571680;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 130px;
  }

  .form-submit {
    width: 100%;
    background: #571680;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s, transform 0.2s;
  }

  .form-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 32px;
    font-size: 15px;
    color: #571680;
    font-weight: 600;
  }

  /* === cta buttons === */
  .block-hero .hero-cta {
    display: block;
    width: fit-content;
    background: #fff;
    color: #571680;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 38px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0;
    margin-bottom: 14px;
  }

  .block-hero .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .block-hero .hero-cta-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    margin-bottom: 0;
  }

  .block-hero .hero-cta-secondary:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: none;
  }

  .block-cta .cta-button {
    flex-shrink: 0;
    background: #fff;
    color: #571680;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .block-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }




/* === nav & footer === */



/* === nav & footer === */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }

.site-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

.site-logo img {
    height: 28px;
    width: auto;
    display: block;
  }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

.nav-links a:hover {
    color: #571680;
  }

.nav-links a.nav-cta {
    background: #571680;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
  }

.nav-links a.nav-cta:hover {
    color: #fff;
    opacity: 0.9;
  }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0d0d1a;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav-inner {
      padding: 12px 16px;
      gap: 12px;
      display: grid;
      grid-template-columns: 28px 1fr 28px;
      align-items: center;
    }
  .site-logo {
      grid-column: 2;
      justify-content: center;
    }
  .nav-toggle { grid-column: 3; justify-self: end; }
  .site-logo img { height: 22px; }
  .nav-links {
      grid-column: 1 / -1;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
  .nav-links a {
      width: 100%;
      padding: 14px 24px;
      border-top: 1px solid rgba(0,0,0,0.05);
    }
  .nav-links a.nav-cta {
      border-radius: 0;
      text-align: center;
    }
  .site-nav.open .nav-links {
      max-height: 400px;
    }
  .site-nav.open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
  .site-nav.open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }
  .site-nav.open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
}

.site-footer {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 40px 24px 24px 24px;
  }

.site-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

.site-footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

.site-footer .footer-logo img {
    height: 26px;
    width: auto;
    display: block;
  }

.site-footer .footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

.site-footer .footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

.site-footer .footer-links a:hover {
    color: #571680;
  }

.site-footer .footer-links a.footer-cta {
    background: #571680;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
  }

.site-footer .footer-links a.footer-cta:hover {
    color: #fff;
    opacity: 0.9;
  }

.site-footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(87,22,128,0.08);
    color: #571680;
    transition: background 0.2s, transform 0.2s;
  }

.site-footer .footer-social:hover {
    background: #571680;
    color: #fff;
    transform: translateY(-2px);
  }

.site-footer .footer-social svg {
    width: 18px;
    height: 18px;
  }

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
  }

.site-footer .footer-bottom p {
    font-size: 12px;
    color: #999;
  }

@media (max-width: 600px) {
  .site-footer .footer-top,
    .site-footer .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
}