/* =========================================================
   SKIN SHINE — INTERNAL PAGES (Treatments, About, Contact, Services)
   ========================================================= */

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 22px 0 6px;
  font-size: .82rem;
  color: var(--clr-muted);
  letter-spacing: .02em;
}
.breadcrumb a { color: var(--clr-muted); transition: color .25s var(--ease); }
.breadcrumb a:hover { color: var(--clr-primary); }
.breadcrumb .sep { margin: 0 10px; color: var(--clr-line); }
.breadcrumb .current { color: var(--clr-ink); font-weight: 600; }

/* ===== TREATMENT HERO ===== */
.tp-hero {
  position: relative;
  padding: 40px 0 clamp(70px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.tp-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 50% at 10% 20%, rgba(242, 220, 209, .55) 0%, transparent 65%),
    radial-gradient(30% 30% at 90% 80%, rgba(200, 107, 92, .22) 0%, transparent 60%),
    linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}
.tp-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.2'/></svg>");
  opacity: .4;
  mix-blend-mode: overlay;
}
.tp-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.tp-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(184, 92, 74, .10);
  color: var(--clr-primary);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.tp-hero__tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-primary);
}
.tp-hero__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 20px;
  color: var(--clr-ink);
}
.tp-hero__title em {
  font-style: italic;
  color: var(--clr-primary);
}
.tp-hero__desc {
  font-size: 1.08rem;
  color: var(--clr-ink-2);
  max-width: 54ch;
  margin-bottom: 28px;
}
.tp-hero__meta {
  display: flex; flex-wrap: wrap;
  gap: 24px 36px;
  margin: 24px 0 32px;
  padding: 22px 0;
  border-top: 1px solid var(--clr-line);
  border-bottom: 1px solid var(--clr-line);
}
.tp-hero__meta > div { display: flex; flex-direction: column; gap: 4px; }
.tp-hero__meta dt {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-muted);
  font-weight: 600;
  margin: 0;
}
.tp-hero__meta dd {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--clr-ink);
  margin: 0;
  font-weight: 600;
}
.tp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.tp-hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--clr-primary);
}
.tp-hero__visual svg { width: 100%; height: 100%; display: block; }
.tp-hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 60%);
  pointer-events: none;
}
.tp-hero__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-ink);
  box-shadow: var(--shadow-md);
}
.tp-hero__badge svg { width: 18px; height: 18px; color: var(--clr-accent); }

/* ===== COMMON SECTION ===== */
.tp-section {
  padding: clamp(64px, 7vw, 110px) 0;
}
.tp-section--alt {
  background: var(--clr-bg-alt);
}
.tp-section--dark {
  background: linear-gradient(135deg, var(--clr-primary-2) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-cream);
  position: relative;
  overflow: hidden;
}
.tp-section--dark::before {
  content: "";
  position: absolute;
  right: -10%; top: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,158,106,.22) 0%, transparent 70%);
  filter: blur(60px);
}

/* ===== SECTION INTRO (shared with index) ===== */
.tp-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.tp-intro__head {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.tp-intro__head .section-title { margin-bottom: 20px; }
.tp-intro__head p { color: var(--clr-muted); }
.tp-intro__body > p { font-size: 1.06rem; line-height: 1.75; }
.tp-intro__body > p + p { margin-top: 18px; }

/* ===== INDICATIONS CHECKLIST ===== */
.tp-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin: 30px 0;
}
.tp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--clr-ink-2);
  transition: all .3s var(--ease);
}
.tp-checklist li:hover {
  border-color: var(--clr-accent);
  background: var(--clr-white);
  transform: translateX(4px);
}
.tp-checklist li::before {
  content: "✦";
  color: var(--clr-primary);
  font-size: 1rem;
  flex: 0 0 auto;
  margin-top: 2px;
}

/* ===== PROCEDURE STEPS ===== */
.tp-steps {
  counter-reset: step;
  display: grid;
  gap: 22px;
  margin-top: 40px;
}
.tp-steps li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 32px;
  background: var(--clr-cream);
  border-radius: var(--r-md);
  border: 1px solid var(--clr-line);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  counter-increment: step;
}
.tp-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1;
}
.tp-steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-accent);
}
.tp-steps h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 8px;
}
.tp-steps p {
  color: var(--clr-muted);
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== BENEFITS GRID ===== */
.tp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.tp-benefit {
  padding: 34px 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.tp-benefit:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .09);
  border-color: var(--clr-accent-2);
}
.tp-benefit__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--clr-accent);
  color: var(--clr-primary-dark);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.tp-benefit__icon svg { width: 24px; height: 24px; }
.tp-benefit h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-cream);
  margin: 0 0 8px;
}
.tp-benefit p {
  color: rgba(248, 242, 234, .78);
  margin: 0;
  font-size: .93rem;
  line-height: 1.7;
}

/* ===== TECH / PLATFORMS ===== */
.tp-tech {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tp-tech__card {
  padding: 28px 26px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
}
.tp-tech__card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}
.tp-tech__card strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--clr-ink);
  margin-bottom: 6px;
}
.tp-tech__card p {
  font-size: .88rem;
  color: var(--clr-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== STATS STRIP ===== */
.tp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 50px;
  border-radius: var(--r-lg);
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
}
.tp-stats > div {
  text-align: center;
}
.tp-stats strong {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.tp-stats span {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ===== FAQ (on treatment pages) ===== */
.tp-faq {
  max-width: 800px;
  margin: 40px auto 0;
}
.tp-faq__item {
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  padding: 22px 28px;
  margin-bottom: 12px;
}
.tp-faq__item[open] {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}
.tp-faq__item summary {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.tp-faq__item summary::-webkit-details-marker { display: none; }
.tp-faq__item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--clr-primary);
  transition: transform .3s var(--ease);
  font-weight: 300;
  line-height: 1;
}
.tp-faq__item[open] summary::after { transform: rotate(45deg); }
.tp-faq__item p {
  margin: 14px 0 0;
  color: var(--clr-muted);
  font-size: .96rem;
  line-height: 1.75;
}

/* ===== RELATED TREATMENTS ===== */
.tp-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.tp-related__card {
  display: block;
  padding: 28px 26px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.tp-related__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--clr-primary) 0%, var(--clr-primary-2) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.tp-related__card > * { position: relative; z-index: 1; }
.tp-related__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tp-related__card:hover::before { opacity: 1; }
.tp-related__card:hover h4,
.tp-related__card:hover p,
.tp-related__card:hover .tp-related__link { color: var(--clr-cream); }
.tp-related__card h4 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 6px;
  transition: color .3s var(--ease);
}
.tp-related__card p {
  font-size: .9rem;
  color: var(--clr-muted);
  margin: 0 0 16px;
  transition: color .3s var(--ease);
}
.tp-related__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-primary);
  transition: color .3s var(--ease);
}

/* ===== SIDEBAR CONTACT CARD ===== */
.tp-side {
  background: var(--clr-cream);
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-line);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.tp-side h4 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--clr-ink);
}
.tp-side p { color: var(--clr-muted); font-size: .92rem; margin-bottom: 22px; }

/* ===== BODY + SIDE LAYOUT ===== */
.tp-two-col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== QUOTE / PROMISE ===== */
.tp-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.tp-quote blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--clr-ink);
  margin: 0 0 24px;
  position: relative;
}
.tp-quote blockquote::before,
.tp-quote blockquote::after {
  content: "❝";
  color: var(--clr-primary);
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.tp-quote blockquote::after {
  content: "❞";
  margin-top: 14px;
}
.tp-quote cite {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ===== ABOUT-specific (about.html) ===== */
.about-hero {
  padding: 50px 0 90px;
  position: relative;
  overflow: hidden;
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--clr-accent-2) 0%, var(--clr-primary) 55%, var(--clr-primary-2) 100%);
}
.about-hero__monogram {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--clr-cream);
  padding: 40px;
  text-align: center;
}
.about-hero__monogram .mark {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(7rem, 12vw, 10rem);
  line-height: 1;
  font-weight: 600;
  text-shadow: 0 8px 30px rgba(74,26,18,.35);
}
.about-hero__monogram .name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 12px;
}
.about-hero__monogram .title {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.credentials > div {
  padding: 28px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
}
.credentials > div:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.credentials strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--clr-primary);
  margin-bottom: 6px;
}
.credentials p {
  margin: 0;
  color: var(--clr-muted);
  font-size: .9rem;
}

/* ===== TIMELINE (About/Clinic milestones) ===== */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 50px auto 0;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent), var(--clr-primary));
}
.timeline > div {
  position: relative;
  padding: 0 0 40px 28px;
}
.timeline > div::before {
  content: "";
  position: absolute;
  left: -32px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clr-primary);
  border: 3px solid var(--clr-bg);
  box-shadow: 0 0 0 4px var(--clr-accent-3);
}
.timeline > div:last-child { padding-bottom: 0; }
.timeline strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--clr-primary);
  font-weight: 600;
  margin-bottom: 2px;
}
.timeline h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--clr-ink);
  margin: 0 0 8px;
  font-weight: 600;
}
.timeline p { color: var(--clr-muted); margin: 0; }

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-hero {
  padding: 40px 0 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.contact-card {
  padding: 32px 28px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  transition: all .3s var(--ease);
}
.contact-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--clr-primary);
  color: var(--clr-cream);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--clr-ink);
  margin: 0 0 6px;
  font-weight: 600;
}
.contact-card p { color: var(--clr-muted); margin: 0; font-size: .95rem; line-height: 1.6; }
.contact-card a { color: var(--clr-primary); font-weight: 600; }
.contact-card a:hover { color: var(--clr-ink); }

.contact-map-full {
  margin-top: 50px;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-line);
}
.contact-map-full iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9); }

/* ===== SERVICES HUB ===== */
.services-hub {
  padding: var(--section-pad) 0;
}
.services-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.services-hub__card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  padding: 28px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-md);
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.services-hub__card::after {
  content: "→";
  position: absolute;
  right: 28px; top: 28px;
  color: var(--clr-primary);
  font-size: 1.3rem;
  transition: transform .3s var(--ease);
}
.services-hub__card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}
.services-hub__card:hover::after { transform: translateX(6px); }
.services-hub__art {
  width: 160px; height: 160px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(145deg, var(--clr-accent-2), var(--clr-primary));
}
.services-hub__art svg { width: 100%; height: 100%; display: block; }
.services-hub__body h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 8px;
}
.services-hub__body p {
  color: var(--clr-muted);
  font-size: .93rem;
  margin: 0 0 14px;
  line-height: 1.65;
}
.services-hub__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.services-hub__tags span {
  font-size: .72rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(184, 92, 74, .10);
  color: var(--clr-primary);
  letter-spacing: .04em;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .tp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .tp-hero__visual { max-width: 440px; margin: 0 auto; }
  .tp-intro { grid-template-columns: 1fr; gap: 30px; }
  .tp-intro__head { position: static; }
  .tp-two-col { grid-template-columns: 1fr; gap: 40px; }
  .tp-side { position: static; }
  .tp-tech { grid-template-columns: repeat(2, 1fr); }
  .tp-benefits { grid-template-columns: 1fr; }
  .tp-related { grid-template-columns: 1fr; }
  .tp-stats { grid-template-columns: repeat(2, 1fr); padding: 30px; }
  .about-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .credentials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-hub__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tp-checklist { grid-template-columns: 1fr; }
  .tp-steps li { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .tp-hero__meta { gap: 16px 24px; }
  .services-hub__card { grid-template-columns: 1fr; }
  .services-hub__art { width: 100%; height: 180px; }
}

/* ============== ENHANCEMENTS: a11y + article + blog + quick-book + before/after ============== */

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--clr-primary-dark);
  color: var(--clr-cream);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; outline: 2px solid var(--clr-accent-2); outline-offset: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== BLOG LANDING — article cards grid ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  display: block;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  color: inherit;
}
.article-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-lg);
}
.article-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--clr-primary);
}
.article-card__image svg { width: 100%; height: 100%; display: block; transition: transform 1s var(--ease); }
.article-card:hover .article-card__image svg { transform: scale(1.04); }
.article-card__body { padding: 28px 26px; }
.article-card__meta {
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--clr-muted);
  margin-bottom: 12px;
}
.article-card__meta span {
  color: var(--clr-primary);
  font-weight: 600;
  text-transform: uppercase;
}
.article-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--clr-ink);
  margin: 0 0 10px;
}
.article-card p {
  color: var(--clr-muted);
  font-size: .94rem;
  margin: 0 0 18px;
  line-height: 1.6;
}
.article-card__link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--clr-primary);
}

/* ===== ARTICLE + LEGAL page styles ===== */
.article { padding: 0 0 60px; }
.article__head {
  background:
    radial-gradient(40% 50% at 20% 30%, rgba(242, 220, 209, .6), transparent 65%),
    linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
  padding: 40px 0 70px;
  margin-bottom: 50px;
}
.article__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  max-width: 20ch;
  margin: 18px 0;
  color: var(--clr-ink);
}
.article__subtitle {
  font-size: 1.15rem;
  color: var(--clr-ink-2);
  max-width: 60ch;
  margin: 0 0 28px;
  line-height: 1.5;
}
.article__meta {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-line);
  font-size: .85rem;
  color: var(--clr-muted);
  flex-wrap: wrap;
}
.article__meta strong { color: var(--clr-ink); font-weight: 600; }
.article__body {
  max-width: 780px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--clr-ink-2);
}
.article__body h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  color: var(--clr-ink);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.article__body h2 em { color: var(--clr-primary); font-style: italic; }
.article__body p { margin-bottom: 18px; }
.article__body strong { color: var(--clr-ink); font-weight: 600; }
.article__body em { font-style: italic; color: var(--clr-primary-2); }
.article__cta {
  margin: 50px 0 0;
  padding: 36px 40px;
  background: var(--clr-cream);
  border: 1px solid var(--clr-line);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--clr-primary);
}
.article__cta h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-ink);
  margin: 0 0 8px;
}
.article__cta p { margin: 0; color: var(--clr-muted); }

.legal .article__body h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-line);
}

/* ===== QUICK BOOK BAR (mobile sticky) ===== */
.quick-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--clr-cream);
  border-top: 1px solid var(--clr-line);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 70;
  box-shadow: 0 -10px 30px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.quick-book-bar.is-visible { transform: translateY(0); }
.quick-book-bar__text {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-ink);
  flex: 1;
  min-width: 0;
}
.quick-book-bar__text span { display: block; font-size: .72rem; color: var(--clr-muted); font-weight: 400; margin-top: 2px; }
.quick-book-bar a {
  padding: 11px 18px;
  font-size: .85rem;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .quick-book-bar { display: flex; }
  .whatsapp-fab { bottom: 84px; }
}

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-slider-wrap {
  max-width: 680px;
  margin: 40px auto 0;
}
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-md);
  background: var(--clr-primary);
}
.ba-slider__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-cream);
  font-family: var(--ff-display);
  overflow: hidden;
}
.ba-slider__panel svg { width: 100%; height: 100%; display: block; }
.ba-slider__panel--after {
  clip-path: inset(0 0 0 50%);
}
.ba-slider__label {
  position: absolute;
  top: 20px;
  padding: 6px 16px;
  background: rgba(74, 26, 18, .85);
  color: var(--clr-cream);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 3;
}
.ba-slider__label--before { left: 20px; }
.ba-slider__label--after { right: 20px; }
.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--clr-cream);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.ba-slider__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  background: var(--clr-cream);
  display: grid;
  place-items: center;
  color: var(--clr-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  pointer-events: none;
}
.ba-slider__grip::before, .ba-slider__grip::after {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  position: absolute; top: 50%; margin-top: -5px;
}
.ba-slider__grip::before { left: 10px; border-width: 5px 7px 5px 0; border-color: transparent var(--clr-primary) transparent transparent; }
.ba-slider__grip::after { right: 10px; border-width: 5px 0 5px 7px; border-color: transparent transparent transparent var(--clr-primary); }
.ba-slider__hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  color: var(--clr-cream);
  opacity: .85;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article__body { font-size: 1rem; }
  .article__cta { padding: 28px 24px; }
}

/* Form inline validation states */
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c44a3a; box-shadow: 0 0 0 3px rgba(196, 74, 58, .12); }
.field__error {
  font-size: .78rem;
  color: #c44a3a;
  margin-top: 6px;
  display: none;
}
.field.is-invalid .field__error { display: block; }

/* Trust badges strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 30px 0 10px;
  margin-top: 30px;
  border-top: 1px solid var(--clr-line);
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: var(--clr-muted);
  font-weight: 500;
}
.trust-strip strong { color: var(--clr-primary); font-weight: 600; }
.trust-strip svg { width: 20px; height: 20px; color: var(--clr-primary); }

/* WhatsApp-themed primary button (form submit) */
.btn--whatsapp {
  background: #25D366 !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .25) !important;
}
.btn--whatsapp:hover {
  background: #1ebe57 !important;
  box-shadow: 0 14px 40px rgba(37, 211, 102, .38) !important;
}
.btn--whatsapp svg { flex: 0 0 auto; }
