  @font-face {
    font-family: 'Abril';
    src: url('fonts/abril-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gordita';
    src: url('fonts/gordita-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gordita';
    src: url('fonts/Gordita-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --teal: #203a3b; --teal-light: #2a4d4e; --teal-dark: #0a2e1a;
    --copper: #CF8C55; --copper-light: #e0a872;
    --cream: #FDEED3; --cream-dark: #f5ddb5;
    --white: #ffffff; --text-dark: #3d5a5c; --text-mid: #3d5a5c; --text-light: #666666;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Gordita', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; font-size:16px; line-height:1.8; }

  /* NAV */
  .nav { position: fixed; top:0; left:0; right:0; z-index:100; background:#203a3bf7; backdrop-filter:blur(8px); display:flex; align-items:center; justify-content:space-between; padding:12px 28px; border-bottom:0px solid rgba(207,140,85,0.25); }
  .nav-logo { display:flex; align-items:center; gap:10px; }
  .nav-logo-mark { width:36px; height:36px; background:var(--copper); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Abril',serif; color:var(--white); font-size:16px; }
  .nav-logo-text { font-family:'Abril',serif; color:var(--white); font-size:15px; letter-spacing:0.02em; line-height:1.2; }
  .nav-logo-sub { color:var(--white); font-size:10px; font-family:'Gordita',sans-serif; font-weight:400; letter-spacing:0.15em; text-transform:uppercase; display:block; }
  .nav-cta { background:var(--copper); color:var(--white); text-decoration:none; font-size:13px; font-weight:500; padding:10px 22px; border-radius:40px; letter-spacing:0.03em; transition:background 0.2s; white-space:nowrap; }
  .nav-cta:hover { background:var(--copper-light); }

  /* HERO */
  .hero { min-height:100vh; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; padding-top:64px; }
  .hero-bg { position:absolute; inset:0; z-index:0; background:#0a2e1a; }
  .hero-bg-layer { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transition:opacity 4s ease-in-out; }
  .hero-bg-layer.active { opacity:1; }
  .hero-inner { position:relative; z-index:1; max-width:820px; text-align:center; padding:80px 32px 60px; text-shadow:0 2px 12px rgba(0,0,0,0.4); }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* background: rgb(255 255 255 / 18%); */
    border: 1px solid rgb(255 255 255 / 40%);
    color: var(--white);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 40px;
    margin-top: 24px;
    margin-bottom: 28px;
}
  .hero h1 { font-family:'Abril',serif; font-size:clamp(32px,6vw,80px); color:var(--white); line-height:1.12; margin-bottom:6px; letter-spacing:-0.01em; }
  .hero h1 em { font-style:normal; color:#CF8C55; }
  .hero-sub { font-size:clamp(16px,2vw,20px); color:rgba(255, 255, 255, 0.92); line-height:1.75; max-width:640px; margin:20px auto 40px; font-weight:700; }
  .hero-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; text-shadow:none; }
  .btn-primary { background:var(--copper); color:var(--white); text-decoration:none; font-size:15px; font-weight:500; padding:15px 34px; border-radius:50px; letter-spacing:0.02em; transition:all 0.25s; display:inline-block; border:2px solid var(--copper); }
  .btn-primary:hover { background:var(--copper-light); border-color:var(--white); transform:translateY(-2px); box-shadow:0 8px 28px rgba(207,140,85,0.4); }
  .btn-ghost { background:transparent; color:var(--white); text-decoration:none; font-size:15px; font-weight:500; padding:15px 30px; border-radius:50px; border:2px solid rgba(255,255,255,0.35); transition:all 0.25s; display:inline-block; }
  .btn-ghost:hover { border-color:var(--white); background:rgba(255,255,255,0.08); }
  .hero-scroll { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:6px; color:rgba(255,255,255,0.45); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; z-index:1; animation:bounce 2.4s infinite; }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(6px)} }

  /* TRUST BAR */
  .trust-bar { background:var(--cream); padding:60px 32px; }
  .trust-bar-inner { max-width:820px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
  .trust-item { display:flex; align-items:center; gap:18px; padding:28px 28px; border:1.5px solid rgba(7,21,40,0.15); border-radius:16px; background:var(--cream); transition:transform 0.2s ease, box-shadow 0.2s ease; cursor:default; }
  .trust-item:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(7,21,40,0.1); }
  .trust-icon { width:52px; height:52px; background:#203a3b; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--white); }
  .trust-icon svg { width:22px; height:22px; }
  .trust-text { display:flex; flex-direction:column; gap:3px; }
  .trust-heading { font-size:16px; font-weight:500; color:#203a3b; line-height:1.3; }
  .trust-sub { font-size:13px; font-weight:400; color:var(--text-mid); line-height:1.5; }

  /* SECTION SHARED */
  section { padding:80px 32px; }
  .section-inner { max-width:1080px; margin:0 auto; }
  .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 14px;
    display: block;
}
 .section-heading {
    font-family: 'Abril', serif;
    font-size: clamp(24px, 4vw, 46px);
    color: #203a3b;
    line-height: 1.3;
    margin-bottom: 20px;
}
  .section-sub { font-size:16px; color:var(--text-mid); line-height:1.8; max-width:680px; }

  /* SECTION DIVIDER */
  .section-divider { border:none; border-top:1px solid rgb(207 140 85 / 42%); margin:0; }

  /* EMPATHY */
  .empathy { background:#fdeed3; color:var(--text-dark); padding:80px 32px; }
  .empathy-inner { max-width:920px; margin:0 auto; text-align:center; }
  .empathy-label { color:var(--copper); font-size:11px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; margin-bottom:18px; display:block; }
  .empathy h2 { font-family:'Abril',serif; font-size:clamp(24px,4vw,46px); color:#203a3b; line-height:1.3; margin-bottom:28px; }
  .empathy h2 em { font-style:normal; color:var(--copper); }
  .empathy-body { font-size:16px; line-height:1.8; color:var(--text-mid); max-width:740px; margin:0 auto 40px; font-weight:400; }
  .empathy-body strong { color:#203a3b; font-weight:600; }
  .empathy-quote { display:inline-block; border-left:3px solid var(--copper); padding:16px 28px; text-align:left; background:rgba(7,21,40,0.04); border-radius:0 12px 12px 0; font-size:18px; font-style:italic; color:var(--text-dark); max-width:680px; line-height:1.6; }
  .empathy-quote cite { display:block; font-style:normal; font-size:13px; color:var(--copper); margin-top:10px; font-weight:400; }

  /* WHAT WE TREAT */
  .what-we-treat { background:#fdeed3; }
  .treat-header { text-align:center; max-width:680px; margin:0 auto 48px; }
  .treat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
  .treat-card { background:var(--white); border-radius:14px; padding:22px 18px; text-align:center; border:1.5px solid transparent; transition:border-color 0.2s,transform 0.2s,box-shadow 0.2s; }
  .treat-card:hover { border-color:rgba(7,21,40,0.1); transform:translateY(-4px); box-shadow:0 12px 32px rgba(7,21,40,0.1); }
  .treat-icon { display:block; margin:0 auto 10px; width:60px; height:60px; object-fit:contain; }
  .treat-card h4 { font-size:15px; font-weight:500; color:#203a3b; margin-bottom:10px; line-height:1.2; margin-top:16px; }
  .treat-card p { font-size:13px; color:var(--text-mid); line-height:1.6; }
  .treat-note { text-align:center; margin-top:40px; padding:32px 48px; background:#203a3b; border-radius:18px; max-width:920px; margin-left:auto; margin-right:auto; }
  .treat-note p { font-size:16px; color:rgba(255,255,255,0.8); line-height:1.7; }
  .treat-note strong { color:var(--copper); font-weight:500; }

  /* WHY COZUMEL */
  .why-cozumel { background:var(--white); }
  .why-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:stretch; margin-top:50px; }
  .why-image-block { position:relative; border-radius:16px; overflow:hidden; }
  .why-image-block img { width:100%; height:100%; object-fit:cover; object-position:center 70%; display:block; }
  .why-image-overlay { position:absolute; bottom:24px; left:24px; right:24px; background:#203a3b; backdrop-filter:blur(6px); padding:20px 24px; border-radius:12px; border-left:3px solid var(--copper); }
  .why-image-overlay p { color:var(--white); font-size:15px; line-height:1.6; }
  .why-image-overlay strong { color:var(--copper); }
  .why-points { display:flex; flex-direction:column; gap:28px; margin-top:10px; }
  .why-point { display:flex; gap:18px; align-items:flex-start; }
  .why-point-icon { width:36px; height:36px; background:var(--teal); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:20px; font-weight:500; }
  .why-point-body h4 { font-size:17px; font-weight:500; color:#203a3b; margin-bottom:5px; }
  .why-point-body p { font-size:16px; color:var(--text-mid); line-height:1.8; }

  /* DIFFERENTIATORS */
  .differentiators { background:#ffffff; }
  .diff-header { text-align:center; max-width:680px; margin:0 auto 56px; }
  .diff-header .section-label { color:var(--copper); }
  .diff-header .section-heading { color:#203a3b; }
  .diff-header .section-sub { color:#3d5a5c; }
  .diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
  .diff-card { background:#ffffff; border:1px solid rgb(207 140 85 / 100%); border-radius:16px; padding:32px 28px; transition:background 0.25s,transform 0.25s; }
  .diff-card:hover { background:rgba(32,58,59,0.04); transform:translateY(-4px); }
  .diff-num { font-family:'Abril',serif; font-size:48px; color:#203a3b; line-height:1; margin-bottom:16px; }
  .diff-card h3 { font-size:18px; font-weight:700; color:#203a3b; margin-bottom:10px; line-height:1.2; }
  .diff-card p { font-size:16px; color:#3d5a5c; line-height:1.8; }
  .diff-card .diff-tag { display:inline-block; background:rgba(207,140,85,0.15); color:#cf8c55; font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; padding:4px 10px; border-radius:20px; margin-bottom:14px; }

  /* FOR WHO */
  .for-who { background:var(--white); }
  .for-who-layout { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; margin-top:50px; }
  .for-who-list { display:flex; flex-direction:column; gap:16px; }
  .for-who-item { display:flex; align-items:flex-start; gap:14px; padding:18px 20px; background:var(--cream); border-radius:12px; border-left:3px solid var(--copper); }
  .checkmark { width:24px; height:24px; background:var(--teal); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
  .checkmark svg { width:12px; height:12px; }
  .for-who-item p { font-size:16px; color:var(--text-dark); line-height:1.8; }
  .for-who-item strong { color:#203a3b; }
  .for-who-callout { background:#203a3b; border-radius:20px; padding:40px 36px; color:var(--white); position:sticky; top:90px; }
  .for-who-callout h3 { font-family:'Abril',serif; font-size:26px; margin-bottom:16px; line-height:1.2; }
  .for-who-callout h3 em { font-style:normal; color:var(--copper); }
  .for-who-callout p { font-size:15px; color:rgba(255,255,255,0.85); line-height:1.7; margin-bottom:24px; }
  .callout-stat { background:rgba(255,255,255,0.07); border-radius:10px; padding:16px 18px; margin-bottom:12px; display:flex; gap:12px; align-items:center; }
  .callout-stat-num { font-family:'Abril',serif; font-size:32px; color:var(--copper); flex-shrink:0; line-height:1; }
  .callout-stat-desc { font-size:16px; color:rgba(255, 255, 255, 1); line-height:1.5; }

  /* PROGRAM STEPS */
  .program { background:var(--white); padding:80px 32px; }
  .program-inner { max-width:1080px; margin:0 auto; }
  .program-header { text-align:center; margin-bottom:56px; }
  .program-header .section-heading {
    font-family: 'Abril', serif;
    font-size: clamp(24px, 4vw, 46px);
    color: #203a3b;
    line-height: 1.3;
    margin-bottom: 20px;
}

  .program-header .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 14px;
    display: block;
}

  .program-header .section-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 680px;
}
 .program-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}
  .program-steps::before { content:''; position:absolute; top:56px; left:calc(12.5% + 24px); right:calc(12.5% + 24px); height:2px; background:rgba(7,21,40,0.1); z-index:0; }
  .step-card { background:var(--white); border:1.5px solid rgba(7,21,40,0.1); border-radius:16px; padding:32px 24px; position:relative; z-index:1; text-align:center; transition:transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
  .step-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(7,21,40,0.12); border-color:var(--copper); }
  .step-num { width:48px; height:48px; background:var(--copper); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Abril',serif; font-size:20px; color:var(--white); margin:0 auto 20px; position:relative; z-index:2; }
  .step-card h4 { font-size:18px; font-weight:700; color:#203a3b; margin-bottom:10px; }
  .step-card p { font-size:15px; color:var(--text-mid); line-height:1.7; }

  /* FAITH */
  .faith { background:#fdeed3; }
  .faith-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-top:50px; }
  .faith-body p { font-size:16px; color:var(--text-mid); line-height:1.8; margin-bottom:18px; }
  .faith-scripture { margin:32px 0; border-left:3px solid var(--copper); padding:20px 28px; background:rgba(255,255,255,0.7); border-radius:0 12px 12px 0; }
  .faith-scripture blockquote { font-size:18px; font-style:italic; color:#203a3b; line-height:1.6; margin-bottom:8px; }
  .faith-scripture cite { font-style:normal; font-size:13px; color:#203a3b; font-weight:400; letter-spacing:0.08em; text-transform:uppercase; }
  .faith-image { border-radius:20px; overflow:hidden; aspect-ratio:4/5; position:relative; }
  .faith-image img { width:100%; height:100%; object-fit:cover; }
  .faith-badge { position:absolute; top:24px; right:24px; background:var(--white); border-radius:12px; padding:14px 18px; text-align:center; box-shadow:0 8px 24px rgba(0,0,0,0.15); }
  .faith-badge-icon { font-size:22px; display:block; margin-bottom:4px; color:#203a3b; }
  .faith-badge-text { font-size:12px; font-weight:400; color:#203a3b; line-height:1.3; display:block; }

  /* GOOGLE REVIEWS */
  .google-reviews { background:var(--cream); }
  .reviews-header { text-align:center; max-width:640px; margin:0 auto 20px; }
  .reviews-rating-summary { display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:48px; flex-wrap:wrap; }
  .google-badge { display:flex; align-items:center; gap:12px; background:var(--white); border-radius:40px; padding:12px 24px; border:1.5px solid rgba(7,21,40,0.1); box-shadow:0 2px 12px rgba(0,0,0,0.06); }
  .google-g { font-size:22px; font-weight:400; background:linear-gradient(135deg,#4285f4,#ea4335,#fbbc04,#34a853); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
  .google-badge-inner .google-badge-stars { color:#f59e0b; font-size:16px; letter-spacing:1px; display:block; }
  .google-badge-inner .google-badge-label { font-size:13px; font-weight:400; color:#203a3b; display:block; }
  .google-badge-inner .google-badge-count { font-size:11px; color:var(--text-light); display:block; }
  .reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .review-card { background:var(--white); border-radius:16px; padding:28px 24px; border:1px solid rgba(7,21,40,0.08); display:flex; flex-direction:column; gap:14px; transition:transform 0.2s,box-shadow 0.2s; }
  .review-card:hover { transform:translateY(-3px); box-shadow:0 10px 30px rgba(7,21,40,0.09); }
  .review-header { display:flex; align-items:center; justify-content:space-between; }
  .review-stars { color:#f59e0b; font-size:15px; letter-spacing:1px; }
  .review-google-icon { width:24px; height:24px; background:linear-gradient(135deg,#4285f4,#ea4335,#fbbc04,#34a853); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-size:12px; font-weight:400; }
  .review-text { font-size:16px; color:var(--text-dark); line-height:1.7; font-style:italic; flex:1; }
  .review-author { display:flex; align-items:center; gap:10px; padding-top:14px; border-top:1px solid rgba(7,21,40,0.08); }
  .review-avatar { width:38px; height:38px; border-radius:50%; background:var(--teal); display:flex; align-items:center; justify-content:center; font-family:'Abril',serif; font-size:15px; color:var(--white); flex-shrink:0; }
  .review-name { font-size:13px; font-weight:400; color:#203a3b; }
  .review-meta { font-size:11px; color:var(--text-light); }
  .reviews-cta { text-align:center; margin-top:36px; }
  .reviews-cta a { display:inline-flex; align-items:center; gap:6px; color:#203a3b; font-size:16px; font-weight:500; text-decoration:none; border-bottom:1.5px solid var(--copper); padding-bottom:2px; transition:color 0.2s; }
  .reviews-cta a:hover { color:var(--white); }

  /* INSURANCE */
  .insurance { background:var(--white); }
  .insurance-header { text-align:center; max-width:640px; margin:0 auto 50px; }
  .insurance-logos {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-bottom:36px;
  }
  .ins-badge {
    background:var(--white);
    border:1.5px solid rgba(7,21,40,0.12);
    border-radius:14px;
    padding:32px 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:135px;
    transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .ins-badge:hover { border-color:var(--white); transform:translateY(-3px); box-shadow:0 8px 24px rgba(7,21,40,0.1); }
  .ins-logo { max-width:80%; max-height:80px; object-fit:contain; display:block; margin:0 auto; }
  .ins-verify-strip {
    text-align:center;
    padding:32px;
    background:var(--teal);
    border-radius:16px;
    margin-bottom:24px;
  }
  .ins-verify-strip p {
    font-family:'Abril',serif;
    font-size:clamp(20px,3vw,28px);
    color:var(--white);
    margin-bottom:0;
  }
  .ins-note { text-align:center; max-width:700px; margin:0 auto; padding:22px 32px; background:rgba(7,21,40,0.04); border-radius:12px; border-left:3px solid var(--copper); }
 .ins-note p {
    font-size: 16px;
    color: #3d5a5c;
    line-height: 1.8;
    text-align: -webkit-left;
}
  .ins-note strong { color:#203a3b; font-weight:500 }

  /* LOGISTICS */
  .logistics { background:#fdeed3; padding:80px 32px; }
  .logistics-inner { max-width:1080px; margin:0 auto; }
  .logistics-header { text-align:center; margin-bottom:56px; }
  .logistics-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
  .logistics-card { background:#fff; border:1.5px solid rgba(7,21,40,0.08); border-radius:16px; padding:32px 28px; }
  .logistics-card-icon { font-size:22px; width:36px; height:36px; background:var(--teal); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-weight:500; }
  .logistics-card h4 { font-size:20px; font-weight:500; color:#203a3b; margin-bottom:10px; }
  .logistics-card p { font-size:16px; color:#3d5a5c; line-height:1.65; }
  .logistics-card .highlight { color:var(--copper); font-weight:700; }
  .cost-compare { background:#fff; border:1.5px solid rgba(7,21,40,0.08); border-radius:20px; padding:12px; grid-column:1/-1; display:grid; grid-template-columns:1fr auto 1fr; gap:12px; align-items:stretch; text-align:center; }
  .cost-col .price { font-family:'Abril',serif; font-size:60px; color:#dcdcdc; line-height:1; margin-bottom:8px; }
  .cost-col h5 { font-size:11px; font-weight:400; letter-spacing:0.15em; text-transform:uppercase; color:#8a7e72; margin-bottom:16px; }
  .cost-col .price-note { font-size:13px; line-height:1.5; color:#8a7e72; }
  .cost-col.cozumel { background:var(--copper); border-radius:12px; position:relative; padding:32px 28px 26px; }
  .cost-col.cozumel::before {
    content: 'Our Price';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #cf8c55;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 26px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
  .cost-col.cozumel h5 { color:white; }
  .cost-col.cozumel .price { font-size:60px; color:var(--white); }
  .cost-col.cozumel .price-note { color:rgba(255,255,255,0.88); font-size:15px; font-weight:400; }
  .cost-savings-tag { display:inline-block; background:rgba(255,255,255,0.22); color:var(--white); font-size:11px; font-weight:400; letter-spacing:0.08em; text-transform:uppercase; padding:5px 14px; border-radius:20px; margin-top:14px; }
  .cost-vs { display:flex; align-items:center; justify-content:center; font-family:'Abril',serif; font-size:50px; color:rgba(7,21,40,0.15); letter-spacing:0.1em; }
  .cost-col { background:#fff; border-radius:12px; padding:32px 28px; }

  /* LEAD FORM */
  .lead-form-section { background:var(--cream); padding:80px 32px; }
  .lead-form-inner { max-width:680px; margin:0 auto; text-align:center; }
  .lead-form-inner .section-heading { color:#203a3b; }
  .lead-form-inner .section-sub { margin:0 auto 40px; }
  .form-card { background:var(--white); border-radius:20px; padding:44px 40px; box-shadow:0 20px 60px rgba(7,21,40,0.1); border:1px solid rgba(7,21,40,0.08); text-align:left; }
  .form-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
  .form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:18px; }
  .form-group label { font-size:14px; font-weight:700; color:#203a3b; letter-spacing:0.02em; }
  .form-group input, .form-group select, .form-group textarea { width:100%; padding:13px 16px; border:1.5px solid rgba(7,21,40,0.18); border-radius:10px; font-family:'Gordita',sans-serif; font-size:15px; color:var(--text-dark); background:var(--white); outline:none; transition:border-color 0.2s; }
 .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #cf8c55;
}
  .form-group textarea { min-height:135px; resize:vertical; }
  .form-group select { appearance:none; cursor:pointer; }
  .form-submit { width:100%; padding:16px; background:var(--teal); color:var(--white); font-family:'Gordita',sans-serif; font-size:16px; font-weight:500; border:none; border-radius:50px; cursor:pointer; letter-spacing:0.02em; transition:all 0.25s; margin-top:6px; }
  .form-submit:hover { background:var(--teal-light); transform:translateY(-1px); box-shadow:0 8px 28px rgba(7,21,40,0.3); }
  .form-privacy { text-align:center; margin-top:16px; font-size:12px; color:var(--text-light); line-height:1.6; }
  .form-privacy a { color:var(--copper); text-decoration:none; }
  .david-note { display:flex; align-items:center; gap:14px; background:rgba(7,21,40,0.04); border-radius:12px; padding:16px 18px; margin-top:20px; border:1px solid rgba(7,21,40,0.08); }
  .david-avatar { width:44px; height:44px; background:var(--teal); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Abril',serif; font-size:18px; color:var(--white); flex-shrink:0; }
  .david-note-text { font-size:13px; color:var(--text-mid); line-height:1.55; }
  .david-note-text strong { color:#203a3b; }
  .form-submit:disabled { opacity:0.7; cursor:not-allowed; transform:none; box-shadow:none; }
  .form-success { text-align:center; padding:40px 20px; }
  .form-success-icon { width:64px; height:64px; background:var(--teal); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:32px; font-weight:700; margin:0 auto 20px; }
  .form-success h3 { font-family:'Abril',serif; font-size:24px; color:#203a3b; margin-bottom:12px; }
  .form-success p { font-size:15px; color:var(--text-mid); line-height:1.7; }
  .form-success a { color:var(--copper); font-weight:500; text-decoration:none; }
  .form-error { background:rgba(200,50,50,0.08); border:1px solid rgba(200,50,50,0.2); border-radius:10px; padding:14px 18px; margin-bottom:12px; text-align:center; }
  .form-error p { font-size:14px; color:#c83232; margin:0; }
  .form-error a { color:var(--copper); font-weight:500; text-decoration:none; }

  /* PHONE STRIP */
  .phone-strip { background:var(--copper); padding:36px 32px; text-align:center; }
  .phone-strip p { font-size:15px; color:rgba(255,255,255,0.8); margin-bottom:10px; font-weight:400; }
  .phone-strip a { font-family:'Abril',serif; font-size:clamp(28px,5vw,44px); color:var(--white); text-decoration:none; display:block; letter-spacing:-0.01em; }
  .phone-strip a:hover { opacity:0.9; }
  .phone-strip-sub { font-size:13px; color:rgba(255,255,255,0.65); margin-top:6px; }

  /* FAQ */
  .faq { background:var(--white); }
  .faq-header { text-align:center; max-width:600px; margin:0 auto 50px; }
  .faq-list { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
  .faq-item { border:1.5px solid rgba(7,21,40,0.1); border-radius:14px; overflow:hidden; transition:border-color 0.2s; }
  .faq-item.open {     border-color: #cf8c55; }
  .faq-q { display:flex; justify-content:space-between; align-items:center; padding:20px 24px; cursor:pointer; gap:16px; }
  .faq-q-text { font-size:18px; font-weight:500; color:#203a3b; line-height:1.6; }
  .faq-toggle { width:28px; height:28px; background:var(--teal); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background 0.2s,transform 0.3s; }
  .faq-item.open .faq-toggle { background:var(--copper); transform:rotate(45deg); }
  .faq-toggle svg { width:12px; height:12px; }
  .faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
  .faq-a-inner { padding:0 24px 22px; font-size:15px; color:var(--text-mid); line-height:1.7; }
  .faq-item.open .faq-a { max-height:300px; }

  /* FOOTER */
  footer { background:#152828; padding:56px 32px 32px; }
  .footer-inner { max-width:1080px; margin:0 auto; }
  .footer-top { display:grid; grid-template-columns:2fr 1fr 1fr; gap:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:32px; }
  .footer-brand h3 { font-family:'Abril',serif; font-size:22px; color:var(--white); margin-bottom:4px; }
  .footer-brand-sub { font-size:11px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--white); margin-bottom:16px; display:block; }
  .footer-brand p { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.8; max-width:320px; }
  .footer-col h5 { font-size:13px; font-weight:400; color:var(--white); letter-spacing:0.06em; margin-bottom:16px; }
  .footer-col ul { list-style:none; }
  .footer-col ul li { margin-bottom:10px; }
  .footer-col ul li a { font-size:16px; color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; }
  .footer-col ul li a:hover { color:var(--white); }
  .footer-bottom { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
  .footer-bottom p { font-size:12px; color:rgba(255,255,255,0.45); }
  .footer-disclaimer { max-width:1080px; margin:24px auto 0; padding-top:24px; border-top:1px solid rgba(255,255,255,0.05); }
  .footer-disclaimer p { font-size:11px; color:rgba(255,255,255,0.22); line-height:1.7; text-align:center; }

  /* FLOAT CTA */
  .float-cta { display:none; position:fixed; bottom:0; left:0; right:0; background:var(--teal); padding:12px 20px; z-index:99; border-top:1px solid rgba(207,140,85,0.3); text-align:center; }
  .float-cta a { display:block; background:var(--copper); color:var(--white); font-size:15px; font-weight:500; text-decoration:none; padding:13px; border-radius:40px; }

  /* TREATMENT MODALITIES */
  .modalities { background: white; padding:80px 32px; }
  .modalities-header { text-align:center; max-width:720px; margin:0 auto 56px; }
  .mod-table-wrap {
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(7,21,40,0.12);
    box-shadow:0 4px 32px rgba(7,21,40,0.08);
  }
  .mod-columns { display:grid; grid-template-columns:1fr 1fr; }
  .mod-col { display:flex; flex-direction:column; }
  .mod-col + .mod-col { border-left:1px solid rgba(7,21,40,0.1); }
  .mod-col-head {
    padding:22px 28px;
  }
  .mod-col-head-therapy { background:var(--teal); }
  .mod-col-head-alt { background:var(--copper); }
  .mod-col-head-icon {
    width:38px; height:38px;
    border-radius:9px;
    background:rgba(255,255,255,0.15);
    display:flex; align-items:center; justify-content:center;
    font-size:18px;
    flex-shrink:0;
  }
  .mod-col-head-text { display:flex; flex-direction:column; gap:2px; }
  .mod-col-head-title {
    font-family:'Abril',serif;
    font-size:30px;
    color:var(--white);
    line-height:1.1;
  }
.mod-col-head-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
  .mod-rows { background:var(--white); flex:1; }
  .mod-row {
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 28px;
    border-bottom:1px solid rgba(7,21,40,0.06);
    transition:background 0.15s;
  }
  .mod-row:last-child { border-bottom:none; }
  .mod-row:hover { background:rgba(7,21,40,0.025); }
  .mod-row-dot-t {
    width:7px; height:7px;
    border-radius:50%;
    background:var(--teal);
    flex-shrink:0;
  }
  .mod-row-dot-a {
    width:7px; height:7px;
    border-radius:50%;
    background:var(--copper);
    flex-shrink:0;
  }
.mod-row-name {
    font-size: 16px;
    font-weight: 700;
    flex: 1;
    min-height: 25px;
}
  .mod-row-abbr {
    font-size:10px;
    font-weight:400;
    letter-spacing:0.07em;
    color:var(--white);
    background:var(--teal);
    padding:3px 8px;
    border-radius:4px;
    flex-shrink:0;
    white-space:nowrap;
  }
  .mod-row-abbr-alt {
    background:var(--copper);
  }
  .mod-row-featured {
    background:rgba(207,140,85,0.06);
  }
  .mod-row-featured:hover { background:rgba(207,140,85,0.1); }
  .mod-row-featured .mod-row-name { color:var(--copper); }
.mod-partner-badge {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper);
    border: 1px solid var(--copper);
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
    background: transparent;
}
  .modalities-footer {
    margin-top:32px;
    background:var(--teal);
    border-radius:14px;
    padding:32px 36px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
  }
  .modalities-footer p {
    font-size:17px;
    color:rgba(255,255,255,0.85);
    line-height:1.6;
    max-width:560px;
    font-style:italic;
  }

    /* PHOTO GALLERY */
  .photo-gallery { background:#fdeed3; padding:80px 32px; }
  .gallery-inner { max-width:1100px; margin:0 auto; }
  .gallery-label { margin-bottom:0; }
  .slideshow-wrapper { position:relative; }
  .slideshow { position:relative; width:100%; aspect-ratio:16/9; border-radius:16px; overflow:hidden; }
  .slideshow-slide { position:absolute; inset:0; opacity:0; transition:opacity 0.8s ease; }
  .slideshow-slide.active { opacity:1; }
  .slideshow-slide img { width:100%; height:100%; object-fit:cover; }
  .slideshow-caption { position:absolute; bottom:0; left:0; right:0; padding:20px 28px; background:linear-gradient(transparent, rgba(0,0,0,0.7)); color:var(--white); font-size:17px; }
  .slideshow-fullscreen-btn { position:absolute; top:12px; right:12px; z-index:10; width:40px; height:40px; border-radius:8px; background:rgba(0,0,0,0.5); border:none; cursor:pointer; color:#fff; font-size:20px; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
  .slideshow-fullscreen-btn:hover { background:rgba(0,0,0,0.75); }
  .slideshow-controls { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:20px; }
  .slideshow-nav { width:44px; height:44px; border-radius:50%; background:var(--teal); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:20px; color:var(--white); flex-shrink:0; transition:background 0.2s; }
  .slideshow-nav:hover { background:var(--teal-light); }
  .slideshow-thumbs { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; max-width:100%; }
  .slideshow-thumb { flex:0 0 auto; width:100px; height:64px; border-radius:8px; overflow:hidden; cursor:pointer; opacity:0.45; transition:opacity 0.3s, border-color 0.3s; border:2px solid transparent; }
  .slideshow-thumb.active { opacity:1; border-color:var(--copper); }
  .slideshow-thumb:hover { opacity:0.8; }
  .slideshow-thumb img { width:100%; height:100%; object-fit:cover; }
  /* Fullscreen mode */
  .gallery-inner.is-fullscreen { background:#000; display:flex; flex-direction:column; justify-content:center; padding:0; max-width:100%; }
  .gallery-inner.is-fullscreen .gallery-label { display:none; }
  .gallery-inner.is-fullscreen .slideshow { aspect-ratio:auto; border-radius:0; flex:1; }
  .gallery-inner.is-fullscreen .slideshow-slide img { object-fit:contain; background:#000; }
  .gallery-inner.is-fullscreen .slideshow-controls { position:absolute; bottom:0; left:0; right:0; margin:0; padding:12px 0; background:rgba(0,0,0,0.6); }
  .gallery-inner.is-fullscreen .slideshow-nav { background:rgba(255,255,255,0.25); }
  .gallery-inner.is-fullscreen .slideshow-thumb { border-color:transparent; }
  .gallery-inner.is-fullscreen .slideshow-thumb.active { border-color:var(--copper); }
  .gallery-inner.is-fullscreen .slideshow-thumbs { flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; justify-content:flex-start; scrollbar-width:none; }
  .gallery-inner.is-fullscreen .slideshow-thumbs::-webkit-scrollbar { display:none; }
  .gallery-inner.is-fullscreen .slideshow-caption { font-size:18px; }
  .gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:auto;
    gap:12px;
  }
  .gallery-item {
    position:relative;
    border-radius:12px;
    overflow:hidden;
    aspect-ratio:16/10;
    cursor:default;
  }
  .gallery-item.gallery-large {
    grid-column:span 2;
    aspect-ratio:16/9;
  }
  .gallery-item.gallery-wide {
    grid-column:span 2;
    aspect-ratio:16/8;
  }
  .gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.5s ease;
  }
  .gallery-item:hover img { transform:scale(1.04); }
  .gallery-caption {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:20px 16px 14px;
    background:linear-gradient(to top,rgba(21,40,40,0.75) 0%,transparent 100%);
    color:rgba(253,238,211,0.9);
    font-size:12px;
    font-weight:400;
    letter-spacing:0.04em;
    opacity:0;
    transition:opacity 0.3s;
  }
  .gallery-item:hover .gallery-caption { opacity:1; }

  /* TRAVEL INFO */
  .travel-info { background: var(--white); padding: 80px 32px; }
  .travel-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
  .travel-glance {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  .travel-glance-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border: 1.5px solid rgba(7,21,40,0.1);
    border-radius: 14px;
    background: var(--cream);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .travel-glance-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(7,21,40,0.08);
  }
  .travel-glance-icon {
    width: 44px; height: 44px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--white);
  }
  .travel-glance-icon svg { width: 20px; height: 20px; }
  .travel-glance-title {
    font-size: 15px; font-weight: 500;
    color: #203a3b; display: block; line-height: 1.3;
  }
  .travel-glance-sub {
    font-size: 13px; color: var(--text-mid);
    display: block; line-height: 1.4;
  }
  .travel-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex; flex-direction: column; gap: 14px;
  }
  .travel-item {
    border: 1.5px solid rgba(7,21,40,0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .travel-item.open { border-color: var(--copper); }
  .travel-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
  }
  .travel-q-left {
    display: flex; align-items: center; gap: 16px; flex: 1;
  }
  .travel-q-flag { font-size: 28px; flex-shrink: 0; line-height: 1; }
  .travel-q-text {
    font-size: 18px; font-weight: 500;
    color: #203a3b; display: block; line-height: 1.4;
  }
  .travel-q-summary {
    font-size: 14px; color: var(--text-mid);
    display: block; line-height: 1.4; margin-top: 2px;
  }
  .travel-toggle {
    width: 28px; height: 28px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
  }
  .travel-item.open .travel-toggle {
    background: var(--copper);
    transform: rotate(45deg);
  }
  .travel-toggle svg { width: 12px; height: 12px; }
  .travel-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .travel-item.open .travel-a { max-height: 800px; }
  .travel-a-inner { padding: 0 24px 28px; }
  .travel-detail-group { margin-bottom: 20px; }
  .travel-detail-group:last-child { margin-bottom: 0; }
  .travel-detail-group h5 {
    font-size: 14px; font-weight: 500;
    color: var(--copper); margin-bottom: 6px;
    letter-spacing: 0.02em;
  }
  .travel-detail-group p {
    font-size: 15px; color: var(--text-mid); line-height: 1.7;
  }
  .travel-detail-group p strong { color: #203a3b; }
  .travel-detail-group ul {
    list-style: none; padding: 0;
  }
  .travel-detail-group ul li {
    font-size: 15px; color: var(--text-mid); line-height: 1.7;
    padding: 4px 0 4px 18px;
    position: relative;
  }
  .travel-detail-group ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--copper);
    border-radius: 50%;
    position: absolute;
    left: 0; top: 12px;
  }
  .travel-detail-group ul li strong { color: #203a3b; }
  .travel-detail-group a {
    color: var(--copper); text-decoration: none; font-weight: 500;
  }
  .travel-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    margin-top: 10px;
  }
  .travel-city-grid span {
    font-size: 14px; color: var(--text-mid);
    padding: 4px 0;
  }
  .travel-detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .travel-passport-col h5 {
    font-size: 16px; font-weight: 500;
    color: #203a3b; margin-bottom: 12px;
  }
  .travel-passport-col ul { list-style: none; padding: 0; }
  .travel-passport-col ul li {
    font-size: 14px; color: var(--text-mid); line-height: 1.7;
    padding: 3px 0 3px 18px; position: relative;
  }
  .travel-passport-col ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--copper);
    border-radius: 50%;
    position: absolute;
    left: 0; top: 10px;
  }
  .travel-passport-col ul li strong { color: #203a3b; }
  .travel-passport-col a {
    color: var(--copper); text-decoration: none; font-weight: 500;
  }
  .travel-cta-strip {
    margin-top: 40px;
    background: var(--teal);
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .travel-cta-strip p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 560px;
    font-style: italic;
  }

  /* RESPONSIVE */
  @media(max-width:900px){
    .diff-grid{grid-template-columns:1fr}
    .program-steps{grid-template-columns:1fr}
    .program-steps::before{display:none}
    .reviews-grid{grid-template-columns:1fr}
    .treat-grid{grid-template-columns:repeat(2,1fr)}
    .why-grid,.faith-layout,.for-who-layout{grid-template-columns:1fr}
    .why-grid{gap:32px}
    .faith-layout{gap:32px}
    .for-who-layout{gap:32px}
    .for-who-callout{position:static}
    .logistics-grid{grid-template-columns:1fr}
    .cost-compare{grid-template-columns:1fr;gap:20px}
    .footer-top{grid-template-columns:1fr;gap:32px}
    .footer-bottom{flex-direction:column;text-align:center}
    .gallery-grid{grid-template-columns:1fr}
    .gallery-item.gallery-large,.gallery-item.gallery-wide{grid-column:span 1}
    .insurance-logos{grid-template-columns:1fr}
    .insurance-logos .ins-badge:nth-last-child(2),.insurance-logos .ins-badge:nth-last-child(1){grid-column:auto}
    .team-card-featured{grid-template-columns:1fr}
    .team-clinicians{grid-template-columns:1fr}
    .mod-columns{grid-template-columns:1fr}
    .mod-col+.mod-col{border-left:none;border-top:1px solid rgba(7,21,40,0.1)}
    .modalities-footer{flex-direction:column;text-align:center}
    .trust-bar-inner{grid-template-columns:1fr}
    .travel-glance{grid-template-columns:repeat(2,1fr)}
    .travel-detail-cols{grid-template-columns:1fr}
    .travel-city-grid{grid-template-columns:repeat(2,1fr)}
    .travel-cta-strip{flex-direction:column;text-align:center}
  }
  @media(max-width:640px){
    section{padding:60px 20px}
    .empathy{padding:60px 20px}
    .program{padding:60px 20px}
    .modalities{padding:60px 20px}
    .logistics{padding:60px 20px}
    .lead-form-section{padding:60px 20px}
    .photo-gallery{padding:60px 20px}
    .form-card{padding:28px 22px}
    .form-row{grid-template-columns:1fr}
    .diff-grid{grid-template-columns:1fr}
    .treat-grid{grid-template-columns:1fr}
    .reviews-grid{grid-template-columns:1fr}
    .insurance-logos{grid-template-columns:1fr}
    .program-steps{grid-template-columns:1fr}
    .trust-bar-inner{grid-template-columns:1fr}
    .gallery-grid{grid-template-columns:1fr}
    .gallery-item.gallery-large,.gallery-item.gallery-wide{grid-column:span 1;aspect-ratio:16/9}
    .team-clinicians{grid-template-columns:1fr}
    .nav{padding:10px 18px}
    .nav-logo img{height:42px !important}
    .nav-cta{font-size:12px;padding:8px 14px}
    .hero-eyebrow{margin-top:32px}
    .treat-icon{width:48px;height:48px}
    .treat-note{padding:24px 20px}
    .trust-bar{padding:50px 24px}
    .float-cta{display:none}
    .float-cta.visible{display:block}
    body{padding-bottom:72px}
    .why-image-block{aspect-ratio:3/4}
    .why-image-overlay{bottom:16px;left:16px;right:16px;padding:14px 16px}
    .why-image-overlay p{font-size:13px;line-height:1.5}
    .slideshow-thumb{width:64px;height:44px;border-radius:6px}
    .slideshow-nav{width:36px;height:36px;font-size:16px}
    .slideshow-controls{gap:8px}
    .slideshow-caption{font-size:16px;padding:14px 18px}
    .slideshow-thumbs{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;justify-content:flex-start;scrollbar-width:none;padding:4px 0}
    .slideshow-thumbs::-webkit-scrollbar{display:none}
    .team-info{padding:24px 22px}
    .team-name{font-size:26px}
    .modality-item{padding:14px 20px}
    .section-heading, .empathy h2, .program-header .section-heading { font-size:32px; }
    .hero { min-height:auto; height:85dvh; height:85svh; }
    .hero-inner { padding:40px 24px 40px; }
    .hero h1 { font-size:44px; }
    .faq-item.open .faq-a{max-height:600px}
    .travel-info{padding:60px 20px}
    .travel-glance{grid-template-columns:1fr}
    .travel-city-grid{grid-template-columns:1fr}
    .travel-item.open .travel-a{max-height:1200px}
    .empathy-quote{padding:14px 20px;font-size:16px}
    .faith-image{aspect-ratio:16/10}
    .for-who-callout{padding:32px 24px}
    .logistics-card{padding:24px 20px}
    .cost-vs{font-size:32px}
  }

/* EXTRACTED INLINE STYLES */
.nav-logo img { height:68px; width:auto; display:block; }
.footer-brand img { height:54px; width:auto; margin-bottom:12px; display:block; }
.hero-scroll { text-decoration:none; cursor:pointer; }
.hero-bg-layer-1 { background-image:url(images/hero-img-1.jpg); }
.hero-bg-layer-2 { background-image:url(images/hero-img-2.jpeg); }
.hero-bg-layer-3 { background-image:url(images/hero-img-3a.jpeg); }
.hero-bg-layer-4 { background-image:url(images/hero-img-4.jpg); }
.hero-bg-layer-5 { background-image:url(images/hero-img-4a.jpeg); }
.hero-bg-layer-6 { background-image:url(images/hero-img-5.jpg); }
.hero-bg-layer-7 { background-image:url(images/hero-img-5a.jpeg); }
.hero-bg-layer-8 { background-image:url(images/hero-img-6.jpg); }
.u-mx-auto { margin:0 auto; }
.u-mb-30 { margin-bottom:30px; }
.u-mb-36 { margin-bottom:36px; }
.u-mb-40 { margin-bottom:40px; }
.u-mt-4 { margin-top:4px; }
.u-mt-32 { margin-top:32px; }
.u-text-center { text-align:center; }
.u-text-white { color:var(--white); }
.u-text-white-70 { color:rgba(255,255,255,0.7); }
.u-heading-teal { color:#203a3b; }
.btn-primary-block { width:100%; text-align:center; margin-top:20px; display:block; }
.btn-primary-inline { display:inline-block; margin-top:14px; }
.btn-primary-nowrap { white-space:nowrap; flex-shrink:0; }
.reveal-on-scroll { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal-on-scroll.is-visible { opacity:1; transform:translateY(0); }
