/* =========================================================
   STONES — sections.css  (trimmed for global consistency)
   - No font-family overrides (uses base.css: Manrope / Poppins)
   - No paragraph font-size overrides (uses base.css scale)
   - Dark bands use var(--dark-gradient)
   ========================================================= */

/* =============== 02 — Services Grid =============== */
.services2{
  position: relative;
  padding: clamp(54px, 8vw, 96px) 0;
  background: var(--dark-gradient);
  color: #fff;
  --cap-h: 44px;            /* white caption strip height */
  --radius: 16px;
}

/* Intro copy area (use base.css sizing; only color adjust) */
.services2-intro{
  width: min(1100px, 92vw);
  margin: 10px auto 28px;
  text-align: left;
}
.services2-intro p{
  color: #c7cbd1;           /* legible on dark; size from base.css */
  margin: 0;
}

/* Rows */
.services2-row{
  width: min(1200px, 92vw);
  margin: 20px auto 0;
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
}
.services2-row--top{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.services2-row--bottom{ grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Cards */
.service-card{
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius);
  background: #0e1111;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  text-decoration: none;
}

/* aspect ratios (desktop) */
.service-card--lg img{ aspect-ratio: 16 / 10; }
.service-card--sm img{ aspect-ratio: 4 / 5;  }

/* image fill + hover */
.service-card > img{
  width: 100%; height: auto; object-fit: cover; display: block;
  transition: transform .28s ease;
}
.service-card:hover > img{ transform: scale(1.04); }

/* white title strip */
.service-card__label{
  height: var(--cap-h);
  display: grid; place-items: center;
  background: #fff; color: #111;
  font: 700 15px/1 Manrope, system-ui, -apple-system, Arial, sans-serif;
  text-transform: uppercase; letter-spacing: .02em;
  border-top: 1px solid #ececec;
}

/* Responsive */
@media (max-width: 1024px){
  .services2-row--bottom{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 900px){
  .services2-intro{ margin-bottom: 18px; }
  .services2-row--top{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .services2-row--bottom{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-card--lg img{ aspect-ratio: 4 / 3; }
}
@media (max-width: 520px){
  .services2-row--top{ grid-template-columns: 1fr; }
  .services2-row--bottom{ grid-template-columns: 1fr; }
}


/* =============== Pricing Calculator =============== */
.pricing-options{
  --gold:#C6A15A; --muted:#999; --pill-green:#938c6d;
  padding: clamp(56px, 8vw, 96px) 0;
  background: #fff;
  color: var(--text-900);
}

/* container + header spacing */
.pricing-options .po-inner{ max-width:1200px; margin:0 auto; }
.pricing-options .section-head{ margin-bottom: 18px; }

/* slider */
.po-slider{ margin:26px auto 34px; max-width:760px; }
.po-slider-ends{
  display:flex; justify-content:space-between; font-weight:700; color:var(--gold); margin-bottom:8px;
}
.po-range{
  -webkit-appearance:none; appearance:none; width:100%; height:12px; border-radius:999px; outline:none;
  background:linear-gradient(to right, var(--gold) 50%, #e9e9e9 50%);
}
.po-range::-webkit-slider-thumb{
  -webkit-appearance:none; width:26px; height:26px; border-radius:50%;
  background:#fff; border:4px solid var(--gold); box-shadow:0 2px 8px rgba(0,0,0,.2); cursor:pointer;
}
.po-range::-moz-range-thumb{
  width:26px; height:26px; border-radius:50%;
  background:#fff; border:4px solid var(--gold); box-shadow:0 2px 8px rgba(0,0,0,.2); cursor:pointer;
}
.po-total{
  margin:14px auto 0; display:inline-flex; align-items:center; justify-content:center;
  padding:10px 18px; border-radius:14px; background:#fff; box-shadow:0 6px 18px rgba(0,0,0,.08);
  font-weight:700; color:var(--gold); transform:translateX(-50%); left:50%; position:relative;
  font-size: clamp(22px, 1.9vw, 28px);
}

/* cards */
.po-grid{ display:grid; gap:24px; grid-template-columns:repeat(3, minmax(0,1fr)); }
.po-card{
  background:#fff; border-radius:18px; box-shadow:0 12px 32px rgba(0,0,0,.08);
  padding:26px 24px 18px; position:relative; border:1px dashed rgba(0,0,0,.08); text-align:center;
}
.po-card--dark{
  background: var(--dark-gradient); color:#fff;
  box-shadow:0 12px 32px rgba(0,0,0,.22);
}
.po-chip{
  position:absolute; left:50%; transform:translateX(-50%); top:-14px;
  background:#eee; color:#333; padding:6px 14px; border-radius:999px; font:700 .85rem/1 Manrope, system-ui, -apple-system;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.po-card--dark .po-chip{ background:#333; color:#fff; }

.po-card-title{
  text-transform: uppercase; font-weight: 800; letter-spacing: .02em;
  font-size: clamp(22px, 2.2vw, 32px); line-height: 1.15; margin: 12px 0 16px;
}
.po-card--dark .po-card-title{ color:#fff; }

.price-pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:12px; background:#fff; color:var(--pill-green);
  box-shadow:0 8px 26px rgba(0,0,0,.12); margin:0 auto; font-weight:700;
  font-size: clamp(22px, 2.4vw, 38px);
}
.price-pill .per::before{ content:"/mo"; }
.price-pill .per{ font-size:.6em; font-weight:500; margin-left:.35em; opacity:.95; }

.po-divider{ height:2px; background:#efefef; border-radius:1px; margin:16px 0; }
.po-card--dark .po-divider{ background:rgba(255,255,255,.18); }

/* responsive */
@media (max-width:1050px){
  .po-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); max-width:900px; margin:0 auto; }
}
@media (max-width:720px){
  .po-grid{
    display:block; padding:16px; border:2px dashed rgba(0,0,0,.12);
    border-radius:18px; background:#fff; box-shadow:0 10px 26px rgba(0,0,0,.06);
  }
  .po-card{
    background:transparent; border:none; box-shadow:none; padding:14px 0;
    display:grid; grid-template-columns: 1fr auto 1fr; align-items:center; gap:10px 14px;
  }
  .po-card + .po-card{ border-top:1px solid #eee; }
  .po-chip, .po-divider{ display:none !important; }
  .po-card-title{ margin:0; text-align:left; font-size: clamp(18px, 5.2vw, 22px); letter-spacing:-.01em; }
  .price-pill{ margin:0 auto; padding:8px 16px; font-size: clamp(18px, 5vw, 24px); border-radius:12px; }
  .po-foot{ margin:0; text-align:right; font-weight:600; color:#666; }
  .po-card--dark{ background:transparent; color:#232b38; box-shadow:none; }
}


/* =============== Case Study (light) =============== */
.case-study-section{ --gold: #CDA25A; --ink: #0E1111; --muted: #6B7280; --card: #fff; }
.case-study-section .cs-wrap{ width: min(1200px, 100% - 40px); margin: 0 auto; }

/* quote card */
.cs-quote{
  background: var(--card); border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.10);
  padding: clamp(16px, 3vw, 26px) clamp(16px, 3.3vw, 32px);
  margin: 0 auto 22px; max-width: 920px; position: relative;
}
.cs-quote::after{
  content:""; position:absolute; left: 56px; bottom: -16px;
  width: 24px; height: 16px; background: var(--card);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.08));
}
.cs-quote-text{
  margin: 0; color: var(--ink);
  font-weight: 800; text-align: center;
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.4;
}
.cs-quote-text strong{ font-weight: 900; }
.cs-quote-meta{
  margin-top: 8px; text-align: center; color: var(--muted);
  font-weight: 600; font-size: 12px; line-height: 1.4;
}

/* big image */
.cs-image{
  margin: 24px auto 22px; width: min(1100px, 100%);
  border-radius: 14px; overflow: hidden; box-shadow: 0 22px 50px rgba(0,0,0,.18);
}
.cs-image img{ display:block; width:100%; height:auto; }

/* details row */
.cs-details{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px); margin: 10px auto 8px;
}
@media (max-width: 880px){ .cs-details{ grid-template-columns: 1fr; } }

/* recap card (left) */
.cs-recap{
  background: #fff; border-radius: 14px; box-shadow: 0 14px 36px rgba(0,0,0,.10);
  padding: clamp(14px, 2.6vw, 22px);
}
.cs-recap-title{
  letter-spacing: .22em; color: var(--gold); margin-bottom: 12px;
  font-weight: 800; font-size: 12px; line-height: 1;
}
.cs-recap-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px; }
.cs-recap-label{
  letter-spacing: .07em; text-transform: uppercase; color: #6b7280;
  font-weight: 700; font-size: 12px; line-height: 1.2;
}
.cs-recap-value{ font-weight: 800; font-size: 16px; line-height: 1.3; color: var(--ink); }

/* notes + client (right) */
.cs-notes{
  background:#fff; border-radius: 14px; box-shadow: 0 14px 36px rgba(0,0,0,.10);
  padding: clamp(16px, 2.6vw, 22px); display:flex; flex-direction:column; gap:16px;
}
.cs-notes-quote{ margin:0; color:#374151; font-weight: 600; font-size: clamp(15px, 2vw, 17px); line-height: 1.6; }
.cs-notes-quote strong{ font-weight:800; color:#111; }
.cs-client{ display:flex; align-items:center; gap:12px; }
.cs-client-img{ width:42px; height:42px; border-radius:999px; object-fit:cover; display:block; box-shadow: 0 6px 16px rgba(0,0,0,.15); }
.cs-client-name{ font-weight:800; font-size:14px; line-height:1.1; color:#111; }
.cs-client-role{ font-weight:600; font-size:12px; line-height:1.2; color:#6b7280; }

.case-study-section .section-head .section-gold-text{ text-align:center; }



/* =========================
   CASE STUDY — Stone’s fix
   (drop after existing cs- styles)
   ========================= */

/* Unify section widths to match original (image, quote, details) */
.case-study-section .cs-wrap,
.case-study-section .cs-quote,
.case-study-section .cs-image,
.case-study-section .cs-details{
  width: min(1100px, 95vw);
  margin-left: auto;
  margin-right: auto;
}

/* -------- Quote card: match image width + very slightly larger text -------- */
.cs-quote{
  /* match original spacing/feel */
  margin-top: 28px;
  padding: clamp(28px, 4vw, 56px) clamp(18px, 4vw, 40px);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
}

/* center the little “tail” under the card like the original */
.cs-quote::after{
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 46px;
  height: 30px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
}

/* make quote text just a touch bigger; keep strong bold */
.cs-quote-text{
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.25;
}
.cs-quote-text strong{ font-weight: 800; color:#111; }

/* meta matches original tone */
.cs-quote-meta{
  margin-top: 12px;
  font-size: .95rem;
  color: #666;
}

/* -------- Big image: fixed max-height with cover, same width as quote -------- */
.cs-image{
  width: min(1100px, 95vw);
  margin-top: 28px;
}
.cs-image img{
  display:block;
  width:100%;
  height:auto;
  max-height: 520px;       /* cap height to avoid page takeover */
  object-fit: cover;       /* crop gracefully when capped */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  background: #f8f8f8;
}

/* -------- Details row: make it one clean card with two columns -------- */
.cs-details{
  width: min(1100px, 95vw);
  margin: 18px auto 56px;
  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  border-radius: 12px;

  display: flex;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(18px, 3vw, 28px);
}

/* neutralize the inner cards so they look like panels inside one card */
.cs-recap,
.cs-notes{
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* left column sizing + typography match */
.cs-recap{
  flex: 1 1 360px;
}
.cs-recap-title{
  font-size: 1.05rem;
  font-weight: 700;
  color: #232b38;
  margin: 0 0 18px;
  letter-spacing: normal;         /* drop the micro letter-spacing from earlier */
}
.cs-recap-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.cs-recap-label{
  font-weight: 700;
  color: #2f3846;
  font-size: .98rem;
  letter-spacing: normal;
  text-transform: none;
}
.cs-recap-value{
  color: #464646;
  font-size: .95rem;
  font-weight: 600;
}

/* right column sizing + quote/client row */
.cs-notes{
  flex: 1 1 520px;
  padding: clamp(10px, 2vw, 16px) clamp(6px, 2vw, 12px) !important;
}
.cs-notes-quote{
  margin: 0 0 20px;
  color: #232b38;
  font-weight: 600;
  font-size: 1rem; /* close to original; keep Stones font */
  line-height: 1.6;
}
.cs-notes-quote strong{ font-weight:700; color:#111; }

.cs-client{
  display:flex; align-items:center; gap:14px;
}
.cs-client-img{
  width:54px; height:54px; border-radius:50%;
  object-fit:cover; border:2px solid #eee;
  box-shadow:none;
}
.cs-client-name{
  font-weight:700; color:#232b38; font-size:1rem;
}
.cs-client-role{
  color:#888; font-size:.98rem; font-weight:600;
}

/* -------- Responsive match to original -------- */
@media (max-width: 840px){
  .case-study-section{ padding-bottom: clamp(18px, 5vw, 32px); }

  .cs-details{
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }

  /* remove basis so columns don’t reserve tall heights */
  .cs-recap,
  .cs-notes{
    flex: 0 1 auto !important;
  }

  /* tighten inner paddings */
  .cs-recap{ padding: 12px 14px 6px !important; }
  .cs-notes{ padding: 6px 14px 10px !important; }

  /* grid on left stays two-up on phones like original */
  .cs-recap-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    column-gap: 16px; row-gap: 12px;
  }

  /* quote spacing tidy */
  .cs-notes-quote{ margin: 0 0 10px; }
  .cs-client{ margin-top: 6px; }
  .cs-notes > *:last-child{ margin-bottom: 0; }
}

.cs-client {
  display: flex;
  align-items: center;
  gap: 14px;   
}

.cs-client-name {
  font-weight: 700;
  font-size: 1rem;
  color: #232b38;
}

.cs-client-role {
  color: #888;
  font-size: .95rem;
}

.case-study-section .cs-client { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
}

.case-study-section .cs-client-img {
  width: 54px !important;
  height: 54px !important;
  flex: 0 0 54px;
  border-radius: 50% !important;
  object-fit: cover;
  max-width: none;
  aspect-ratio: auto;
  margin: 0 !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  border: 2px solid #eee;
}
.case-study-section .cs-client-name { font-weight: 700; color: #232b38; }
.case-study-section .cs-client-role { color: #888; font-size: .95rem; }


/* =============== 06 — Our Process =============== */
.our-process-section{
  position: relative; overflow: hidden; color: #fff;
  background: var(--dark-gradient);
  padding: clamp(120px, 12vw, 190px) 0 clamp(60px, 6vw, 110px);
}

/* dotted vertical columns behind content */
.our-process-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.vertical-lines{ position:absolute; inset:0; display:flex; justify-content:space-between; opacity:.75; }
.vertical-lines .vline{ width:0; height:100%; border-left:2px dotted rgba(255,255,255,.12); }

/* content wrapper */
.our-process-wrap{
  position:relative; z-index:1;
  width:min(1200px, 94vw); margin:0 auto; padding:0 16px;
}

/* grid of steps */
.our-process-steps{
  --stagger: clamp(24px, 6vw, 120px);
  display:grid; grid-template-columns:repeat(4, 1fr);
  column-gap: clamp(20px, 4.5vw, 72px); row-gap:0;
  min-height: clamp(260px, 30vw, 420px); margin-bottom: clamp(24px, 5vw, 40px);
}

/* stagger downward */
.our-process-steps .op-step:nth-child(1){ transform: translateY(calc(var(--stagger) * 0)); }
.our-process-steps .op-step:nth-child(2){ transform: translateY(calc(var(--stagger) * 1)); }
.our-process-steps .op-step:nth-child(3){ transform: translateY(calc(var(--stagger) * 2)); }
.our-process-steps .op-step:nth-child(4){ transform: translateY(calc(var(--stagger) * 3)); }

.op-step{ max-width:28ch; }
.op-title{
  color: var(--gold, #CDA25A);
  font-weight: 800; font-size: clamp(1.05rem, 1.7vw, 1.6rem); margin:0 0 6px;
}
.op-desc{ margin:0; color:#e9eef1; font-weight:600; font-size: clamp(.95rem, 1.3vw, 1.05rem); line-height: 1.45; }

@media (max-width:1100px){
  .our-process-steps{
    grid-template-columns:repeat(2, 1fr);
    row-gap: clamp(20px, 4vw, 32px);
    min-height:unset;
  }
  .our-process-steps .op-step{ transform:none; }
  .vertical-lines{ opacity:.5; }
}
@media (max-width:700px){
  .our-process-steps{ row-gap:22px; }
  .our-process-section{ padding-bottom: clamp(120px, 18vw, 180px); }
}

.our-process-section .op-title{
  color: var(--gold, #CDA25A) !important;
}


/* =============== CTA (full-width band + image/form) =============== */

.cta-full .cta-band{
  background: linear-gradient(180deg, #A91617 0%, #901113 100%); color:#fff;
}
.cta-full .cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(29px, 3.9vw, 42px) 20px; 
}


.cta-full .cta-band-title{
  margin:0; letter-spacing:-.01em; font-weight: 800; font-size: clamp(22px, 3vw, 34px); line-height: 1.15;
}
.cta-full .nowrap{ white-space:nowrap; }

.cta-full .cta-phone-wrap{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; text-align:center; }
.cta-full .cta-phone-top{ font-weight:700; opacity:.95; text-transform:uppercase; letter-spacing:.08em; }
.cta-full .cta-phone-link{ font-weight:800; color:#fff; text-decoration:none; font-size: clamp(22px, 2.8vw, 30px); line-height:1.05; }
.cta-full .cta-phone-link:hover{ text-decoration:underline; }

.cta-full .cta-image{ position:relative; background-size:cover; background-position:center; min-height: clamp(600px, 70vh, 720px); }

.cta-full .cta-overlay{ position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.45)); }
.cta-full .cta-image-inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items:center;
  padding: clamp(34px, 6vw, 64px) 20px;
}
.cta-full .cta-image-left{ display:flex; justify-content:flex-start; }

/* fix: keep buttons inside the form card */
.hero-card .btn,
.hero-form .btn,
.quote-form .btn{ width:100%; max-width:100%; box-sizing:border-box; }

@media (max-width: 980px){
  .cta-full .cta-band-inner{ grid-template-columns: 1fr; text-align:center; }
  .cta-full .cta-image-inner{ grid-template-columns: 1fr; }
  .cta-full .cta-image{ min-height: 0; }
}

/* Full-width CTA: keep all text in the red band white */
.cta-full .cta-band {
  color: #fff; /* base color for everything inside */
}
.cta-full .cta-band .cta-band-title,
.cta-full .cta-band .cta-band-title *,
.cta-full .cta-band a,
.cta-full .cta-band strong {
  color: #fff;              /* headline, inline spans, links */
}

/* Same gradient as Areas We Serve */
.cta-full .cta-band {
  background: linear-gradient(45deg, #A91617 0%, #5B2727 100%);
  /* optional: a touch of depth like the other panel */
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}



/* =============== Areas We Serve =============== */
.areas-section{
  padding: clamp(80px, 8vw, 120px) 0;
  background:#fff;
  color:#232b38;
  text-align:center;
}

/* extra room under the headline */
.areas-section .section-head{
  margin-bottom: clamp(60px, 8vw, 100px);
}

/* Map wrapper enforces a visual max-height without distortion */
.areas-map{
  width: min(1100px, 95vw);
  max-height: 440px; 
  overflow: hidden;  
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  margin: 0 auto 0;  
  border-radius: 12px 12px 0 0;
}
.areas-map img{
  display:block;
  width:100%;
  height:100%;                       /* fill the wrapper’s height */
  object-fit: cover;                 /* keep aspect, crop edges if needed */
}

/* Red panel -> 45° gradient (TL current red -> BR darker red) */
.areas-list-wrap{
  background: linear-gradient(45deg, #A91617 0%, #5B2727 100%);
  color:#fff;
  padding: clamp(40px, 6vw, 70px) 20px;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
  margin: 0 auto clamp(40px, 5vw, 60px);
  width: min(1100px, 95vw);
}

/* Grid + items */
.areas-list-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:24px;
  text-align:left;
}
.areas-list{
  list-style:none; margin:0; padding:0;
  display:flex; flex-direction:column; gap:12px;
}
.areas-list li{
  position:relative; padding-left:26px; font-weight:700;
}
.areas-list li::before{
  content:"📍";
  position:absolute; left:0; top:0;
  font-size:1rem; line-height:1;
}

/* Make cities clickable, keep white text */
.areas-list a{
  color:#fff; text-decoration:none; font-weight:800;
}
.areas-list a:hover{ text-decoration:underline; }

/* CTA */
.areas-cta{ text-align:center; }
.btn-red{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 26px; border-radius:10px;
  background:#A91617; color:#fff; text-decoration:none;
  font-weight:800;
  box-shadow:0 10px 22px rgba(169,22,23,.25);
  transition: filter .2s;
}
.btn-red:hover{ filter: brightness(.9); }

.areas-list-wrap{
  margin-top: 0;                    /* ensure it sits flush under the map */
  border-radius: 0 0 14px 14px;     /* square top corners, rounded bottom */
}
/* Responsive */
@media (max-width: 900px){
  .areas-list-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 500px){
  .areas-list-grid{ grid-template-columns: 1fr; }
}

/* ===================== DOWNLOAD OUR GUIDE (Stones) ===================== */
.guide-download-section{
  background:#fff;
  /* generous rhythm + allow the artwork to overlap the section above */
  padding: clamp(70px, 9vw, 140px) 0 clamp(80px, 10vw, 160px);
  position: relative;
  z-index: 2;
  overflow: visible;
}

.guide-download-inner{
  display:flex;
  align-items:flex-start;
  gap: clamp(24px, 5vw, 60px);
  width:min(var(--wrap, 1200px), 95vw);
  margin:0 auto;
}

/* ---------- LEFT: artwork + bullets ---------- */
.guide-download-left{
  flex:1.1;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.guide-download-img{
  /* bigger + pushed left; lifted into prior (dark) section */
  width: clamp(720px, 56vw, 980px);
  margin: clamp(-220px, -14vw, -160px) 0 32px;
  transform: translateX(-64px);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.12));
  pointer-events:none;
}

.guide-bullets-wrap{
  width: min(560px, 92vw);
  margin: 0 auto; /* centers wrapper; list stays left inside */
}

.guide-download-bullets{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(280px, 1fr));
  gap:16px 36px;
  color:#232b38;
  font: 600 1rem/1.55 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align:left;
}
.guide-download-bullets li{
  display:flex; align-items:center; gap:10px;
  white-space:normal;
}
.guide-download-bullets li::marker{ content:''; }
.guide-bullet-icon{
  display:inline-block;
  color:#1FB86A;              /* green check vibe */
  font-size:1.15rem;
  line-height:1;
  min-width:1.25em;
  text-align:center;
}

/* ---------- RIGHT: heading + copy + form ---------- */
.guide-download-right{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.guide-download-title{
  font: 800 clamp(2.8rem, 5.4vw, 4.4rem)/1.1 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  letter-spacing:-.01em;
  color:#232b38;
  margin:0 0 12px;
}

.guide-download-desc{
  /* keep desc slightly smaller than global p */
  font: 400 clamp(14px, .4vw + 12px, 16px)/1.55 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#232b38;
  margin:0 0 22px;
}

.guide-download-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.guide-download-form input[type="email"]{
  max-width:520px;
  width:100%;
  padding:12px 14px;
  border:1px solid #adadad;
  border-radius:6px;
  background:#fff;
  color:#232b38;
  font: 500 .95rem/1.2 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Use Stones red button (your base.css already makes .gold-button red) */
.guide-download-form .gold-button,
.guide-download-form .btn,
.guide-download-form .btn-primary{
  align-self:flex-start;
  min-width:320px;
  text-align:center;
}

/* ---------- Desktop keep title two lines max ---------- */
@media (min-width:701px){
  .guide-download-title .title-part-1,
  .guide-download-title .title-part-2 { display:inline; }
  .guide-download-title .title-part-1::after{ content:" "; }
}

/* ---------- Mobile/layout tweaks ---------- */
.guide-mobile-br{ display:none; }

@media (max-width:1100px){
  .guide-download-inner{
    flex-direction:column;
    align-items:center;
    gap:16px;
  }

  /* Flatten left/right so we can reorder */
  .guide-download-left{ display:contents; }
  .guide-download-right{ display:contents; }

  /* 1) Book image first, still overlapping upward */
  .guide-download-img{
    order:1;
    width:min(680px,95vw);
    margin: clamp(-120px, -16vw, -80px) 0 16px;
    transform:none;
  }

  /* 2) Title next, centered */
  .guide-download-title{
    order:2;
    text-align:center;
    margin:0 0 8px;
  }

  /* 3) (Optional) keep paragraph but tighten */
  .guide-download-desc{
    order:3;
    text-align:center;
    max-width: 720px;
    margin:0 auto 16px;
  }

  /* 4) Bullets after headline */
  .guide-bullets-wrap{ order:4; }
  .guide-download-bullets{
    grid-template-columns:1fr;
    gap:12px;
    padding-left: 8px;
  }

  /* 5) Form last, centered */ 
  .guide-download-form{
    order:5; align-items:center;
  }
  .guide-download-form input[type="email"],
  .guide-download-form .gold-button,
  .guide-download-form .btn,
  .guide-download-form .btn-primary{
    width:min(560px, 92vw);
  }

  .guide-mobile-br{ display:inline; }
}

/* Extra phone polish */
@media (max-width: 980px){
  .guide-download-bullets li{ font-size:.95rem; line-height:1.35; }
  .guide-bullets-wrap{ margin-bottom: 24px; }
}


/* ===================== VIDEO TESTIMONIAL (Stones) ===================== */
.video-testimonial{
  /* gradient + light text already handled by .dark-section in base.css */
  --vt-pad: clamp(80px, 10vw, 160px);
  padding-block: var(--vt-pad);
  overflow: hidden;
}

.vt-inner{
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr; /* ~40/60 */
  gap: clamp(24px, 5vw, 64px);
  width: min(1120px, 92vw);
  margin-left: clamp(24px, 8vw, 120px); /* left-biased like your reference */
  margin-right: auto;
  align-items: center;
}

/* --- Video block --- */
.vt-left{ isolation:isolate; }

.vt-video{
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(0,0,0,.28);
  background:#0b141a;
}
.vt-poster{
  width:100%; height:100%; object-fit:cover; display:block;
  filter: saturate(1.02) contrast(1.03);
}

/* Stones red circular play button */
.vt-play{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:84px; height:84px; display:grid; place-items:center;
  border:0; border-radius:999px; cursor:pointer;
  color:#fff;                          /* triangle color */
  background: linear-gradient(180deg, var(--red) 0%, var(--red-600) 100%);
  box-shadow: 0 10px 20px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.vt-play:hover{ transform:translate(-50%,-50%) scale(1.04); box-shadow:0 14px 26px rgba(0,0,0,.32); }

.vt-iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
  border-radius:16px;
}

/* --- Quote block --- */
.vt-right{ color:#fff; }

.vt-quote{
  position: relative;
  margin: 0 0 14px;
  /* Stones typography: Manrope instead of Chronicle */
  font: 800 clamp(1.4rem, 3.2vw, 2rem)/1.15 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  letter-spacing: -.01em;
  max-width: 42ch;
}
.vt-quote::before{
  content: "“";
  position: absolute; left: -18px; top: -14px;
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: .6;
  color: rgba(255,255,255,.12);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 900;
}

.vt-cite{
  font: 500 clamp(.95rem, 1.6vw, 1.05rem)/1.3 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(255,255,255,.8);
}

/* --- Responsive --- */
@media (max-width: 1000px){
  .vt-inner{ grid-template-columns: 1fr; margin: 0 auto; width: min(680px, 94vw); padding-inline: clamp(16px, 5vw, 24px); }
  .vt-video{ width:100%; margin: 0 auto 22px; }
  .vt-right{ width: min(680px, 88vw); margin: 0 auto; text-align:center; }
  .vt-quote{ margin-left:auto; margin-right:auto; max-width: 40ch; padding-inline: clamp(6px, 2vw, 10px); }
  .vt-quote::before{ font-size: clamp(4.2rem, 18vw, 7.5rem); left:-8px; top:-10px; color: rgba(255,255,255,.16); }
}


/* ===================== REVIEWS (Stones) ===================== */
/* Layout for the whole section */
.reviews-section .section-container{
  display: grid;
  grid-template-columns: minmax(340px, 460px) 1fr; /* left intro / right cards */
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}

/* Right side: two staggered columns of cards on desktop */
.reviews-section .reviews-tabs-container{
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: clamp(16px, 3vw, 36px);
  align-items: start;
}
.reviews-section .reviews-col{ display:flex; flex-direction:column; gap: clamp(12px, 2vw, 20px); }
.reviews-section .reviews-col-left  { margin-top: clamp(10px, 1.2vw, 18px); }
.reviews-section .reviews-col-right { margin-top: clamp(-20px, -1.4vw, -28px); }

/* Cards */
.reviews-section .review-tab{
  background:#fff;
  color:#232b38;
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.10);
  padding:18px 18px 14px;
}
.reviews-section .review-quote{
  margin:0 0 8px;
  font: 800 clamp(1rem, 1.6vw, 1.25rem)/1.25 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  letter-spacing:-.005em;
}
.reviews-section .review-body{
  margin:0 0 12px;
  font: 500 clamp(.92rem, 1.3vw, 1.02rem)/1.55 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.reviews-section .review-author{
  font:700 .95rem/1.2 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.reviews-section .review-location{ color:#586271; }

/* “Read reviews on Google” link: text underlined, logo clean */
.reviews-section .review-google-link{
  display:inline-flex; align-items:center; gap:10px; margin-top:10px;
  color:#232b38; font-weight:600; text-decoration:none;
}
.reviews-section .review-google-link span{ text-decoration:underline; }
.reviews-section .google-logo{ width:50px; height:auto; display:block; line-height:0; }

/* Desktop CTA shows; mobile CTA hidden by default */
.reviews-section .reviews-cta-mobile{ display:none; }
.reviews-spacer-desktop{ height:24px; }

/* ===================== Responsive ===================== */
@media (max-width: 980px){
  /* Stack intro above cards + tighten rhythm */
  .reviews-section .section-container{
    display:flex; flex-direction:column; gap:12px !important;
  }

  /* Cards collapse to a single column; hide the right column */
  .reviews-section .reviews-tabs-container{ display:block; }
  .reviews-section .reviews-col-right{ display:none !important; }
  .reviews-section .reviews-col-left{ margin-top:0 !important; }
  .reviews-section .review-tab{ padding:16px 14px 12px; }

  /* Move CTA under the cards on mobile */
  .reviews-section .section-left .gold-button{ display:none !important; } /* desktop CTA hidden */
  .reviews-section .reviews-cta-mobile{
    display:inline-flex !important; align-self:center; margin-top:14px;
  }

  .reviews-spacer-desktop{ display:none; }
}

/* ===================== COUPON / ONLINE SPECIAL (Stones) ===================== */
.coupon-section{
  padding: clamp(80px, 8vw, 140px) 0 clamp(120px, 10vw, 160px);
}
.coupon-wrap{
  width: min(1180px, 94vw);
  margin: 0 auto;
}

/* Card with background image from inline --coupon-bg */
.coupon-card{
  position: relative;
  overflow: visible;                                  /* allow ticket to bleed */
  min-height: clamp(300px, 26vw, 380px);
  border-radius: 24px;
  background: var(--coupon-bg, url('/assets/img/wide-img-1.webp')) center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(0,0,0,.12);
}
/* subtle veil for legibility */
.coupon-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(5,11,14,.55) 0%, rgba(5,11,14,.25) 55%, rgba(5,11,14,.12) 100%);
  border-radius: inherit;
}

/* LEFT column (text + form) */
.coupon-left{
  position: relative; z-index: 1;
  width: clamp(320px, 48%, 560px);
  padding: clamp(20px, 3.2vw, 32px) clamp(22px, 4vw, 48px);
  color:#fff;
}
.coupon-head{
  margin:0 0 10px;
  color:#fff;
  font: 800 clamp(1.6rem, 3.4vw, 2.6rem)/1.1 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  letter-spacing:-.01em;
}
.coupon-off{
  color: var(--gold-3, #b3a27c);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
}

.coupon-form{ display:flex; flex-direction:column; gap:12px; max-width:520px; }
.coupon-row{ display:flex; gap:12px; }
.coupon-form input{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff; color:#111827;
  font: 500 1rem/1.2 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  box-shadow:0 3px 12px rgba(0,0,0,.06);
}

/* RIGHT: the “ticket” that overlaps the card edge */
.coupon-ticket{
  position:absolute; z-index: 2;
  right: clamp(60px, 7vw, 110px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 15.8vw, 245px);
  height: calc(100% + 80px);
  background: url('/assets/img/coupon.webp') center/contain no-repeat;
  border-radius: 14px;
  pointer-events: none;
}

/* accessibility helper */
.sr-only{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .coupon-section{ padding: 32px 0 56px; }
  .coupon-left{ width: 100%; padding: 16px 18px; }
  .coupon-row{ flex-direction:column; }
  .coupon-ticket{ display:none; }            /* hide ticket on mobile */
}
@media (max-width: 600px){
  .coupon-section{ padding: 24px 0 40px; }
}


/* ===================== FAQ (Stones) ===================== */

.faq-section .faq-inner{
  width: min(1200px, 95vw);
  margin: 24px auto 0;
}

.faq-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-col{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Card shell */
.faq-item{
  background: #f1f2f4;                     /* closed bg */
  border-radius:14px;
  box-shadow:0 8px 26px rgba(0,0,0,.06);
  overflow:hidden;
}

/* Question button (Manrope) */
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  background:transparent;
  border:0; cursor:pointer; text-align:left;
  color:#565656;
  font: 800 1rem/1.35 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  letter-spacing:.01em;
  transition: background .18s ease, color .18s ease;
}
.faq-q:hover{ background:#e6e8eb; }
.faq-q:focus-visible{
  outline:2px solid rgba(198,161,90,.65);  /* gold focus ring */
  outline-offset:2px;
  border-radius:10px;
}

/* Chevron */
.faq-q .chev{
  flex:0 0 auto;
  opacity:.7;
  transition: transform .18s ease, opacity .18s ease, color .18s ease;
  color: currentColor;
}

/* Answer (Poppins) */
.faq-a{
  display:none;
  background:#fff;
  border-top:1px solid #e9edf3;
  padding:16px 20px 18px;
  color:#5c5c5c;
  font: 500 .98rem/1.55 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Open state — Stones gold bar for the question */
.faq-item.is-open .faq-q{
  color:#232b38;
  background: linear-gradient(92deg,#E2C28F 0%, #C6A15A 45%, #B38A48 100%);
}
.faq-item.is-open .faq-q .chev{
  transform: rotate(180deg);
  opacity:.95;
  color:#232b38;
}
.faq-item.is-open .faq-a{ display:block; }

/* Mobile stack */
@media (max-width: 900px){
  .faq-grid{ grid-template-columns:1fr; gap:14px; }
  .faq-q{ padding:16px 18px; }
  .faq-a{ padding:14px 18px 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .faq-q, .faq-q .chev{ transition:none; }
}

/* ===============================
   Footer – Gold Frame Hero
   =============================== */

.footer{
  position: relative;
  padding: 15px;                  /* shows the gold frame offset from edges */
  color: #fff;
  isolation: isolate;
}
.footer-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}
.footer-overlay{
  position:absolute; inset:0;
  background: rgba(33,40,55,.60); /* soft veil over photo */
  z-index:1;
}

/* Framed container */
.footer-inner{
  position: relative; z-index:2;
  width:100%;
  min-height: clamp(560px, 80vh, 820px);
  border: 2px solid var(--gold);
  display:flex; flex-direction:column;
}

/* Two columns row inside the frame */
.footer-content-wrapper{
  flex:1;
  display:grid; grid-template-columns: 1fr 1fr;
  align-items:center; justify-content:center;
  gap: clamp(28px, 5vw, 56px);
  width:100%; max-width:1200px;
  margin: min(12vw,150px) auto min(8vw,100px);
  padding: 0 16px;
}

/* Left column */
.footer-text{ max-width:680px; text-align:left; }
.footer-subtitle{
  color: rgba(255,255,255,.86);
  font: 500 1rem/1.6 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width:56ch;
  margin: 6px 0 22px;
}

/* Owner strip */
.owner-block{ display:flex; align-items:flex-end; gap:18px; margin:12px 0 18px; }
.owner-name{ font:800 clamp(24px,3vw,32px)/1.1 'Manrope', system-ui; color:#fff; }
.owner-title{ margin-top:4px; color:rgba(255,255,255,.75); font:600 15px/1.2 'Poppins', system-ui; }
.owner-signature{ width:192px; height:84px; background-size:contain; background-repeat:no-repeat; }

/* Contact & socials */
.contact-list{ list-style:none; margin:0 0 12px; padding:0; display:grid; gap:10px; }
.contact-list li{ display:flex; gap:10px; align-items:flex-start; }
.contact-list .icon{ color:#fff; opacity:.9; line-height:1; margin-top:2px; }
.contact-list a{ color:#fff; text-decoration:none; opacity:.95; }
.contact-list a:hover{ opacity:1; text-decoration:underline; }
.contact-list .address{ color:#fff; opacity:.9; }

.footer-socials{ display:flex; gap:14px; margin-top:6px; }
.footer-socials a{
  color:#fff; opacity:.9; display:inline-grid; place-items:center;
  width:36px; height:36px; border-radius:999px; background:rgba(255,255,255,.12);
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}
.footer-socials a:hover{ opacity:1; transform:translateY(-2px); background:rgba(255,255,255,.18); }

/* Right column – form card */
.footer .form-section{
  max-width: 355px;
  justify-self:center;
  background:#fff;
  border-radius:14px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  overflow:hidden;
}
.footer .form-header{
  background: linear-gradient(180deg, #E2C28F 0%, #C6A15A 50%, #B38A48 100%);
  color:#1b1b1b; padding:14px 18px; text-align:center;
}
.footer .form-header h3{
  margin:0; font: 800 clamp(18px,2.2vw,22px)/1.15 'Manrope', system-ui;
  letter-spacing:-.01em;
}
.footer form{ padding:14px 14px 16px; display:flex; flex-direction:column; gap:10px; }
.footer form label{
  color:#232b38; font:600 .95rem/1.35 'Poppins', system-ui; margin-bottom:2px;
}
.footer form input,
.footer form textarea{
  width:100%; border:1px solid #d9dbe1; border-radius:10px;
  padding:12px 12px; font:500 .95rem/1.35 'Poppins', system-ui; color:#111827;
  background:#fff; outline:none; box-shadow: 0 3px 12px rgba(0,0,0,.06);
}
.footer form textarea{ min-height:110px; resize:vertical; }
.footer form .btn{ width:100%; margin-top:4px; }  /* red Stones button */

/* Copyright inside the frame */
.footer-copyright{
  margin-top:auto; text-align:center;
  padding: 20px 10px 12px;
  font: 500 15px/1 'Poppins', system-ui;
  color:#fff; opacity:.6;
}
.footer-copyright .copy-right::before{ content:" | "; }
@media (max-width:700px){
  .footer-copyright .copy-right{ display:block; margin-top:4px; }
  .footer-copyright .copy-right::before{ content:none; }
}

/* Responsive */
@media (max-width: 900px){
  .footer-content-wrapper{ grid-template-columns:1fr; }
  .footer-text{ margin-inline:16px; }
  .owner-block{ margin:32px 0 18px; gap:14px; }
  .footer-socials{ margin:6px 0 20px; }
  .footer .form-section{ width:100%; max-width:420px; align-self:center; }
}

/* Tiny legal bar under the hero footer (optional) */
.site-foot--legal{ background:#0f0f0f; color:#bdbdbd; padding:10px 0; }
.site-foot--legal .wrap small{ font:500 12px/1 'Poppins', system-ui; }


/* ===================== PAGE HERO (Basic Service) ===================== */
.page-hero{
  position: relative;
  isolation: isolate;
  min-height: 460px; 
  display: grid;
  place-items: center;
  padding-top: var(--nav-h);        /* clears the sticky nav */
  color: #fff;
  overflow: hidden;
}
.page-hero .ph-bg{
  position: absolute; inset: 0;
  background-image: var(--ph-bg, url('/assets/img/hero-bkgd.webp'));
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.03);
  z-index: -2;
}
/* Stones dark gray gradient veil (replaces all blue/navy veils) */
.page-hero .ph-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #222222 0%, #0F0F0F 100%);
  opacity: .75;                     /* readable type while keeping photo visible */
  z-index: -1;
}
.page-hero .ph-inner{
  width: min(1200px, 92vw);
  margin-inline: auto;
  text-align: center;
}

/* Typography — Stones law: Manrope for headings, Poppins for body */
.page-hero .ph-title{
  margin: 0 0 .35em;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 1.12;
}
.page-hero .ph-sub{
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  /* keep this calmer so the H1 stands out */
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 72ch;
  margin-inline: auto;
}

/* Tighten on very small phones */
@media (max-width: 420px){
  .page-hero .ph-sub{ font-size: 0.98rem; }
}


/* ---------- Gallery grid thumbnails ---------- */
.gallery-img-hover img{
  display:block;
  width:100%;
  border-radius:16px;
  box-shadow:0 14px 36px rgba(0,0,0,.12);
  cursor:pointer;
}

/* ---------- Lightbox modal (overlay) ---------- */
.gallery-modal{
  position: fixed;              /* take out of document flow */
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.75);
  opacity: 0;
  visibility: hidden;           /* hidden by default */
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 3000;                /* above nav/footer */
}

/* open state */
.gallery-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* modal content */
.gallery-modal-img{
  max-width: min(96vw, 1200px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  background: #111;
}

/* close + arrows */
.gallery-modal-close{
  position:absolute; top:18px; right:22px;
  color:#fff; font-size:36px; line-height:1;
  cursor:pointer; user-select:none;
}
.gallery-modal-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  color:#fff; font-size:44px; line-height:1;
  padding:12px 16px; cursor:pointer; user-select:none;
}
.gallery-modal-arrow-left{ left:20px; }
.gallery-modal-arrow-right{ right:20px; }

/* optional: prevent background scroll when modal open */
body.modal-open{ overflow:hidden; }

/* Custom background for the pricing section only */
section#pricing-options {
  background-color: #ededed !important;
}