/* ============================================================
   Toronto Balcony Cleaners — "Golden Hour Glass" design system
   Palette: twilight ink + golden-hour amber + clean-water teal
   Type: Space Grotesk (display) · Hanken Grotesk (body) · Space Mono (utility)
   ============================================================ */

:root {
  --ink:        #141d2e;   /* twilight, near-black blue */
  --ink-2:      #223049;   /* raised twilight */
  --sky:        #f4f7f9;   /* page background, pale glass-white */
  --glass:      #e7eef2;   /* panel tint */
  --paper:      #ffffff;
  --amber:      #e6a23c;   /* golden-hour accent / CTA */
  --amber-deep: #c17e22;
  --teal:       #1c7a83;   /* clean-water secondary */
  --teal-deep:  #12565d;
  --text:       #1a2334;
  --muted:      #57647a;
  --line:       rgba(20,29,46,.12);
  --line-2:     rgba(20,29,46,.08);
  --shadow:     0 1px 2px rgba(20,29,46,.06), 0 12px 32px -12px rgba(20,29,46,.18);
  --radius:     14px;
  --maxw:       1120px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sky);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; font-weight: 700; color: var(--ink); }
p { margin: 0 0 1rem; }
a { color: var(--teal-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 104px); }

/* ---- utility label (mono eyebrow) ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 .9rem;
  display: inline-flex;
  align-items: center;
  gap: .6ch;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--teal);
  display: inline-block;
}

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,247,249,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 4px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); text-decoration: none; letter-spacing: -.01em; }
.brand .mark { width: 55px; height: 55px; flex: none; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .96rem; }
.nav a:hover { color: var(--teal-deep); }
.nav .btn { padding: .55rem 1rem; font-size: .9rem; }
.nav-links { display: flex; gap: 1.6rem; }
@media (max-width: 760px){ .nav-links { display: none; } }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6ch;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-primary { background: var(--amber); color: #2a1c05; box-shadow: 0 8px 20px -8px rgba(230,162,60,.7); }
.btn-primary:hover { background: var(--amber-deep); color:#fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }

/* ============================ HERO ============================ */
.hero { background: var(--ink); color: #eaf0f6; position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 3; padding-block: clamp(64px, 9vw, 120px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 880px){ .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4rem); margin: 0 0 1.1rem; }
.hero h1 .hl { color: var(--amber); }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: #b9c6d6; max-width: 46ch; margin: 0 0 1.8rem; }
.hero .eyebrow { color: #7fd0d8; }
.hero .eyebrow::before { background: #7fd0d8; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-trust {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 1.8rem;
    font-size: .9rem;
    color: #9fb0c2;
    font-family: var(--font-mono);
    letter-spacing: .02em;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .5ch; }
.hero-trust b { color: var(--amber); font-weight: 400; }

/* --- signature: the "clarity" glass panel that wipes clean --- */
.clarity {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.6);
  background: linear-gradient(#20304b, #0e1626);
}
.clarity svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.clarity .frost {
  position: absolute; inset: 0; z-index: 4;
  background:
    radial-gradient(120px 80px at 30% 30%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(90px 60px at 70% 65%, rgba(255,255,255,.12), transparent 60%),
    rgba(220,232,240,.5);
  backdrop-filter: blur(7px) brightness(1.04);
  -webkit-backdrop-filter: blur(7px) brightness(1.04);
  clip-path: inset(0 0 0 0);
  animation: wipe 2s cubic-bezier(.7,.02,.28,1) .5s forwards;
}
.clarity .squeegee {
  position: absolute; top: 0; bottom: 0; width: 4px; z-index: 5;
  background: linear-gradient(var(--amber), #fff, var(--amber));
  box-shadow: 0 0 16px rgba(230,162,60,.8);
  left: 0; opacity: 0;
  animation: squeegee 2s cubic-bezier(.7,.02,.28,1) .5s forwards;
}
.clarity .caption {
  position: absolute; left: 14px; bottom: 12px; z-index: 6;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  color: #dfe9f1; background: rgba(10,18,30,.55); padding: .3rem .6rem; border-radius: 6px;
  backdrop-filter: blur(4px);
}
@keyframes wipe { from { clip-path: inset(0 0 0 0); } to { clip-path: inset(0 100% 0 0); } }
@keyframes squeegee {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .clarity .frost { animation: none; clip-path: inset(0 100% 0 0); }
  .clarity .squeegee { display: none; }
}

/* ============================ TRUST STRIP ============================ */
.strip { background: var(--ink-2); color: #cdd8e4; }
.strip .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: center; padding-block: 18px; font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em; }
.strip .wrap span { display: inline-flex; align-items: center; gap: .6ch; }
.strip b { color: var(--amber); font-weight: 400; }

/* ============================ SECTIONS ============================ */
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0 0 .6rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 860px){ .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.card .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--glass); display: grid; place-items: center; margin-bottom: 1rem; color: var(--teal-deep); }
.card h3 { font-size: 1.24rem; margin: 0 0 .5rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-mono); font-size: .95rem; color: var(--amber-deep);
  border-top: 2px solid var(--amber); padding-top: .5rem; width: 100%;
}
.step h3 { font-size: 1.12rem; margin: 0 0 .35rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* pricing */
.price-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 860px){ .price-wrap { grid-template-columns: 1fr; } }
.price {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; position: relative;
}
.price.featured { border-color: var(--amber); box-shadow: 0 20px 40px -20px rgba(230,162,60,.45); }
.price .tag { position: absolute; top: -12px; right: 18px; background: var(--amber); color: #2a1c05; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em; padding: .3rem .7rem; border-radius: 999px; text-transform: uppercase; }
.price h3 { font-size: 1.2rem; margin: 0 0 .4rem; }
.price .amount { font-family: var(--font-display); font-size: 2.6rem; color: var(--ink); font-weight: 700; letter-spacing: -.03em; }
.price .amount small { font-size: 1rem; color: var(--muted); font-weight: 500; font-family: var(--font-body); }
.price ul { list-style: none; padding: 0; margin: 1.1rem 0 1.4rem; }
.price li { padding: .4rem 0 .4rem 1.7rem; position: relative; color: var(--text); font-size: .96rem; border-bottom: 1px solid var(--line-2); }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { font-family: var(--font-display); font-weight: 500; font-size: 1.14rem; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--amber-deep); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: .9rem 0 0; }

/* neighbourhood index grid */
.hoods-band { background: var(--glass); }
.hood-group { margin-bottom: 2.4rem; }
.hood-group h3 { font-size: 1.05rem; font-family: var(--font-mono); font-weight: 400; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-deep); border-bottom: 1px solid var(--line); padding-bottom: .6rem; margin: 0 0 1rem; }
.hood-list { columns: 4 200px; column-gap: 1.5rem; }
.hood-list a { display: block; color: var(--text); text-decoration: none; padding: .28rem 0; font-size: .96rem; break-inside: avoid; }
.hood-list a:hover { color: var(--teal-deep); text-decoration: underline; }

/* CTA band */
.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 .7rem; }
.cta-band p { color: #b9c6d6; max-width: 52ch; margin: 0 auto 1.6rem; }
.cta-band .btn-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* local page specifics */
.local-hero { background: var(--ink); color: #eaf0f6; }
.local-hero .wrap { padding-block: clamp(52px, 7vw, 88px); }
.local-hero .eyebrow { color: #7fd0d8; }
.local-hero .eyebrow::before { background:#7fd0d8; }
.local-hero h1 { color:#fff; font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 18ch; margin: 0 0 1rem; }
.local-hero p { color:#b9c6d6; max-width: 54ch; font-size: 1.1rem; }
.breadcrumb { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color:#8fa0b4; margin-bottom: 1.4rem; }
.breadcrumb a { color:#8fa0b4; }
.local-body { display: grid; grid-template-columns: 1fr 320px; gap: clamp(28px,5vw,56px); }
@media (max-width: 900px){ .local-body { grid-template-columns: 1fr; } }
.local-body h2 { font-size: 1.5rem; margin: 2rem 0 .7rem; }
.local-body h2:first-child { margin-top: 0; }
.local-body ul { padding-left: 1.2rem; }
.local-body li { margin-bottom: .4rem; }
.aside { position: sticky; top: 88px; align-self: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.aside h3 { font-size: 1.2rem; margin: 0 0 .3rem; }
.aside .amount { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.aside .amount small { font-size: .95rem; color: var(--muted); font-family: var(--font-body); }
.aside .btn { width: 100%; margin-top: 1rem; }
.aside .meta { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); margin-top: 1rem; letter-spacing: .02em; }
.nearby { margin-top: 1.4rem; }
.nearby h4 { font-family: var(--font-mono); font-weight: 400; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; color: var(--teal-deep); margin: 0 0 .6rem; }
.nearby a { display: inline-block; margin: 0 .5rem .5rem 0; padding: .3rem .7rem; background: var(--glass); border-radius: 999px; font-size: .85rem; color: var(--text); text-decoration: none; }
.nearby a:hover { background: var(--teal); color: #fff; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--ink); color: #9fb0c2; padding-block: 48px 32px; border-top: 1px solid rgba(255,255,255,.06); }
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 720px){ .site-footer .wrap { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; font-family: var(--font-mono); font-weight: 400; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1rem; }
.site-footer a { color: #9fb0c2; text-decoration: none; display: block; padding: .2rem 0; font-size: .92rem; }
.site-footer a:hover { color: var(--amber); }
.site-footer .brand { color: #fff; margin-bottom: .8rem; }
.site-footer .about { font-size: .92rem; max-width: 34ch; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2rem; padding-top: 1.4rem; font-size: .82rem; color: #6f8098; font-family: var(--font-mono); letter-spacing: .02em; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }

/* ============================ BOOKING FORM ============================ */
.book-band { background: var(--glass); }
.book-shell { max-width: 820px; margin-inline: auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2.4rem); }
.book-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
@media (max-width: 620px){ .book-form { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.book-form label { font-size: .82rem; font-weight: 600; color: var(--ink); font-family: var(--font-body); letter-spacing: .01em; }
.book-form label .req { color: var(--amber-deep); }
.book-form input, .book-form select, .book-form textarea {
  font: inherit; font-size: .98rem; padding: .72rem .85rem; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--text); width: 100%; transition: border-color .12s ease;
}
.book-form textarea { min-height: 96px; resize: vertical; }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(28,122,131,.15); }
.book-form .btn { grid-column: 1 / -1; width: 100%; font-size: 1.05rem; padding: .95rem; margin-top: .3rem; }
.book-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { grid-column: 1 / -1; font-family: var(--font-mono); font-size: .74rem; color: var(--muted); letter-spacing: .02em; text-align: center; margin: 0; }
.form-note a { color: var(--teal-deep); }

/* thank-you page */
.ty { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.ty .inner { max-width: 40ch; }
.ty .check { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); display: grid; place-items: center; margin: 0 auto 1.4rem; color: #fff; }
.ty h1 { font-size: clamp(1.8rem,4vw,2.6rem); margin: 0 0 .6rem; }
.ty p { color: var(--muted); font-size: 1.08rem; margin-bottom: 1.6rem; }

/* ============================ INSTAGRAM GALLERY ============================ */
.insta-band { background: var(--ink); color: #eaf0f6; }
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.insta-head h2 { color: #fff; font-size: clamp(1.8rem,3.6vw,2.6rem); margin: 0 0 .4rem; }
.insta-head .eyebrow { color: #e6a2c0; }
.insta-head .eyebrow::before { background: #e6a2c0; }
.insta-head p { color: #b9c6d6; margin: 0; max-width: 46ch; }
.insta-handle { display: inline-flex; align-items: center; gap: .6ch; color: #fff; text-decoration: none; font-family: var(--font-mono); font-size: .95rem; padding: .7rem 1.1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; white-space: nowrap; transition: background .15s ease, border-color .15s ease; }
.insta-handle:hover { background: linear-gradient(90deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: #fff; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
@media (max-width: 820px){ .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-tile { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; text-align: center; padding: 1rem; background: linear-gradient(150deg, #223049, #141d2e); transition: transform .15s ease, border-color .15s ease; }
.insta-tile:nth-child(4n+1){ background: linear-gradient(150deg,#22434a,#12262b); }
.insta-tile:nth-child(4n+3){ background: linear-gradient(150deg,#3a2f1c,#241a0e); }
.insta-tile:hover { transform: translateY(-3px); border-color: rgba(230,162,60,.6); }
.insta-tile .ig-ico { width: 26px; height: 26px; color: #eaf0f6; opacity: .8; margin-bottom: .6rem; }
.insta-tile span { font-family: var(--font-body); font-size: .88rem; color: #cdd8e4; font-weight: 500; }
.insta-embed { margin-top: .5rem; }
/* native IG/TikTok post embeds in a masonry column layout */
.insta-posts { columns: 326px 3; column-gap: 1rem; margin-top: .5rem; }
@media (max-width: 720px){ .insta-posts { columns: 1; } }
.insta-posts .instagram-media,
.insta-posts .tiktok-embed { break-inside: avoid; margin: 0 auto 1rem !important; display: inline-block; width: 100%; }
.insta-note { margin-top: 1.6rem; font-family: var(--font-mono); font-size: .76rem; color: #7f90a4; letter-spacing: .02em; }
.insta-note a { color: #e6a2c0; }

.tt-head { color:#fff; font-family:var(--font-display); font-size:1.3rem; margin:2.4rem 0 1.2rem; }

/* ============================ GALLERY TILES + LIGHTBOX ============================ */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
@media (max-width: 820px){ .gal-grid { grid-template-columns: repeat(2, 1fr); } }
.gal-tile { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; display: grid; place-items: center; text-decoration: none; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(150deg, #223049, #141d2e); transition: transform .15s ease, border-color .15s ease; cursor: pointer; }
.gal-tile:nth-child(4n+1){ background: linear-gradient(150deg,#22434a,#12262b); }
.gal-tile:nth-child(4n+3){ background: linear-gradient(150deg,#3a2f1c,#241a0e); }
.gal-tile.gal-tt { background: linear-gradient(150deg,#3a1030,#160a1f); }
.gal-tile:hover, .gal-tile:focus-visible { transform: translateY(-3px); border-color: rgba(230,162,60,.6); }
.gal-badge { display: grid; place-items: center; }
.gal-badge .ig-ico { width: 30px; height: 30px; color: #eaf0f6; opacity: .9; }
.gal-view { position: absolute; bottom: 10px; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: #cdd8e4; opacity: 0; transform: translateY(4px); transition: opacity .15s ease, transform .15s ease; }
.gal-tile:hover .gal-view, .gal-tile:focus-visible .gal-view { opacity: 1; transform: none; }

/* lightbox */
.gal-modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 20px; background: rgba(9,13,22,.85); backdrop-filter: blur(6px); }
.gal-modal.open { display: grid; animation: galfade .18s ease; }
@keyframes galfade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce){ .gal-modal.open { animation: none; } .gal-tile { transition: none; } }
.gal-content { position: relative; width: min(420px, 100%); max-height: 88vh; overflow: auto; border-radius: 14px; background: #fff; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); -webkit-overflow-scrolling: touch; }
.gal-frame iframe { display: block; }
.gal-btn { position: fixed; z-index: 101; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; cursor: pointer; display: grid; place-items: center; transition: background .15s ease; font-family: var(--font-body); line-height: 1; }
.gal-btn:hover { background: var(--amber); color: #2a1c05; border-color: transparent; }
.gal-close { top: 18px; right: 18px; width: 46px; height: 46px; font-size: 1.8rem; }
.gal-prev, .gal-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.gal-prev { left: max(18px, 3vw); }
.gal-next { right: max(18px, 3vw); }
@media (max-width: 560px){
  .gal-prev { left: 8px; } .gal-next { right: 8px; }
  .gal-prev, .gal-next { width: 42px; height: 42px; font-size: 1.6rem; }
}

/* ============================ 8-CARD SERVICES GRID ============================ */
.cards.cards-8 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px){ .cards.cards-8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .cards.cards-8 { grid-template-columns: 1fr; } }

/* ============================ BEFORE/AFTER SLIDER ============================ */
.ba { position: relative; aspect-ratio: 1080 / 915; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 60px -24px rgba(0,0,0,.6); background: #0e1626; user-select: none; touch-action: pan-y; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

.ba-before .ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-tag { position: absolute; top: 12px; z-index: 4; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; padding: .3rem .6rem; border-radius: 6px; text-transform: uppercase; }
.ba-tag-before { left: 12px; background: rgba(20,29,46,.72); color: #fff; }
.ba-tag-after { right: 12px; background: var(--amber); color: #2a1c05; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--amber); transform: translateX(-50%); z-index: 4; pointer-events: none; box-shadow: 0 0 14px rgba(230,162,60,.7); }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 4; width: 46px; height: 46px; border-radius: 50%; background: rgba(20,29,46,.72); border: 2px solid var(--amber); color: #fff; display: grid; place-items: center; pointer-events: none; backdrop-filter: blur(4px); font-family: var(--font-mono); letter-spacing: -1px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 5; -webkit-appearance: none; appearance: none; background: transparent; }
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 48px; height: 999px; border: 0; background: transparent; cursor: ew-resize; }

/* ============================ PRICING (three-tier + how) ============================ */
..price-wrap.two { display: grid; grid-template-columns: repeat((3, 1fr) auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1200px; margin-inline: auto; }
@media (max-width: 720px){ .price-wrap.two { grid-template-columns: 1fr; } }
.price-sub { color: var(--muted); font-size: .98rem; margin: .1rem 0 1.1rem; }
.price .starting { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-deep); margin-bottom: .1rem; }
.price-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 860px; margin: 2.4rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line-2); }
@media (max-width: 720px){ .price-how { grid-template-columns: 1fr; gap: 1rem; } }
.ph-item h4 { font-size: 1.05rem; margin: 0 0 .4rem; color: var(--ink); }
.ph-item p { color: var(--muted); font-size: .93rem; margin: 0; }
.price-note { text-align: center; color: var(--muted); font-size: .95rem; margin: 1.6rem auto 0; max-width: 60ch; }
.price-title { text-align: center;  font-size: 2rem;  font-weight: 700; /* Bold */  margin-bottom: 2rem;  color: #1f2937; /* Optional */}


/* ============================ FILE UPLOAD FIELD ============================ */
.book-form label .opt { font-weight: 400; color: var(--muted); font-size: .82rem; }
.file-input { font: inherit; font-size: .92rem; padding: .6rem; border: 1px dashed var(--line); border-radius: 10px; background: #fff; width: 100%; cursor: pointer; color: var(--muted); }
.file-input::file-selector-button { font: inherit; font-weight: 600; margin-right: .8rem; padding: .5rem .9rem; border: 0; border-radius: 8px; background: var(--glass); color: var(--teal-deep); cursor: pointer; }
.file-input::file-selector-button:hover { background: var(--teal); color: #fff; }
.file-hint { font-size: .8rem; color: var(--muted); margin: .4rem 0 0; }
