/* 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, minmax(0, 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 auto 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:30px!important;line-height:1.1!important;color:var(--teal-deep)!important;margin:0 0 18px!important;}
.lasik-page .bfvc-card p{font-size:1.5rem!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:1.5rem!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;}

@media (max-width:767px){
  .hero-actions .btn{width:100%;}
	.lasik-page .bfvc-faq-q, .lasik-page button.bfvc-faq-q {font-size:18px !important;}
	.lasik-page .bfvc-faq-a-inner, .lasik-page .bfvc-faq .bfvc-faq-a-inner {font-size:17px !important; }
	.bfvc-card { padding: 21px; min-height: auto;}
	    .lasik-page .bfvc-card h3 {
        font-size: 27px !important;
    }
	.lasik-page .bfvc-section p:not(.lead), .lasik-page .bfvc-section li, .lasik-page .bfvc-card p, .lasik-page .benefit p, .lasik-page .checklist li {
    font-size: 17px !important;}
	.benefit {padding:30px;}
	.lasik-page h2 {
    font-size: 33px !important;
	}
	.lasik-page .btn, .lasik-page .btn-primary, .lasik-page .btn-secondary, .lasik-page .btn-outline, .lasik-page .btn-on-light, .lasik-page .btn-dark {text-wrap:auto;}
	.lasik-page .btn, .lasik-page .btn-primary, .lasik-page .btn-secondary, .lasik-page .btn-outline, .lasik-page .btn-on-light, .lasik-page .btn-dark {padding:15px 21px !important;}
}
