/* BERG FEINFIELD PROJECT TEST */
/* ============================================================
   BERG-FEINFIELD VISION CORRECTION
   Shared Design System Stylesheet  ·  style.css
   ------------------------------------------------------------
   Every Berg-Feinfield landing page must link this file:
     <link rel="stylesheet" href="style.css">
   Only page-specific layout may remain inline on a page, and
   only when absolutely necessary. Do NOT add new heading
   styles, button styles, colors, spacing, breakpoints, or
   typography here without explicit sign-off.
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root{
  /* Brand colors */
  --teal-deep:    #2A4347;   /* H1/H2 on light, dark backgrounds */
  --teal-deep-2:  #21363a;   /* darker variant for depth */
  --sage:         #7FA9A3;   /* H2 on dark, accents */
  --sage-soft:    #b9d0cb;
  --cream:        #FFFFFF;   /* page background (white) */
  --cream-2:      #FFFFFF;
  --white:        #FFFFFF;
  --ink:          #000000;   /* body text on light */
  --ink-soft:     #5a6b69;
  --line:         #e6e8e8;   /* neutral border */
  --icon-bg:      #eef4f3;   /* soft sage tint for icon circles */
  --btn:          #497074;   /* button base */
  --btn-hover:    #3f6367;   /* button hover */
  --band-soft:    #E6F1F2;   /* light teal section band */
  --band-faint:   #F2F8F9;   /* very subtle teal wash — faint section tint */

  /* Typography */
  --font-head: "Crimson Text", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale (brand spec mapped to px, fluid via clamp) */
  --h1: clamp(39px, 5.36vw, 61px);   /* SINGLE global H1 size — drives every page incl. hero. Change here to update all pages. */
  --h2: 50px;   /* desktop; tablet/mobile overridden in media queries */
  --h3: 38px;   /* feature / card / step titles; mobile overridden below */
  --body: 18px;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(56px, 8vw, 104px);
  --radius: 14px;
  --shadow: 0 18px 40px rgba(42,67,71,.12);
  /* WP HERO OFFSET — legacy top padding that made the hero clear the old
     overlapping WordPress header/nav. The menu now has a solid background
     and no longer overlaps, so this offset is neutralized (0). */
  --wp-hero-offset: 0px;
}

/* ============================================================
   BASE / RESET
   ============================================================ */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:var(--body);
  line-height:1.65;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto;}
a{color:inherit;text-decoration:none;}
h1,h2,h3{font-family:var(--font-head);font-weight:600;margin:0 0 .5em;line-height:1.12;color:var(--teal-deep);}
h1{font-size:var(--h1);line-height:1.05;}
h2{font-size:var(--h2);font-weight:600;line-height:.98;letter-spacing:normal;max-width:850px;margin-inline:auto;}
h3{font-size:var(--h3);font-weight:600;line-height:1.1;}
p{margin:0 0 1.1em;}
p:last-child{margin-bottom:0;}

.bfvc-container{max-width:var(--maxw);margin:0 auto;padding-inline:var(--gutter);}
.bfvc-section{padding-block:var(--section-y);}
.eyebrow{
  font-family:var(--font-body);font-weight:600;font-size:13px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--sage);margin:0 0 14px;
}
/* Supporting lead-in statement (serif standfirst) */
.lead{
  font-family:var(--font-head);font-weight:600;
  font-size:clamp(22px,2.1vw,26px);line-height:1.35;
  color:#000000;max-width:780px;margin-inline:auto;
}
.center{text-align:center;}
.center .lead{margin-inline:auto;}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  font-family:"Inter",var(--font-body);font-weight:800;font-size:15px;letter-spacing:.02em;text-transform:uppercase;
  padding:15px 32px;border-radius:999px;border:0;
  background:var(--btn);color:#ffffff;text-shadow:none;
  cursor:pointer;transition:all .22s ease;white-space:nowrap;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;
}
.btn:hover{background:var(--btn-hover);color:#ffffff;transform:translateY(-2px);}
/* Breathing room above CTAs that follow text content */
p + .btn,
ul + .btn,
.lead + .btn,
.checklist + .btn{margin-top:38px;}
/* All button variants share the unified brand style */
.btn-primary,.btn-outline,.btn-dark,.btn-on-light{background:var(--btn);color:#ffffff;border:0;}
.btn-primary:hover,.btn-outline:hover,.btn-dark:hover,.btn-on-light:hover{background:var(--btn-hover);color:#ffffff;}

/* ============================================================
   HERO
   ============================================================ */
.bfvc-hero{
  padding-top:var(--wp-hero-offset);
  background:linear-gradient(150deg,rgba(33,54,58,.82) 0%,rgba(33,54,58,.60) 100%),
    url('https://bergfeinfield.com/wp-content/uploads/header-backgorund-section.webp') center center / cover no-repeat;
  color:var(--white);position:relative;overflow:hidden;
}
.bfvc-hero::after{
  content:"";position:absolute;right:-12%;top:-20%;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle,rgba(127,169,163,.30),transparent 68%);
}
.hero-inner{
  position:relative;z-index:1;padding-block:clamp(72px,9vw,128px);
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-areas:"head media" "copy media" "cta media";
  column-gap:clamp(32px,5vw,72px);align-items:center;
}
.hero-head{grid-area:head;}
.bfvc-hero h1{color:var(--white);font-size:var(--h1);line-height:1.05;margin-bottom:26px;}
.hero-divider{display:block;width:77px;height:2px;background:var(--sage);border:0;margin:0 0 10px;}
.bfvc-hero p{grid-area:copy;font-family:var(--font-body);font-weight:400;font-size:21px;line-height:1.5;color:rgba(255,255,255,.9);max-width:730px;margin:0 0 31px;}
.hero-actions{grid-area:cta;display:flex;flex-wrap:wrap;gap:13px;}
.hero-media{grid-area:media;}
.hero-media img{width:100%;height:clamp(420px,48vw,600px);object-fit:cover;border-radius:18px;display:block;}

/* ============================================================
   SECTION BACKGROUND TREATMENTS
   Shared LA palm-tree texture + soft white scrim. Page-specific
   layout for #what lives on the individual page.
   ============================================================ */
#what{
  position:relative;
  background-image:url('https://bergfeinfield.com/wp-content/uploads/palm-trees.jpg');
  background-size:cover;background-position:center center;background-repeat:no-repeat;
}
#what::before{
  content:"";position:absolute;inset:0;background:rgba(255,255,255,.20);pointer-events:none;
}
#what > .bfvc-container{position:relative;z-index:1;}

/* ============================================================
   SPLIT (image / text) LAYOUT
   ============================================================ */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,72px);align-items:center;}
.split.reverse .split-media{order:2;}
.split-media img{border-radius:var(--radius);box-shadow:var(--shadow);width:100%;aspect-ratio:4/3;object-fit:cover;}
.media-placeholder{
  border-radius:var(--radius);box-shadow:var(--shadow);width:100%;aspect-ratio:4/3;
  background:linear-gradient(135deg,var(--sage-soft),var(--sage));
  display:flex;align-items:center;justify-content:center;color:var(--teal-deep);
  font-family:var(--font-head);font-size:20px;text-align:center;padding:24px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:48px;}
.bfvc-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:56px 48px;min-height:420px;box-shadow:0 8px 24px rgba(42,67,71,.06);transition:transform .25s,box-shadow .25s;
}
.bfvc-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
.bfvc-card .icon{
  width:66px;height:66px;border-radius:50%;background:var(--icon-bg);
  display:flex;align-items:center;justify-content:center;margin-bottom:26px;color:var(--sage);
}
.bfvc-card .icon svg{width:32px;height:32px;}
.bfvc-card h3{margin-bottom:18px;font-size:34px;line-height:1.2;font-family:"Inter",var(--font-body);font-weight:800;color:var(--teal-deep);}
.bfvc-card p{font-size:1.1rem;color:#000000;}

/* ============================================================
   DARK BAND
   ============================================================ */
.band-dark{background:var(--teal-deep);color:var(--white);}
.band-dark h2{color:var(--white);}
.band-dark .eyebrow{color:var(--sage);}
.band-dark .lead{color:#7fa9a3;}
.band-dark .media-placeholder{background:linear-gradient(135deg,#35565a,#22383c);color:var(--sage-soft);}

/* ============================================================
   BENEFITS / PROCESS (light numbered cards)
   ============================================================ */
#benefits{background:var(--band-soft);color:#000000;padding-block:clamp(72px,10vw,136px);border-top-right-radius:clamp(90px,16vw,220px);}
#benefits h2{color:var(--teal-deep);}
.benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:44px;margin-top:88px;}
.benefit{
  position:relative;
  text-align:left;
  background:#ffffff;
  border:0;border-top:3px solid var(--teal-deep);
  border-radius:18px;
  padding:48px 41px;
  box-shadow:0 18px 44px rgba(0,0,0,.12);
}
.benefit .num{
  position:absolute;top:0;left:41px;transform:translateY(-50%);z-index:2;
  background:var(--sage);color:#ffffff;
  font-family:"Inter",var(--font-body);font-weight:700;font-size:13px;letter-spacing:.08em;
  padding:6px 14px;border-radius:8px;
}
.benefit::before{
  position:absolute;top:24px;right:22px;z-index:0;pointer-events:none;
  font-family:"Inter",var(--font-body);font-weight:800;font-size:120px;line-height:1;
  color:rgba(42,67,71,.06);
}
.benefit:nth-child(1)::before{content:"01";}
.benefit:nth-child(2)::before{content:"02";}
.benefit:nth-child(3)::before{content:"03";}
.benefit h3{position:relative;z-index:1;color:var(--teal-deep);font-size:32px;line-height:1.15;font-family:"Inter",var(--font-body);font-weight:800;margin-bottom:18px;}
.benefit p{position:relative;z-index:1;color:#000000;font-size:1rem;line-height:1.6;}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist{list-style:none;padding:0;margin:0 0 28px;display:grid;gap:14px;}
.checklist li{display:flex;gap:14px;align-items:flex-start;font-size:1.02rem;}
.checklist svg{flex:0 0 auto;margin-top:4px;color:var(--sage);}

/* ============================================================
   IMAGE TREATMENT — subtle brand-teal color grade
   ============================================================ */
.hero-media,.split-media,.step-media{position:relative;}
.hero-media::after,.split-media::after,.step-media::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:var(--teal-deep);opacity:.10;mix-blend-mode:multiply;border-radius:var(--radius);
}
.hero-media::after{border-radius:18px;}

/* ============================================================
   FAQ
   ============================================================ */
.faq{max-width:880px;margin:40px auto 0;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%;text-align:left;background:none;border:0;cursor:pointer;
  font-family:"Inter",var(--font-body);font-size:21px;font-weight:800;line-height:1.2;color:var(--teal-deep);
  padding:22px 44px 22px 0;position:relative;
}
.faq-q::after{
  content:"+";position:absolute;right:6px;top:50%;transform:translateY(-50%);
  font-size:26px;color:var(--sage);transition:transform .25s;font-family:var(--font-body);
}
.faq-item.open .faq-q::after{content:"–";}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.faq-a-inner{padding:0 0 22px;color:#000000;font-size:1rem;}
.faq-item.open .faq-a{max-height:900px;}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-band{
  position:relative;overflow:hidden;text-align:center;color:var(--ink);
  background-image:url('https://bergfeinfield.com/wp-content/uploads/palm-trees-cta.webp');
  background-size:cover;background-position:center center;background-repeat:no-repeat;
}
.cta-band::before{
  content:"";position:absolute;inset:0;background:rgba(255,255,255,.20);pointer-events:none;
}
.cta-band > .bfvc-container{position:relative;z-index:1;}
.cta-band h2{color:var(--teal-deep);}
.cta-band p{
  color:#000000;max-width:780px;margin-inline:auto;
  font-family:var(--font-head);font-weight:600;
  font-size:clamp(22px,2.1vw,26px);line-height:1.35;
}
.cta-band .hero-actions{justify-content:center;position:relative;z-index:1;}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:900px){
  :root{--h2:48px; --wp-hero-offset:0px;}   /* tablet */
  .hero-inner{grid-template-columns:1fr;grid-template-areas:"head" "media" "copy" "cta";row-gap:28px;}
  .hero-media img{height:clamp(320px,72vw,460px);}
  .card-grid,.benefit-grid{grid-template-columns:1fr 1fr;}
  .split{grid-template-columns:1fr;}
  .split.reverse .split-media{order:0;}
}
@media (max-width:600px){
  :root{--h2:38px;--h3:34px; --wp-hero-offset:0px;}   /* mobile */
  .card-grid,.benefit-grid{grid-template-columns:1fr;}
  .hero-actions .btn{width:100%;}
}

/* ============================================================
   WORDPRESS / ELEMENTOR ARMOR
   Scoped to .lasik-page (the brand page wrapper) with
   !important on typography & spacing so theme / Elementor
   global CSS cannot override the design system.
   ============================================================ */
.lasik-page,.lasik-page *,.lasik-page *::before,.lasik-page *::after{box-sizing:border-box;}
.lasik-page{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif!important;
  font-size:18px!important;line-height:1.65!important;color:#000000;
  -webkit-font-smoothing:antialiased;
}
/* Generic element guards */
.lasik-page h1,.lasik-page h2,.lasik-page h3,.lasik-page h4{margin-top:0!important;letter-spacing:normal!important;text-transform:none!important;}
.lasik-page p{font-family:"Inter",sans-serif!important;font-weight:400!important;font-size:18px!important;line-height:1.65!important;letter-spacing:normal!important;text-transform:none!important;color:#000000!important;margin:0 0 1.1em!important;}
.lasik-page p:last-child{margin-bottom:0!important;}
.lasik-page a{text-decoration:none!important;}
.lasik-page ul{list-style:none!important;margin:0!important;padding:0!important;}
.lasik-page img{max-width:100%!important;height:auto!important;display:block;}

/* Hero */
.lasik-page .bfvc-hero h1{font-family:"Crimson Text",Georgia,serif!important;font-weight:600!important;font-size:var(--h1)!important;line-height:1.05!important;color:#ffffff!important;margin:0 0 26px!important;}
.lasik-page .bfvc-hero p{font-family:"Inter",sans-serif!important;font-weight:400!important;font-size:21px!important;line-height:1.5!important;color:rgba(255,255,255,.9)!important;max-width:730px!important;margin:0 0 31px!important;}

/* Section titles (H2) */
.lasik-page h2{font-family:"Crimson Text",Georgia,serif!important;font-weight:600!important;font-size:var(--h2)!important;line-height:.98!important;max-width:850px!important;margin:0 auto .5em!important;color:var(--teal-deep)!important;}

/* Section copy / lead-in */
.lasik-page .lead{font-family:"Crimson Text",Georgia,serif!important;font-weight:600!important;font-size:clamp(22px,2.1vw,26px)!important;line-height:1.35!important;max-width:780px!important;margin:0 auto!important;color:#000000!important;}

/* Buttons */
.lasik-page .btn,.lasik-page .btn-primary,.lasik-page .btn-secondary,.lasik-page .btn-outline,.lasik-page .btn-on-light,.lasik-page .btn-dark{
  font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:15px!important;
  letter-spacing:.02em!important;text-transform:uppercase!important;
  padding:15px 32px!important;border-radius:999px!important;border:0!important;
  background:#497074!important;color:#ffffff!important;text-decoration:none!important;
}
.lasik-page .btn:hover,.lasik-page .btn-primary:hover,.lasik-page .btn-secondary:hover,.lasik-page .btn-outline:hover,.lasik-page .btn-on-light:hover,.lasik-page .btn-dark:hover{background:#3f6367!important;color:#ffffff!important;}

/* Feature / card / process titles & body */
.lasik-page .bfvc-card h3{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:36px!important;line-height:1.1!important;color:var(--teal-deep)!important;margin:0 0 18px!important;}
.lasik-page .bfvc-card p{font-size:1.1rem!important;color:#000000!important;}
.lasik-page .benefit h3{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:34px!important;line-height:1.15!important;color:var(--teal-deep)!important;margin:0 0 18px!important;}
.lasik-page .benefit p{font-size:1rem!important;line-height:1.6!important;color:#000000!important;}
.lasik-page .benefit .num{font-family:"Inter",sans-serif!important;font-weight:700!important;font-size:13px!important;letter-spacing:.08em!important;}
.lasik-page .faq-q{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:21px!important;line-height:1.2!important;color:var(--teal-deep)!important;}
.lasik-page .faq-a-inner{font-size:1rem!important;color:#000000!important;}
.lasik-page .checklist li{font-size:1.02rem!important;}
.lasik-page .eyebrow{text-transform:uppercase!important;}

/* Final CTA — keep centered even against Elementor margin resets */
.lasik-page .cta-band{text-align:center!important;}
.lasik-page .cta-band > .bfvc-container{margin-left:auto!important;margin-right:auto!important;}
.lasik-page .cta-band h2{margin-left:auto!important;margin-right:auto!important;}
.lasik-page .cta-band p{margin-left:auto!important;margin-right:auto!important;max-width:780px!important;}
.lasik-page .cta-band .hero-actions{justify-content:center!important;align-items:center;gap:18px!important;}
@media (max-width:600px){
  .lasik-page .cta-band .hero-actions{flex-direction:column;}
  .lasik-page .cta-band .hero-actions .btn{width:100%!important;}
}

/* ============================================================
   MOBILE CARD / FEATURE-BOX TITLE SCALE  (≤600px)
   Reduces card (.bfvc-card h3) and feature-box (.benefit h3) titles
   by ~20% on mobile only to curb excessive wrapping. Desktop
   and tablet are unchanged. Weight (800) and unitless
   line-heights (1.1 / 1.15) are preserved — font-size only.
   Placed after the armor block so these !important rules win.
   ============================================================ */
@media (max-width:600px){
  .lasik-page .bfvc-card h3{font-size:29px!important;}      /* 36px → ~80% */
  .lasik-page .benefit h3{font-size:27px!important;}   /* 34px → ~80% */
}

/* ============================================================
   EDITORIAL STATEMENT SECTION  (reusable)
   Centered "mission / philosophy" statement on the dark teal
   band: an oversized, very subtle ghost background word, a
   large serif featured quote, a sage divider, and a supporting
   paragraph. Reusable across Berg-Feinfield pages — add the
   class to a <section>, set the ghost word via data-word="…".
   The <h2> is optional (rendered white, centered). By design
   this component carries NO eyebrow and NO button.

   Markup:
     <section class="section editorial-statement-section" data-word="MISSION">
       <div class="container">
         <div class="editorial-statement-inner">
           <h2>Our Mission</h2>                         (optional)
           <p class="editorial-statement">Featured quote…</p>
           <span class="editorial-statement-divider"></span>
           <p class="editorial-statement-body">Supporting copy…</p>
         </div>
       </div>
     </section>
   ============================================================ */
.editorial-statement-section{position:relative;overflow:hidden;background:var(--teal-deep);color:var(--white);padding-block:clamp(90px,12vw,160px);}
/* Oversized, very subtle background word (set per section via data-word) */
.editorial-statement-section::before{
  content:attr(data-word);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  font-family:var(--font-head);font-weight:600;line-height:1;white-space:nowrap;
  font-size:clamp(120px,26vw,360px);color:rgba(255,255,255,.04);
  letter-spacing:.04em;pointer-events:none;z-index:0;
}
.editorial-statement-section .bfvc-container{position:relative;z-index:1;}
.editorial-statement-inner{max-width:1100px;margin:0 auto;text-align:center;}
.editorial-statement-inner h2{color:var(--white);margin:0 auto clamp(56px,7vw,96px);}
.editorial-statement{
  font-family:var(--font-head);font-weight:600;
  font-size:clamp(26px,3.7vw,43px);line-height:1.3;color:var(--white);
  max-width:1040px;margin:0 auto;
}
.editorial-statement-divider{display:block;width:100px;height:2px;background:var(--sage);border:0;margin:clamp(30px,4vw,44px) auto;}
.editorial-statement-body{font-family:var(--font-body);color:rgba(255,255,255,.82);font-size:21px;max-width:680px;margin:0 auto;}

/* Elementor armor — guarantee the statement styling under Elementor */
.lasik-page .editorial-statement-section h2{margin:0 auto clamp(56px,7vw,96px)!important;color:#ffffff!important;}
.lasik-page .editorial-statement{font-family:"Crimson Text",Georgia,serif!important;font-weight:600!important;font-size:clamp(26px,3.7vw,43px)!important;line-height:1.3!important;color:#ffffff!important;margin:0 auto!important;}
.lasik-page .editorial-statement-body{font-family:"Inter",sans-serif!important;color:rgba(255,255,255,.82)!important;font-size:21px!important;max-width:680px!important;margin:0 auto!important;}

/* ============================================================
   EDITORIAL COLUMN TITLE  (reusable)
   Small editorial column sub-heading used for paired
   text-column titles (e.g. About Us #story, Cataract #what).
   Inter 800 · 22px · line-height 1.2 · --teal-deep · 32px
   bottom spacing · no divider line. Add the class to an <h3>.
     <h3 class="editorial-col-title">A Leading L.A. Practice</h3>
   ============================================================ */
.editorial-col-title{font-family:"Inter",var(--font-body);font-weight:800;font-size:22px;line-height:1.2;color:var(--teal-deep);margin:0 0 32px;}
/* Elementor armor */
.lasik-page .editorial-col-title{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:22px!important;line-height:1.2!important;color:var(--teal-deep)!important;margin:0 0 32px!important;}

/* ============================================================
   PROCESS / TIMELINE STEP TITLE  (reusable)
   Heading for a numbered process step or timeline milestone
   (e.g. LASIK #journey steps, Alan Berg #timeline career items).
   Inter 800 · 28px · line-height 1.2 · #000000 · .5em bottom
   spacing. Add the class to the step/item <h3>.
     <h3 class="process-step-title">The Consultation</h3>
   ============================================================ */
.process-step-title{font-family:"Inter",var(--font-body);font-weight:800;font-size:25px;line-height:1.2;color:var(--teal-deep);margin:0 0 .5em;}
/* Elementor armor */
.lasik-page .process-step-title{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:25px!important;line-height:1.2!important;color:var(--teal-deep)!important;margin:0 0 .5em!important;}

/* ============================================================
   CARD TITLE  (reusable)
   Standard heading for informational / specialty / box cards
   (e.g. Alan Berg "Dr. Berg's Specialties"). Inter 800, 34px,
   line-height 1.15, black (#000), centered. Add the class
   to a card's <h3>. NOTE: the existing LASIK feature/benefit
   cards keep their Inter 800 titles (.bfvc-card h3 / .benefit h3);
   this Crimson card-title is the standard for informational
   cards going forward.
     <h3 class="card-title">LASIK</h3>
   ============================================================ */
.card-title{font-family:"Inter",var(--font-body);font-weight:800;font-size:34px;line-height:1.15;color:var(--teal-deep);text-align:left;margin:0;}
/* Elementor armor */
.lasik-page .card-title{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:34px!important;line-height:1.15!important;color:var(--teal-deep)!important;text-align:left!important;margin:0!important;}


/* ============================================================
   CARD — COMPACT MODIFIER  (reusable)
   Add `.card--compact` alongside `.bfvc-card` for a tighter, more
   premium card: drops the 420px min-height floor and trims the
   vertical padding + icon gap so card height tracks content
   (~35% shorter for short cards). Icon, title, and body sizes
   are unchanged. Pair with `grid-auto-rows:1fr` on the grid to
   keep every card equal height.
   ============================================================ */
.card--compact{min-height:0;padding-top:24px;padding-bottom:24px;}
.card--compact .icon{margin-bottom:18px;}

/* ============================================================
   FACT CARD  (reusable)
   Compact card for a single statement with a sage check / accent
   icon — e.g. Alan Berg "Recognition & Distinctions". Uses the
   site card tokens (white, --line border, --radius, soft shadow,
   hover lift). Sits well on the soft band background.
     <div class="fact-card">
       <span class="check" aria-hidden="true"><svg…/></span>
       <p>Statement text…</p>
     </div>
   ============================================================ */
.fact-card{display:flex;align-items:flex-start;gap:18px;background:#ffffff;border:1px solid var(--line);border-radius:var(--radius);padding:24px 26px;box-shadow:0 8px 24px rgba(42,67,71,.06);transition:transform .25s,box-shadow .25s;}
.fact-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);}
.fact-card .check{flex:0 0 auto;width:40px;height:40px;border-radius:50%;background:var(--sage);display:flex;align-items:center;justify-content:center;color:#ffffff;}
.fact-card .check svg{width:20px;height:20px;stroke-width:2.75;}
.fact-card p{margin:0;font-size:1.04rem;line-height:1.55;color:#000000;}
/* Elementor armor */
.lasik-page .fact-card p{font-family:"Inter",sans-serif!important;font-weight:400!important;font-size:1.04rem!important;line-height:1.55!important;color:#000000!important;margin:0!important;}

/* Compact cards use a 15%-smaller title for balanced hierarchy
   (36→30.6px; mobile 29→24.65px). Font-size only — weight, Inter
   family, line-height 1.1, color, and margins come from .bfvc-card h3. */
.lasik-page .card--compact h3{font-size:30.6px!important;}
@media (max-width:600px){
  .lasik-page .card--compact h3{font-size:24.65px!important;}
}

/* ============================================================
   HERO — TIGHT MODIFIER  (reusable)
   Pulls the headline, supporting copy, and CTAs closer for a
   tighter luxury-healthcare layout: trims the hero content
   padding and the margins under the H1, divider, and paragraph.
   Font sizes, colors, button styling, content, and the
   responsive grid/button placement are unchanged.
   ============================================================ */
.hero--tight .hero-inner{padding-block:clamp(52px,6.5vw,92px);}   /* was clamp(72px,9vw,128px) */
.hero--tight .hero-divider{margin-bottom:7.5px;}                  /* was 10px  (−25%) */
.lasik-page .hero--tight h1{margin:0 0 17px!important;}           /* was 26px  (−35%) */
.lasik-page .hero--tight p{margin:0 0 18px!important;}            /* was 31px  (−48%) */

/* ============================================================
   CARD NAME TITLE  (reusable)
   Teal bold sans-serif heading for team/doctor names and service
   titles (e.g. About Us doctor cards, Ophthalmologist service
   cards). Inter 800 · 21.25px · line-height 1.2 · --teal-deep.
   Add to the card's <h3>; the card keeps its own spacing/margin.
   ============================================================ */
.card-name{font-family:"Inter",var(--font-body);font-weight:800;font-size:21.25px;line-height:1.2;color:var(--teal-deep);}
.lasik-page .card-name{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:21.25px!important;line-height:1.2!important;color:var(--teal-deep)!important;}

/* ============================================================
   PHOTO CARD  (reusable)
   Image-led service/category card — a full-bleed photo on top
   with a centered title below; no icons or descriptions. Uses
   the existing card tokens (white, --line border, --radius, soft
   shadow, hover lift). Title reuses the brand Inter-800 dark-teal
   card-heading style, centered. Place in a .card-grid with
   grid-auto-rows:1fr for equal-height cards. Added for the new
   photography-driven Services grid (luxury, visual-first).
     <a class="photo-card" href="…">
       <img src="…" alt="…">
       <h3>Vision Correction</h3>
     </a>
   ============================================================ */
.photo-card{display:flex;flex-direction:column;overflow:hidden;background:#ffffff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 8px 24px rgba(42,67,71,.06);transition:transform .25s,box-shadow .25s;}
.photo-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
.photo-card img{width:100%;aspect-ratio:3/2;object-fit:cover;display:block;}
.photo-card h3{flex:1;display:flex;align-items:center;justify-content:center;text-align:center;margin:0;padding:22px 20px;}
/* Elementor armor — centered brand card-heading style */
.lasik-page .photo-card h3{font-family:"Inter",sans-serif!important;font-weight:800!important;font-size:26px!important;line-height:1.2!important;color:var(--teal-deep)!important;}


/* ============================================================
   ============================================================
   BERG-FEINFIELD  ·  .bf-page DESIGN SYSTEM  (v2, WordPress-safe)
   ------------------------------------------------------------
   Self-isolating, fully namespaced replacement for the legacy
   .lasik-page system above. EVERY selector is scoped to
   .bf-page so the host WordPress theme / Elementor cannot reach
   these elements and so these rules never touch legacy pages.
   No !important is used — isolation comes from the scoped reset
   + specificity. Page-specific styles live in style-<page>.css
   (e.g. style-cataract.css) scoped to .bf-<page>-page.

   NOTE: The legacy .lasik-page block above is intentionally left
   intact; it still powers all not-yet-converted pages. Remove it
   only after every page has been migrated to .bf-page.
   ============================================================
   ============================================================ */

/* ============================================================
   VARIABLES   (namespaced --bf-*, declared on .bf-page)
   ============================================================ */
.bf-page{
  --bf-teal-deep:#2A4347;
  --bf-teal-deep-2:#21363a;
  --bf-sage:#7FA9A3;
  --bf-sage-soft:#b9d0cb;
  --bf-white:#FFFFFF;
  --bf-ink:#000000;
  --bf-ink-soft:#5a6b69;
  --bf-line:#e6e8e8;
  --bf-icon-bg:#eef4f3;
  --bf-btn:#497074;
  --bf-btn-hover:#3f6367;
  --bf-band-soft:#E6F1F2;
  --bf-band-faint:#F2F8F9;
  --bf-font-head:"Crimson Text",Georgia,"Times New Roman",serif;
  --bf-font-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --bf-h1:clamp(39px,5.36vw,61px);
  --bf-h2:50px;
  --bf-h3:38px;
  --bf-body:18px;
  --bf-maxw:1180px;
  --bf-gutter:clamp(20px,5vw,64px);
  --bf-section-y:clamp(56px,8vw,104px);
  --bf-radius:14px;
  --bf-shadow:0 18px 40px rgba(42,67,71,.12);
}

/* ============================================================
   RESET   (local — applies only inside .bf-page)
   Neutralizes inherited theme styles so the page renders the
   same standalone or inside the WordPress template.
   ============================================================ */
.bf-page,.bf-page *,.bf-page *::before,.bf-page *::after{box-sizing:border-box;}
.bf-page{
  margin:0;
  font-family:var(--bf-font-body);
  font-size:var(--bf-body);
  line-height:1.65;
  color:var(--bf-ink);
  text-align:left;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.bf-page h1,.bf-page h2,.bf-page h3,.bf-page h4,.bf-page h5,.bf-page h6,
.bf-page p,.bf-page figure,.bf-page ul,.bf-page ol,.bf-page li{margin:0;padding:0;}
.bf-page ul,.bf-page ol{list-style:none;}
.bf-page img{max-width:100%;display:block;height:auto;}
.bf-page a{color:inherit;text-decoration:none;}
.bf-page button{font:inherit;color:inherit;background:none;border:0;margin:0;cursor:pointer;text-align:inherit;}
.bf-page svg{display:inline-block;vertical-align:middle;}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.bf-page h1,.bf-page h2,.bf-page h3{font-family:var(--bf-font-head);font-weight:600;line-height:1.12;color:var(--bf-teal-deep);margin:0 0 .5em;}
.bf-page h1{font-size:var(--bf-h1);line-height:1.05;}
.bf-page h2{font-size:var(--bf-h2);line-height:.98;letter-spacing:normal;max-width:850px;margin:0 auto .5em;}
.bf-page h3{font-size:var(--bf-h3);line-height:1.1;}
.bf-page p{margin:0 0 1.1em;font-weight:400;}
.bf-page p:last-child{margin-bottom:0;}
.bf-page .bf-lead{font-family:var(--bf-font-head);font-weight:600;font-size:clamp(22px,2.1vw,26px);line-height:1.35;color:#000;max-width:780px;margin-inline:auto;}

/* ============================================================
   BUTTONS
   ============================================================ */
.bf-page .bf-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  font-family:var(--bf-font-body);font-weight:800;font-size:15px;letter-spacing:.02em;text-transform:uppercase;
  padding:15px 32px;border-radius:999px;border:0;
  background:var(--bf-btn);color:#fff;text-decoration:none;
  cursor:pointer;transition:all .22s ease;white-space:nowrap;
  -webkit-font-smoothing:antialiased;
}
.bf-page .bf-btn:hover{background:var(--bf-btn-hover);color:#fff;transform:translateY(-2px);}
.bf-page .bf-btn-primary,.bf-page .bf-btn-outline,.bf-page .bf-btn-on-light,.bf-page .bf-btn-dark{background:var(--bf-btn);color:#fff;border:0;}
.bf-page .bf-btn-primary:hover,.bf-page .bf-btn-outline:hover,.bf-page .bf-btn-on-light:hover,.bf-page .bf-btn-dark:hover{background:var(--bf-btn-hover);color:#fff;}
.bf-page p + .bf-btn,.bf-page ul + .bf-btn,.bf-page .bf-lead + .bf-btn,.bf-page .bf-checklist + .bf-btn{margin-top:38px;}

/* ============================================================
   LAYOUT
   ============================================================ */
.bf-page .bf-container{max-width:var(--bf-maxw);margin:0 auto;padding-inline:var(--bf-gutter);}
.bf-page .bf-section{padding-block:var(--bf-section-y);}
.bf-page .bf-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,72px);align-items:center;}
.bf-page .bf-split.bf-reverse .bf-split-media{order:2;}
.bf-page .bf-split-media{position:relative;}
.bf-page .bf-split-media img{border-radius:var(--bf-radius);box-shadow:var(--bf-shadow);width:100%;aspect-ratio:4/3;object-fit:cover;}
.bf-page .bf-split-media::after{content:"";position:absolute;inset:0;pointer-events:none;background:var(--bf-teal-deep);opacity:.10;mix-blend-mode:multiply;border-radius:var(--bf-radius);}

/* ============================================================
   UTILITIES
   ============================================================ */
.bf-page .bf-center{text-align:center;}
.bf-page .bf-center .bf-lead{margin-inline:auto;}

/* ============================================================
   CARDS  (numbered process / "what to expect" band + cards)
   ============================================================ */
.bf-page #bf-benefits{background:var(--bf-band-soft);color:#000;padding-block:clamp(72px,10vw,136px);border-top-right-radius:clamp(90px,16vw,220px);}
.bf-page #bf-benefits h2{color:var(--bf-teal-deep);}
.bf-page .bf-benefit-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:44px;margin-top:88px;}
.bf-page .bf-benefit{position:relative;text-align:left;background:#fff;border:0;border-top:3px solid var(--bf-teal-deep);border-radius:18px;padding:48px 41px;box-shadow:0 18px 44px rgba(0,0,0,.12);}
.bf-page .bf-benefit .bf-num{position:absolute;top:0;left:41px;transform:translateY(-50%);z-index:2;background:var(--bf-sage);color:#fff;font-family:var(--bf-font-body);font-weight:700;font-size:13px;letter-spacing:.08em;padding:6px 14px;border-radius:8px;}
.bf-page .bf-benefit::before{position:absolute;top:24px;right:22px;z-index:0;pointer-events:none;font-family:var(--bf-font-body);font-weight:800;font-size:120px;line-height:1;color:rgba(42,67,71,.06);}
.bf-page .bf-benefit:nth-child(1)::before{content:"01";}
.bf-page .bf-benefit:nth-child(2)::before{content:"02";}
.bf-page .bf-benefit:nth-child(3)::before{content:"03";}
.bf-page .bf-benefit h3{position:relative;z-index:1;color:var(--bf-teal-deep);font-size:34px;line-height:1.15;font-family:var(--bf-font-body);font-weight:800;margin:0 0 18px;}
.bf-page .bf-benefit p{position:relative;z-index:1;color:#000;font-size:1rem;line-height:1.6;}

/* ============================================================
   FAQ
   ============================================================ */
.bf-page .bf-faq{max-width:880px;margin:40px auto 0;}
.bf-page .bf-faq-item{border-bottom:1px solid var(--bf-line);}
.bf-page .bf-faq-q{width:100%;text-align:left;background:none;border:0;cursor:pointer;font-family:var(--bf-font-body);font-size:21px;font-weight:800;line-height:1.2;color:var(--bf-teal-deep);padding:22px 44px 22px 0;position:relative;}
.bf-page .bf-faq-q::after{content:"+";position:absolute;right:6px;top:50%;transform:translateY(-50%);font-size:26px;color:var(--bf-sage);transition:transform .25s;font-family:var(--bf-font-body);}
.bf-page .bf-faq-item.bf-open .bf-faq-q::after{content:"\2013";}
.bf-page .bf-faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;}
.bf-page .bf-faq-a-inner{padding:0 0 22px;color:#000;font-size:1rem;}
.bf-page .bf-faq-item.bf-open .bf-faq-a{max-height:900px;}

/* ============================================================
   HERO
   ============================================================ */
.bf-page .bf-hero{
  padding-top:var(--wp-hero-offset);
  background:linear-gradient(150deg,rgba(33,54,58,.82) 0%,rgba(33,54,58,.60) 100%),
    url('https://bergfeinfield.com/wp-content/uploads/header-backgorund-section.webp') center center / cover no-repeat;
  color:var(--bf-white);position:relative;overflow:hidden;
}
.bf-page .bf-hero::after{content:"";position:absolute;right:-12%;top:-20%;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(127,169,163,.30),transparent 68%);}
.bf-page .bf-hero-inner{
  position:relative;z-index:1;padding-block:clamp(72px,9vw,128px);
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-areas:"head media" "copy media" "cta media";
  column-gap:clamp(32px,5vw,72px);align-items:center;
}
.bf-page .bf-hero-head{grid-area:head;}
.bf-page .bf-hero h1{color:var(--bf-white);font-size:var(--bf-h1);line-height:1.05;margin:0 0 26px;}
.bf-page .bf-hero-divider{display:block;width:77px;height:2px;background:var(--bf-sage);border:0;margin:0 0 10px;}
.bf-page .bf-hero p{grid-area:copy;font-family:var(--bf-font-body);font-weight:400;font-size:21px;line-height:1.5;color:rgba(255,255,255,.9);max-width:730px;margin:0 0 31px;}
.bf-page .bf-hero-actions{grid-area:cta;display:flex;flex-wrap:wrap;gap:13px;}
.bf-page .bf-hero-media{grid-area:media;position:relative;}
.bf-page .bf-hero-media img{width:100%;height:clamp(420px,48vw,600px);object-fit:cover;border-radius:18px;display:block;}
.bf-page .bf-hero-media::after{content:"";position:absolute;inset:0;pointer-events:none;background:var(--bf-teal-deep);opacity:.10;mix-blend-mode:multiply;border-radius:18px;}

/* ============================================================
   COMPONENTS  (checklist · editorial column title · CTA band ·
   shared section background treatment)
   ============================================================ */
/* Checklist */
.bf-page .bf-checklist{list-style:none;padding:0;margin:0 0 28px;display:grid;gap:14px;}
.bf-page .bf-checklist li{display:flex;gap:14px;align-items:flex-start;font-size:1.02rem;}
.bf-page .bf-checklist svg{flex:0 0 auto;margin-top:4px;color:var(--bf-sage);}

/* Editorial column sub-heading */
.bf-page .bf-editorial-col-title{font-family:var(--bf-font-body);font-weight:800;font-size:22px;line-height:1.2;color:var(--bf-teal-deep);margin:0 0 32px;}

/* Shared first-section background treatment (LA palm texture + scrim) */
.bf-page #bf-what{
  position:relative;
  background-image:url('https://bergfeinfield.com/wp-content/uploads/palm-trees.jpg');
  background-size:cover;background-position:center center;background-repeat:no-repeat;
}
.bf-page #bf-what::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,.20);pointer-events:none;}
.bf-page #bf-what > .bf-container{position:relative;z-index:1;}

/* Final CTA band */
.bf-page .bf-cta-band{
  position:relative;overflow:hidden;text-align:center;color:var(--bf-ink);
  background-image:url('https://bergfeinfield.com/wp-content/uploads/palm-trees-cta.webp');
  background-size:cover;background-position:center center;background-repeat:no-repeat;
}
.bf-page .bf-cta-band::before{content:"";position:absolute;inset:0;background:rgba(255,255,255,.20);pointer-events:none;}
.bf-page .bf-cta-band > .bf-container{position:relative;z-index:1;}
.bf-page .bf-cta-band h2{color:var(--bf-teal-deep);margin-left:auto;margin-right:auto;}
.bf-page .bf-cta-band p{color:#000;max-width:780px;margin-inline:auto;font-family:var(--bf-font-head);font-weight:600;font-size:clamp(22px,2.1vw,26px);line-height:1.35;}
.bf-page .bf-cta-band .bf-hero-actions{justify-content:center;align-items:center;gap:18px;position:relative;z-index:1;}

/* ============================================================
   RESPONSIVE  (shared system breakpoints — 900 / 600 only)
   ============================================================ */
@media (max-width:900px){
  .bf-page{--bf-h2:48px;}
  .bf-page .bf-hero-inner{grid-template-columns:1fr;grid-template-areas:"head" "media" "copy" "cta";row-gap:28px;}
  .bf-page .bf-hero-media img{height:clamp(320px,72vw,460px);}
  .bf-page .bf-benefit-grid{grid-template-columns:1fr 1fr;}
  .bf-page .bf-split{grid-template-columns:1fr;}
  .bf-page .bf-split.bf-reverse .bf-split-media{order:0;}
}
@media (max-width:600px){
  .bf-page{--bf-h2:38px;--bf-h3:34px;}
  .bf-page .bf-benefit-grid{grid-template-columns:1fr;}
  .bf-page .bf-hero-actions .bf-btn{width:100%;}
  .bf-page .bf-benefit h3{font-size:27px;}
  .bf-page .bf-cta-band .bf-hero-actions{flex-direction:column;}
  .bf-page .bf-cta-band .bf-hero-actions .bf-btn{width:100%;}
}

/* ============================================================
   WORDPRESS PROTECTION
   ------------------------------------------------------------
   Isolation is achieved structurally — NOT with !important:
     1. One wrapper: <main class="bf-page bf-<page>-page">.
     2. The scoped RESET above neutralizes inherited theme rules
        (box-sizing, margins, list-style, link/button/img, font).
     3. Every component selector is prefixed with .bf-page, so it
        out-specifies the theme's bare-tag / generic-class rules
        and never leaks onto non-.bf-page markup.
   Keep new shared rules ABOVE this block. Add only genuine,
   non-duplicative guards here.
   ============================================================ */
.bf-page{-webkit-text-size-adjust:100%;}                 /* block mobile theme text inflation */
.bf-page :where(h1,h2,h3,h4,h5,h6){text-transform:none;} /* counter theme uppercase headings */


/* ============================================================
   ============================================================
   CATARACT PAGE  ·  page-specific  (.bf-cataract-page)
   ------------------------------------------------------------
   Merged back in from the former style-cataract.css so the page
   loads a single shared stylesheet. Every rule is scoped to
   .bf-cataract-page, so it only affects cataract-los-angeles.html
   and never touches other .bf-page pages. Keep new shared,
   reusable rules in the .bf-page system above; keep page-only
   rules here.
   ============================================================
   ============================================================ */
/* ============================================================
   CATARACT SECTIONS
   ------------------------------------------------------------
   #bf-what editorial overview layout + #bf-timing image split
   overrides. (The #bf-what palm background + scrim and the
   .bf-editorial-col-title come from the shared system.)
   ============================================================ */
.bf-cataract-page #bf-what{padding-block:clamp(80px,11vw,150px);}
.bf-cataract-page .bf-what-editorial{max-width:1120px;}
.bf-cataract-page .bf-what-head-block{text-align:center;max-width:780px;margin:0 auto clamp(52px,6vw,88px);}
.bf-cataract-page .bf-what-title{margin:0 0 28px;}
.bf-cataract-page .bf-what-figure{position:relative;margin:0 0 clamp(60px,7.5vw,104px);border-radius:20px;overflow:hidden;box-shadow:var(--bf-shadow);}
.bf-cataract-page .bf-what-figure img{width:100%;aspect-ratio:16/8;object-fit:cover;display:block;}
.bf-cataract-page .bf-what-figure::after{content:"";position:absolute;inset:0;pointer-events:none;background:var(--bf-teal-deep);opacity:.08;mix-blend-mode:multiply;}
.bf-cataract-page .bf-what-columns{display:grid;grid-template-columns:1.1fr 0.9fr;gap:clamp(52px,7vw,112px);max-width:980px;margin:0 auto;align-items:start;}
.bf-cataract-page #bf-what .bf-what-explainer p{font-size:1.05rem;line-height:1.78;color:#000;}
.bf-cataract-page #bf-what .bf-what-symptoms .bf-checklist{margin:0 0 36px;gap:18px;}
.bf-cataract-page #bf-what .bf-what-symptoms .bf-checklist li{font-size:1.05rem;line-height:1.5;}

/* #bf-timing — full-height image split */
.bf-cataract-page #bf-timing .bf-split{align-items:stretch;}
.bf-cataract-page #bf-timing .bf-split-media{display:flex;}
.bf-cataract-page #bf-timing .bf-split-media img{aspect-ratio:auto;width:100%;height:100%;min-height:440px;object-fit:cover;}

/* ============================================================
   SYMPTOMS GALLERY  (#bf-symptoms — interactive)
   Mobile-first base; desktop two-column grid in Responsive.
   ============================================================ */
.bf-cataract-page #bf-symptoms .bf-symptoms-grid{display:flex;flex-direction:column;gap:26px;}
.bf-cataract-page #bf-symptoms .bf-symptoms-intro{order:1;}
.bf-cataract-page #bf-symptoms .bf-symptoms-media{order:2;}
.bf-cataract-page #bf-symptoms .bf-symptoms-cards{order:3;display:flex;flex-direction:column;gap:18px;}
.bf-cataract-page #bf-symptoms .bf-symptoms-intro h2{font-size:clamp(30px,3.2vw,42px);line-height:1.12;text-align:left;max-width:none;margin:0 0 18px;}
.bf-cataract-page #bf-symptoms .bf-symptoms-intro p{color:#000;}
.bf-cataract-page #bf-symptoms .bf-symptoms-cta{align-self:flex-start;margin-top:22px;}
.bf-cataract-page #bf-symptoms .bf-symptom-card{
  display:flex;align-items:flex-start;gap:18px;width:100%;text-align:left;cursor:pointer;
  background:#353c3d;color:#fff;border:0;border-radius:18px;padding:20px 22px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);transition:transform .3s ease,box-shadow .3s ease,background .3s ease,color .3s ease;
}
.bf-cataract-page #bf-symptoms .bf-symptom-card:hover{transform:translateY(-3px);box-shadow:0 24px 48px rgba(0,0,0,.28);}
.bf-cataract-page #bf-symptoms .bf-symptom-card.bf-active{background:var(--bf-sage);color:var(--bf-teal-deep);}
.bf-cataract-page #bf-symptoms .bf-symptom-icon{flex:0 0 auto;width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,.12);color:#fff;}
.bf-cataract-page #bf-symptoms .bf-symptom-card.bf-active .bf-symptom-icon{background:rgba(42,67,71,.15);color:var(--bf-teal-deep);}
.bf-cataract-page #bf-symptoms .bf-symptom-icon svg{width:22px;height:22px;}
.bf-cataract-page #bf-symptoms .bf-symptom-text{display:flex;flex-direction:column;gap:5px;}
.bf-cataract-page #bf-symptoms .bf-symptom-text strong{font-family:var(--bf-font-body);font-weight:800;font-size:17px;line-height:1.2;}
.bf-cataract-page #bf-symptoms .bf-symptom-text em{font-style:normal;font-size:14px;line-height:1.45;opacity:.85;}
.bf-cataract-page #bf-symptoms .bf-symptoms-media-inner{position:relative;border-radius:24px;overflow:hidden;box-shadow:var(--bf-shadow);}
.bf-cataract-page #bf-symptoms .bf-symptoms-media-inner img{width:100%;height:auto;display:block;}
.bf-cataract-page #bf-symptoms .bf-symptoms-media-inner::after{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(42,67,71,0) 42%,rgba(42,67,71,.45));}

/* ============================================================
   IOL SELECTOR  (#bf-iol — interactive lens gallery)
   ============================================================ */
.bf-cataract-page #bf-iol .bf-iol-intro{max-width:760px;margin:0 auto clamp(48px,6vw,82px);}
.bf-cataract-page .bf-lens-gallery{display:grid;grid-template-columns:1.05fr 0.95fr;gap:clamp(40px,5vw,84px);align-items:center;max-width:1120px;margin:0 auto;}
.bf-cataract-page .bf-lens-main{min-width:0;}
.bf-cataract-page .bf-lens-stage{margin:0;border-radius:24px;background:linear-gradient(160deg,#f3f8f7 0%,#e7f0ef 100%);padding:clamp(28px,4vw,56px);display:flex;align-items:center;justify-content:center;min-height:clamp(280px,34vw,420px);}
.bf-cataract-page .bf-lens-stage img{width:auto;max-width:100%;max-height:clamp(220px,30vw,360px);object-fit:contain;filter:drop-shadow(0 18px 38px rgba(42,67,71,.20));}
.bf-cataract-page .bf-lens-info{margin-top:clamp(28px,3.5vw,44px);}
.bf-cataract-page .bf-lens-name{font-family:var(--bf-font-body);font-weight:800;font-size:clamp(26px,2.6vw,36px);line-height:1.12;color:#000;margin:0 0 18px;}
.bf-cataract-page .bf-lens-desc{font-size:1.05rem;line-height:1.7;color:#000;margin:0 0 30px;max-width:560px;}
.bf-cataract-page .bf-lens-meta{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,3vw,44px);}
.bf-cataract-page .bf-lens-block h4{font-family:var(--bf-font-body);font-weight:600;font-size:13px;letter-spacing:.16em;text-transform:uppercase;color:var(--bf-teal-deep);margin:0 0 14px;}
.bf-cataract-page .bf-lens-block .bf-checklist{margin:0;gap:12px;}
.bf-cataract-page .bf-lens-block .bf-checklist li{font-size:1rem;line-height:1.45;}
.bf-cataract-page .bf-lens-block p{color:var(--bf-ink-soft);font-size:1rem;line-height:1.6;margin:0;}
.bf-cataract-page .bf-lens-selector{display:flex;flex-direction:column;gap:14px;}
.bf-cataract-page .bf-lens-option{
  display:block;width:100%;text-align:left;cursor:pointer;
  background:#fff;color:var(--bf-teal-deep);
  border:1px solid var(--bf-line);border-radius:18px;padding:22px 26px;
  transition:background .3s ease,color .3s ease,border-color .3s ease,box-shadow .3s ease,transform .3s ease;
}
.bf-cataract-page .bf-lens-option:hover{transform:translateX(4px);box-shadow:0 14px 30px rgba(42,67,71,.10);}
.bf-cataract-page .bf-lens-option.bf-active{background:var(--bf-teal-deep);color:#fff;border-color:var(--bf-teal-deep);box-shadow:0 20px 44px rgba(42,67,71,.22);}
.bf-cataract-page .bf-lens-option-name{display:block;font-family:var(--bf-font-body);font-weight:700;font-size:17px;line-height:1.25;}
.bf-cataract-page .bf-lens-option-tag{
  display:block;overflow:hidden;max-height:0;opacity:0;
  font-family:var(--bf-font-body);font-weight:400;font-size:14px;line-height:1.45;
  color:rgba(255,255,255,.78);
  transition:max-height .4s ease,opacity .35s ease,margin-top .4s ease;
}
.bf-cataract-page .bf-lens-option.bf-active .bf-lens-option-tag{max-height:64px;opacity:1;margin-top:8px;}
.bf-cataract-page #bf-iol .bf-iol-footnote{margin:clamp(48px,6vw,80px) auto 0;color:var(--bf-teal-deep);max-width:760px;}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.bf-cataract-page .bf-sym-anim{animation:bfSymFade .5s ease;}
@keyframes bfSymFade{from{opacity:.2;transform:scale(1.04);}to{opacity:1;transform:scale(1);}}
.bf-cataract-page .bf-lens-fade{animation:bfLensFade .5s ease;}
@keyframes bfLensFade{from{opacity:.25;transform:translateY(8px);}to{opacity:1;transform:translateY(0);}}

/* ============================================================
   RESPONSIVE OVERRIDES  (cataract-specific)
   ============================================================ */
@media (max-width:900px){
  .bf-cataract-page #bf-what .bf-what-columns{grid-template-columns:1fr;gap:44px;}
  .bf-cataract-page .bf-lens-gallery{grid-template-columns:1fr;gap:32px;}
  .bf-cataract-page .bf-lens-meta{grid-template-columns:1fr;gap:24px;}
  .bf-cataract-page .bf-lens-option:hover{transform:none;}
  .bf-cataract-page #bf-timing{padding-block:clamp(40px,7vw,72px);}
  .bf-cataract-page #bf-timing .bf-split{align-items:start;gap:24px;}
  .bf-cataract-page #bf-timing .bf-split-media img{min-height:0;height:auto;aspect-ratio:4/3;}
}
@media (min-width:901px){
  .bf-cataract-page #bf-symptoms .bf-symptoms-grid{display:grid;align-items:start;grid-template-columns:2fr 3fr;column-gap:clamp(36px,4.5vw,72px);row-gap:clamp(18px,1.8vw,22px);grid-template-areas:"intro media" "intro cards";}
  .bf-cataract-page #bf-symptoms .bf-symptoms-intro{grid-area:intro;align-self:start;}
  .bf-cataract-page #bf-symptoms .bf-symptoms-media{grid-area:media;}
  .bf-cataract-page #bf-symptoms .bf-symptoms-cards{grid-area:cards;display:grid;grid-template-columns:repeat(6,1fr);gap:clamp(8px,0.7vw,12px);}
  .bf-cataract-page #bf-symptoms .bf-symptoms-media-inner{aspect-ratio:16/9;}
  .bf-cataract-page #bf-symptoms .bf-symptoms-media-inner img{width:100%;height:100%;object-fit:cover;}
  .bf-cataract-page #bf-symptoms .bf-symptom-card{flex-direction:column;align-items:center;text-align:center;gap:10px;padding:15px 10px 18px;border-radius:14px;box-shadow:0 12px 26px rgba(0,0,0,.18);}
  .bf-cataract-page #bf-symptoms .bf-symptom-card:hover{transform:translateY(-4px);box-shadow:0 18px 34px rgba(0,0,0,.26);}
  .bf-cataract-page #bf-symptoms .bf-symptom-icon{width:40px;height:40px;}
  .bf-cataract-page #bf-symptoms .bf-symptom-icon svg{width:20px;height:20px;}
  .bf-cataract-page #bf-symptoms .bf-symptom-text{align-items:center;text-align:center;gap:0;}
  .bf-cataract-page #bf-symptoms .bf-symptom-text strong{font-size:12.5px;line-height:1.25;}
  .bf-cataract-page #bf-symptoms .bf-symptom-text em{display:none;}
}

/* ============================================================
   DOCTOR-PROFILE PAGES — WordPress-safe body copy (18px)
   The bio (#profile .profile-bio p) and timeline (.tl-body p) text used
   rem units, so the WordPress theme's smaller root font-size shrank them
   after upload. Pin them to a fixed 18px readable body size. These
   selectors are unique to the five doctor pages (alan-berg, robert-
   feinfield, lilit-minasyan, shaden-sarafzadeh, bonnie-sklar), so no
   other page is affected. The leading `html` raises specificity above
   the pages' inline !important armor (which is ID-scoped). Headings,
   badges, cards, captions, buttons, and icons are untouched.
   ============================================================ */
html .lasik-page #profile .profile-bio p{font-size:18px!important;line-height:1.75!important;}
html .lasik-page .tl-body p{font-size:18px!important;line-height:1.7!important;}

/* ============================================================
   DOCTOR-PROFILE PAGES — WordPress-safe SIDEBAR typography
   Locations list used rem (shrinks under WP) and specialty pills were
   12px (too small after upload). Pin location names to 18px Inter/normal
   and pill text to 15px. Only font properties change — icons, spacing,
   alignment, margins, pill background/padding/radius/colors and layout
   are untouched. Selectors are unique to the five doctor pages; `html`
   raises specificity above the pages' inline base rules and the theme.
   ============================================================ */
html .lasik-page .loc-list li{font-family:"Inter",var(--font-body)!important;font-weight:400!important;font-size:18px!important;}
html .lasik-page .spec-tags a{font-size:15px!important;}

/* ============================================================
   WORDPRESS-SAFE CHECKLIST / BULLET TYPOGRAPHY (global — BFVC .lasik-page)
   Checklist text used rem units, which the WordPress theme's smaller root
   font-size shrank after upload. Pin all checkmark-list text to a fixed
   18px / 1.7 Inter across the BFVC pages. Scoped under .lasik-page; the
   leading `html` raises specificity above the theme and the pages' own
   rules. ONLY font-size, line-height, and font-family are set — checkmark
   icons (.checklist svg etc.), gap, padding, alignment, colors, and
   layout are untouched.
   ============================================================ */
html .lasik-page .checklist li,
html .lasik-page .bfvc-checklist li,
html .lasik-page .et-list li{
  font-family:"Inter",var(--font-body)!important;
  font-size:18px!important;line-height:1.7!important;
}
/* page-level ID override (#before) that would otherwise keep rem sizing */
html .lasik-page #before .checklist li{
  font-family:"Inter",var(--font-body)!important;
  font-size:18px!important;line-height:1.7!important;
}
