/* ============================================================
   ReGlo Med Spa — style.css
   MOBILE-FIRST: base styles = mobile, min-width queries = tablet/desktop
   ============================================================ */

/* ── RESET & TOKENS ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush:      #FDE8DC;
  --blush2:     #F9DDD3;
  --blush3:     #FAD5C8;
  --peach:      #F5C4B0;
  --terracotta: #C4826A;
  --terra-dark: #7A4F3E;
  --espresso:   #3D2A25;
  --gold:       #C9A87C;
  --white:      #FFFFFF;
  --off-white:  #FEF6F2;
  --mid:        #D4A898;
  --muted:      #A0706A;
  --fp: 'Playfair Display', serif;
  --fi: 'Inter', sans-serif;
  --radius: 50px;
}

body {
  font-family: var(--fi);
  background: var(--white);
  color: var(--espresso);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ── GLOBAL LINK RESET ───────────────────────────────────────── */
/* Kills browser defaults: blue (#0000EE unvisited) and
   purple (#551A8B visited). Every <a> inherits its parent's
   text colour. Component rules below set specific colours. */
a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

/* Restore a subtle hover cue for bare inline links only —
   component buttons / nav / footer links all override this */
a:hover { opacity: 0.8; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────────── */
.announce {
  background: var(--espresso);
  color: var(--blush);
  text-align: center;
  padding: 8px 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.announce a,
.announce a:link,
.announce a:visited { color: var(--peach); text-decoration: underline; margin-left: 8px; }
.announce a:hover   { color: var(--blush); opacity: 1; }

@media (min-width: 769px) {
  .announce { padding: 10px 1.5rem; font-size: 0.72rem; }
}

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  background: var(--blush);
  border-bottom: 1px solid var(--peach);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--fp);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--espresso);
  font-style: italic;
  text-decoration: none;
}
/* Desktop nav links — hidden on mobile */
.nav-links { display: none; }
.nav-right  { display: none; }

/* Hamburger — visible on mobile */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blush);
  border-top: 1px solid var(--peach);
  padding: 1.5rem 1.5rem 2rem;
  gap: 1.2rem;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(61,42,37,0.1);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a,
.nav-mobile-menu a:link,
.nav-mobile-menu a:visited {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--peach);
  opacity: 1;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a:active { color: var(--terracotta); opacity: 1; }
.nav-mobile-menu .btn-dark { text-align: center; margin-top: 0.5rem; }

@media (min-width: 769px) {
  nav { padding: 0 1.5rem; height: 68px; }
  .nav-logo { font-size: 1.6rem; }
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
  }
  .nav-links a,
  .nav-links a:link,
  .nav-links a:visited {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terra-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s;
    opacity: 1;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--terracotta);
    transition: width 0.25s ease;
  }
  .nav-links a:hover,
  .nav-links a:active { color: var(--terracotta); opacity: 1; }
  .nav-links a:hover::after { width: 100%; }
  .nav-right { display: flex; align-items: center; gap: 1.2rem; }
}

@media (min-width: 1025px) {
  nav { padding: 0 2.5rem; }
  .nav-links { gap: 2rem; }
}

.nav-link-sm {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  font-weight: 400;
  border: none;
  background: none;
  font-family: var(--fi);
  transition: color 0.2s;
}
.nav-link-sm:hover { color: var(--espresso); }

.nav-btn,
.nav-btn:link,
.nav-btn:visited {
  background: var(--espresso);
  color: var(--blush);
  font-family: var(--fi);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--espresso);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease;
  border-radius: var(--radius);
  text-decoration: none;
  opacity: 1;
}
.nav-btn:hover,
.nav-btn:active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  transform: translateY(-1px);
  opacity: 1;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-dark,
.btn-dark:link,
.btn-dark:visited {
  display: inline-block;
  background: var(--espresso);
  color: var(--blush);
  font-family: var(--fi);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border: 2px solid var(--espresso);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s ease;
  border-radius: var(--radius);
  text-decoration: none;
  opacity: 1;
}
.btn-dark:hover,
.btn-dark:active { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); transform: translateY(-1px); opacity: 1; }

.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
  font-family: var(--fi);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: var(--radius);
  text-decoration: none;
  opacity: 1;
}
.btn-outline:hover,
.btn-outline:active { background: var(--espresso); color: var(--blush); opacity: 1; }

/* ── SHARED TYPOGRAPHY ────────────────────────────────────────── */
.sec-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.sec-title {
  font-family: var(--fp);
  font-size: 2rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.sec-title em { font-style: italic; font-weight: 400; color: var(--terracotta); }

@media (min-width: 769px) {
  .sec-title { font-size: 2.4rem; }
}
@media (min-width: 1025px) {
  .sec-title { font-size: 2.8rem; margin-bottom: 3rem; }
}

/* ── HERO SLIDER ──────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61,42,37,0.15) 0%, rgba(61,42,37,0.45) 100%);
}
.slide-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  color: var(--blush);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  font-family: var(--fi);
}
.slider-dots {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(253,232,220,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.dot.active { background: var(--blush); transform: scale(1.2); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(253,232,220,0.15);
  border: 1px solid rgba(253,232,220,0.3);
  color: var(--blush);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(253,232,220,0.3); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }
.slide-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--terracotta);
  width: 0%;
  z-index: 10;
}

@media (min-width: 769px) {
  .hero-slider { height: 480px; }
  .slide-caption { bottom: 2rem; left: 2rem; font-size: 0.68rem; }
  .slider-dots { bottom: 1.4rem; right: 2rem; }
  .slider-arrow { width: 44px; height: 44px; font-size: 1.1rem; }
  .slider-arrow.prev { left: 1.5rem; }
  .slider-arrow.next { right: 1.5rem; }
}
@media (min-width: 1025px) {
  .hero-slider { height: 580px; }
  .slide-caption { bottom: 2.5rem; left: 2.5rem; font-size: 0.7rem; }
  .slider-dots { bottom: 1.5rem; right: 2.5rem; }
}

/* ── HERO CONTENT ─────────────────────────────────────────────── */
.hero-content {
  background: var(--blush);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid var(--peach);
}
.hero-text { width: 100%; }
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--fp);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--espresso);
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.hero-right-block { display: flex; flex-direction: column; gap: 1.2rem; }
.hero-sub { font-size: 0.9rem; line-height: 1.8; color: var(--muted); font-weight: 300; }
.hero-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.hero-btns .btn-dark,
.hero-btns .btn-outline { text-align: center; width: 100%; }

@media (min-width: 769px) {
  .hero-content { padding: 3rem; gap: 2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; }
  .hero-btns .btn-dark,
  .hero-btns .btn-outline { width: auto; }
}
@media (min-width: 1025px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5rem;
    gap: 4rem;
  }
  .hero-text { flex: 1; max-width: 580px; }
  .hero-title { font-size: 3.6rem; }
  .hero-right-block { flex-shrink: 0; max-width: 320px; align-items: flex-start; }
}

/* ── TREATMENTS GRID ──────────────────────────────────────────── */
.treatments-section { padding: 3rem 1.2rem; background: var(--off-white); }
.treatments-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--peach);
  border-left: 1px solid var(--peach);
}
.tc {
  border-right: 1px solid var(--peach);
  border-bottom: 1px solid var(--peach);
  padding: 1.5rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  background: var(--white);
}
.tc:hover { background: var(--blush); }
.tc-num   { font-size: 0.68rem; letter-spacing: 0.12em; color: var(--mid); margin-bottom: 0.8rem; font-weight: 500; }
.tc-name  { font-family: var(--fp); font-size: 1.3rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.5rem; }
.tc-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; }
.tc-footer { display: flex; justify-content: space-between; align-items: center; }
.tc-price { font-size: 0.78rem; font-weight: 600; color: var(--terracotta); }
.tc-arrow { font-size: 1rem; color: var(--terracotta); opacity: 0; transform: translateX(-4px); transition: all 0.2s; }
.tc:hover .tc-arrow { opacity: 1; transform: translateX(0); }

@media (min-width: 600px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .treatments-section { padding: 4rem 1.5rem; }
  .tc { padding: 2rem 1.8rem; }
  .tc-name { font-size: 1.5rem; }
}
@media (min-width: 1025px) {
  .treatments-section { padding: 5rem 2.5rem; }
  .treatments-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── SPLIT SECTIONS ───────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
}
.split-img {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-content {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content .btn-dark,
.split-content .btn-outline { align-self: stretch; text-align: center; }
.split-content.dark { background: var(--espresso); }
.split-content.dark .sec-eyebrow { color: var(--mid); }
.split-content.dark .sec-title   { color: var(--blush); }
.split-content.dark p             { color: rgba(253,232,220,0.55); }

@media (min-width: 769px) {
  .split-img { min-height: 320px; }
  .split-content { padding: 3rem; }
  .split-content .btn-dark,
  .split-content .btn-outline { align-self: flex-start; }
}
@media (min-width: 1025px) {
  .split-section { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .split-img { min-height: unset; }
  .split-content { padding: 4rem; }
}

/* ── SHOP ─────────────────────────────────────────────────────── */
.shop-strip { background: var(--blush2); padding: 3rem 1.2rem; }
.shop-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.products-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--peach);
}
.prod { background: var(--white); cursor: pointer; transition: background 0.2s; }
.prod:hover { background: var(--blush); }
.prod-img { height: 160px; display: flex; align-items: center; justify-content: center; position: relative; }
.prod-badge {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  background: var(--espresso);
  color: var(--blush);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  font-weight: 500;
}
.prod-badge.terra { background: var(--terracotta); color: var(--white); }
.prod-body { padding: 1rem 1rem 1.2rem; }
.prod-cat  { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.prod-name { font-family: var(--fp); font-size: 1rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.2rem; }
.prod-sub  { font-size: 0.72rem; color: var(--muted); font-weight: 300; line-height: 1.5; margin-bottom: 0.8rem; }
.prod-row  { display: flex; justify-content: space-between; align-items: center; }
.prod-price { font-size: 0.85rem; font-weight: 600; color: var(--espresso); }
.prod-add {
  background: var(--espresso);
  color: var(--blush);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  border-radius: 0;
}
.prod-add:hover { background: var(--terracotta); }

@media (min-width: 769px) {
  .shop-strip { padding: 3.5rem 1.5rem; }
  .shop-header { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
  .prod-img { height: 180px; }
}
@media (min-width: 1025px) {
  .shop-strip { padding: 4rem 2.5rem; }
  .products-row { grid-template-columns: repeat(4, 1fr); }
  .prod-img { height: 200px; }
  .prod-body { padding: 1.2rem 1.2rem 1.5rem; }
  .prod-badge { top: 0.8rem; left: 0.8rem; font-size: 0.62rem; padding: 3px 8px; }
}

/* ── REVIEWS ──────────────────────────────────────────────────── */
.reviews-section { padding: 3rem 1.2rem; background: var(--espresso); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2rem;
  border-top: 1px solid rgba(245,196,176,0.2);
}
.review {
  padding: 2rem 1.2rem;
  border-bottom: 1px solid rgba(245,196,176,0.15);
}
.review-quote  { font-family: var(--fp); font-size: 1rem; font-style: italic; line-height: 1.7; color: var(--blush); margin-bottom: 1rem; }
.review-author { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }
.review-stars  { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.7rem; letter-spacing: 2px; }

@media (min-width: 769px) {
  .reviews-section { padding: 4rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; margin-top: 2.5rem; }
  .review { padding: 2rem 1.5rem; border-right: 1px solid rgba(245,196,176,0.15); }
  .review:nth-child(2n) { border-right: none; }
}
@media (min-width: 1025px) {
  .reviews-section { padding: 5rem 2.5rem; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); margin-top: 3rem; }
  .review { padding: 2.5rem 2rem; border-right: 1px solid rgba(245,196,176,0.15); }
  .review:nth-child(2n) { border-right: 1px solid rgba(245,196,176,0.15); }
  .review:nth-child(3n) { border-right: none; }
}

/* ── PRESS BAR ────────────────────────────────────────────────── */
.press-bar {
  background: var(--white);
  padding: 2rem 1.2rem;
  border-top: 1px solid var(--blush3);
  border-bottom: 1px solid var(--blush3);
}
.press-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); text-align: center; margin-bottom: 1.2rem; }
.press-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.press-name, .press-name:link, .press-name:visited { font-family: var(--fp); font-size: 0.85rem; font-style: italic; color: var(--mid); font-weight: 700; opacity: 1; }

@media (min-width: 769px) {
  .press-bar { padding: 2.5rem; }
  .press-inner { gap: 3rem; }
  .press-name { font-size: 1rem; }
}

/* ── EMAIL STRIP ──────────────────────────────────────────────── */
.email-strip {
  background: var(--terracotta);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.email-strip h3  { font-family: var(--fp); font-size: 1.5rem; font-weight: 700; color: var(--white); font-style: italic; }
.email-strip p   { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.4rem; font-weight: 300; }
.email-form      { display: flex; width: 100%; }
.email-form input {
  flex: 1;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--fi);
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  outline: none;
  border-radius: 0;
  min-width: 0;
}
.email-form input::placeholder { color: rgba(255,255,255,0.5); }
.email-form button {
  background: var(--espresso);
  color: var(--blush);
  font-family: var(--fi);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
  border-radius: 0;
}
.email-form button:hover { background: var(--terra-dark); }

@media (min-width: 769px) {
  .email-strip { flex-direction: row; align-items: center; justify-content: space-between; padding: 3rem 2rem; gap: 2rem; }
  .email-strip h3 { font-size: 1.8rem; }
  .email-form { max-width: 380px; }
}
@media (min-width: 1025px) {
  .email-strip { padding: 3rem 2.5rem; }
  .email-form { max-width: 420px; }
}

/* ── LOCATION ─────────────────────────────────────────────────── */
.location-section { background: var(--off-white); padding: 3rem 1.2rem 0; }
.location-inner   { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.location-info    { padding-bottom: 0; }
.location-info h2 { font-family: var(--fp); font-size: 1.9rem; font-weight: 700; color: var(--espresso); line-height: 1.1; margin-bottom: 1.5rem; }
.location-info h2 em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.location-detail  { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1rem; }
.location-icon {
  width: 36px; height: 36px;
  background: var(--blush3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.location-detail-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.location-detail-text strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.map-wrap { height: 280px; overflow: hidden; filter: sepia(15%) saturate(90%); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (min-width: 769px) {
  .location-section { padding: 4rem 1.5rem 0; }
  .location-inner   { gap: 2.5rem; }
  .location-info    { padding-bottom: 3rem; }
  .location-info h2 { font-size: 2.2rem; }
  .map-wrap { height: 360px; }
}
@media (min-width: 1025px) {
  .location-section { padding: 5rem 2.5rem 0; }
  .location-inner   { grid-template-columns: 1fr 2fr; gap: 4rem; }
  .location-info    { padding-bottom: 5rem; }
  .location-info h2 { font-size: 2.4rem; }
  .map-wrap { height: 460px; }
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: var(--espresso);
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-brand-name,
.footer-brand-name:link,
.footer-brand-name:visited { font-family: var(--fp); font-size: 1.4rem; font-style: italic; color: var(--blush); font-weight: 700; text-decoration: none; display: block; opacity: 1; }
.footer-brand-name:hover,
.footer-brand-name:active   { color: var(--peach); opacity: 1; }
.footer-brand p    { font-size: 0.8rem; color: var(--mid); margin-top: 0.8rem; line-height: 1.8; font-weight: 300; max-width: 260px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a,
.footer-col a:link,
.footer-col a:visited { font-size: 0.82rem; color: rgba(245,196,176,0.6); text-decoration: none; font-weight: 300; transition: color 0.2s; opacity: 1; }
.footer-col a:hover,
.footer-col a:active  { color: var(--blush); opacity: 1; }

.footer-bottom {
  background: var(--espresso);
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(245,196,176,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.72rem; color: var(--mid); }
.footer-links    { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.footer-links a,
.footer-links a:link,
.footer-links a:visited { font-size: 0.72rem; color: var(--mid); text-decoration: none; transition: color 0.2s; opacity: 1; }
.footer-links a:hover,
.footer-links a:active  { color: var(--blush); opacity: 1; }

@media (min-width: 600px) {
  footer { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1025px) {
  footer { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; padding: 4rem 2.5rem 2rem; gap: 3rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; padding: 1.5rem 2.5rem; text-align: left; }
  .footer-links  { justify-content: flex-end; }
}

/* ── PLACEHOLDER TEXT ─────────────────────────────────────────── */
.ph { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── PAGE HERO ────────────────────────────────────────────────── */
.page-hero {
  background: var(--blush);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--peach);
}
.page-hero .sec-eyebrow { margin-bottom: 0.8rem; }
.page-hero h1 {
  font-family: var(--fp);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero p { font-size: 0.88rem; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

@media (min-width: 769px) {
  .page-hero { padding: 4rem 2rem; }
  .page-hero h1 { font-size: 2.8rem; }
}
@media (min-width: 1025px) {
  .page-hero { padding: 5rem 2.5rem 4rem; }
  .page-hero h1 { font-size: 3rem; }
}

/* ── GENERIC CONTENT SECTION ──────────────────────────────────── */
.content-section { padding: 3rem 1.2rem; }
.content-section.bg-blush  { background: var(--blush); }
.content-section.bg-blush2 { background: var(--blush2); }
.content-section.bg-off    { background: var(--off-white); }
.content-section.bg-dark   { background: var(--espresso); }
.content-section.bg-dark .sec-eyebrow { color: var(--mid); }
.content-section.bg-dark .sec-title   { color: var(--blush); }
.content-section.bg-dark p             { color: rgba(253,232,220,0.65); }

@media (min-width: 769px)  { .content-section { padding: 4rem 1.5rem; } }
@media (min-width: 1025px) { .content-section { padding: 5rem 2.5rem; } }

/* ── CARD GRID ────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
.card {
  background: var(--white);
  border: 1px solid var(--peach);
  padding: 1.5rem;
  transition: background 0.2s, transform 0.2s;
}
.card:hover { background: var(--blush); transform: translateY(-3px); }
.card-img {
  height: 160px;
  background: var(--blush3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.card h3 { font-family: var(--fp); font-size: 1.2rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.5rem; }
.card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

@media (min-width: 600px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

/* ── FORMS ────────────────────────────────────────────────────── */
.form-wrap  { max-width: 640px; margin: 0 auto; }
.form-row   { display: grid; grid-template-columns: 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-input {
  border: 1px solid var(--peach);
  background: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--fi);
  font-size: 0.88rem;
  color: var(--espresso);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  width: 100%;
}
.form-input:focus { border-color: var(--terracotta); }
.form-input::placeholder { color: var(--mid); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; }

@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }

/* ── TABLE ────────────────────────────────────────────────────── */
.reglo-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.78rem; overflow-x: auto; display: block; }
.reglo-table th {
  background: var(--espresso);
  color: var(--blush);
  padding: 0.7rem 0.8rem;
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.reglo-table td { padding: 0.75rem 0.8rem; border-bottom: 1px solid var(--peach); color: var(--muted); font-weight: 300; }
.reglo-table tr:hover td { background: var(--blush); }

@media (min-width: 769px) {
  .reglo-table { display: table; font-size: 0.85rem; }
  .reglo-table th { padding: 0.8rem 1.2rem; }
  .reglo-table td { padding: 0.9rem 1.2rem; }
}

/* ── UTILITIES ────────────────────────────────────────────────── */
.divider       { width: 40px; height: 2px; background: var(--terracotta); margin: 1.2rem 0; }
.divider.center { margin-left: auto; margin-right: auto; }

.tag { display: inline-block; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; font-weight: 500; border-radius: 2px; }
.tag.dark  { background: var(--espresso); color: var(--blush); }
.tag.terra { background: var(--terracotta); color: var(--white); }
.tag.light { background: var(--blush3); color: var(--terra-dark); }

.alert { padding: 1rem 1.5rem; font-size: 0.82rem; line-height: 1.6; border-left: 3px solid var(--terracotta); background: var(--blush); color: var(--espresso); margin-bottom: 1.5rem; }
.alert.dark { background: var(--espresso); color: var(--blush); border-color: var(--peach); }

.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ── SOCIAL ICONS (footer) ────────────────────────────────────── */
.footer-social { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }

.social-icon,
.social-icon:link,
.social-icon:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,196,176,0.08);
  border: 1px solid rgba(245,196,176,0.18);
  color: var(--mid);
  padding: 0.5rem;
  border-radius: 50%;
  width: 36px; height: 36px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s;
  line-height: 1;
  opacity: 1;
}
.social-icon svg { flex-shrink: 0; transition: transform 0.18s; }
.social-icon:hover,
.social-icon:active { color: var(--blush); border-color: rgba(245,196,176,0.5); transform: translateY(-2px); opacity: 1; }
.social-icon:hover svg { transform: scale(1.1); }
.social-label { display: none; }

.social-icon.social-instagram:hover { background: rgba(225,48,108,0.18);  border-color: rgba(225,48,108,0.4); }
.social-icon.social-facebook:hover  { background: rgba(24,119,242,0.18);  border-color: rgba(24,119,242,0.4); }
.social-icon.social-x:hover         { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }
.social-icon.social-youtube:hover   { background: rgba(255,0,0,0.18);     border-color: rgba(255,0,0,0.4); }
.social-icon.social-linkedin:hover  { background: rgba(0,119,181,0.18);   border-color: rgba(0,119,181,0.4); }
.social-icon.social-tiktok:hover    { background: rgba(105,201,208,0.18); border-color: rgba(105,201,208,0.4); }

/* Tablet+: pill with label */
@media (min-width: 769px) {
  .footer-social { gap: 0.5rem; margin-top: 1.4rem; }
  .social-icon   { padding: 0.45rem 0.85rem 0.45rem 0.7rem; border-radius: 50px; width: auto; height: auto; gap: 0.45rem; }
  .social-label  {
    display: inline;
    font-family: var(--fi);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
  }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — Scroll reveal + all components
   ══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.22,.68,0,1.2),
              transform 0.75s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible    { opacity: 1; transform: translateY(0); }
.reveal-delay-1    { transition-delay: 0.1s; }
.reveal-delay-2    { transition-delay: 0.2s; }
.reveal-delay-3    { transition-delay: 0.3s; }
.reveal-delay-4    { transition-delay: 0.4s; }

/* About hero */
.about-hero {
  background: var(--espresso);
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(196,130,106,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-super {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
  font-family: var(--fi);
}
.hero-logo {
  font-family: var(--fp);
  font-size: clamp(4rem, 20vw, 7rem);
  font-weight: 700;
  color: var(--blush);
  line-height: 0.9;
  margin-bottom: 1.2rem;
  position: relative;
}
.hero-logo em { font-style: italic; color: var(--terracotta); }
.hero-logo::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,130,106,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1;   }
}
.hero-tagline {
  font-family: var(--fp);
  font-size: clamp(0.95rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(253,232,220,0.65);
  max-width: 420px;
  line-height: 1.6;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--mid);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--mid), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1) translateY(10px); }
}

@media (min-width: 1025px) {
  .about-hero { min-height: 100vh; padding: 6rem 2rem; }
  .hero-logo  { font-size: clamp(5rem, 18vw, 12rem); }
  .hero-super { margin-bottom: 2rem; }
}

/* Chapter sections */
.chapter-section { padding: 4rem 1.5rem; max-width: 800px; margin: 0 auto; }
.chapter-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.chapter-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.4;
}
.chapter-heading {
  font-family: var(--fp);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.chapter-heading em { font-style: italic; color: var(--terracotta); }
.chapter-body { font-size: 0.95rem; color: var(--muted); line-height: 1.9; font-weight: 300; }
.chapter-body p            { margin-bottom: 1.2rem; }
.chapter-body p:last-child { margin-bottom: 0; }
.chapter-body em           { font-style: italic; color: var(--terra-dark); }
.chapter-body strong       { color: var(--espresso); font-weight: 600; }
.pull-quote {
  border-left: 3px solid var(--terracotta);
  background: var(--blush);
  padding: 1.4rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--fp);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.65;
}
.pull-quote cite { display: block; margin-top: 0.7rem; font-size: 0.7rem; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.chapter-divider { width: 60px; height: 1px; background: var(--peach); margin: 0 auto; }

@media (min-width: 769px) {
  .chapter-section { padding: 5rem 2rem; }
  .pull-quote { padding: 1.8rem 2rem; font-size: 1.15rem; }
}
@media (min-width: 1025px) {
  .chapter-section { padding: 6rem 2.5rem; }
}

/* Moments */
.moments-section { background: var(--off-white); padding: 4rem 1.2rem; }
.moments-inner   { max-width: 900px; margin: 0 auto; }
.moments-grid    { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--peach); margin-top: 2.5rem; }
.moment-card { background: var(--white); padding: 2rem 1.5rem; transition: background 0.25s; cursor: default; }
.moment-card:hover { background: var(--blush); }
.moment-num {
  font-family: var(--fp);
  font-size: 3rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: color 0.25s;
}
.moment-card:hover .moment-num { color: var(--terracotta); }
.moment-title { font-family: var(--fp); font-size: 1.15rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.7rem; line-height: 1.3; }
.moment-title em { font-style: italic; color: var(--terracotta); }
.moment-body { font-size: 0.83rem; color: var(--muted); line-height: 1.8; font-weight: 300; }

@media (min-width: 600px) { .moments-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 769px) { .moments-section { padding: 5rem 1.5rem; } .moment-card { padding: 2.2rem 1.8rem; } }
@media (min-width: 1025px) { .moments-section { padding: 6rem 2.5rem; } .moment-num { font-size: 3.5rem; } .moment-title { font-size: 1.25rem; } .moment-card { padding: 2.5rem 2.2rem; } }

/* Etymology */
.etymology-section { background: var(--espresso); padding: 4rem 1.5rem; text-align: center; }
.etym-inner   { max-width: 700px; margin: 0 auto; }
.etym-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.etym-part    { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.etym-word    { font-family: var(--fp); font-size: 1.8rem; font-weight: 700; color: var(--blush); }
.etym-arrow   { font-size: 0.9rem; color: var(--mid); }
.etym-meaning { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.etym-plus    { font-family: var(--fp); font-size: 1.6rem; color: var(--terracotta); font-weight: 300; align-self: center; }
.etym-equals  { font-size: 2.4rem; font-family: var(--fp); color: var(--terracotta); font-weight: 700; font-style: italic; }
.etym-result-meaning { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.etym-body { font-size: 0.9rem; color: rgba(253,232,220,0.6); line-height: 1.85; font-weight: 300; max-width: 560px; margin: 1.5rem auto; }
.etym-body em     { font-style: italic; color: var(--peach); }
.etym-body strong { color: var(--blush); font-weight: 500; }
.etym-closing { font-family: var(--fp); font-size: clamp(1.4rem, 4vw, 2.4rem); font-style: italic; color: var(--blush); margin-top: 2.5rem; line-height: 1.4; }

@media (min-width: 769px) { .etymology-section { padding: 5rem 2rem; } .etym-word { font-size: 2.2rem; } .etym-equation { gap: 2rem; } }
@media (min-width: 1025px) { .etymology-section { padding: 6rem 2.5rem; } .etym-word { font-size: 2.4rem; } .etym-equals { font-size: 3rem; } }

/* Values strip */
.values-strip {
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--peach);
  border-bottom: 1px solid var(--peach);
}
.value-cell {
  padding: 1.8rem 1.2rem;
  border-right: 1px solid var(--peach);
  border-bottom: 1px solid var(--peach);
  text-align: center;
  transition: background 0.2s;
}
.value-cell:nth-child(2n) { border-right: none; }
.value-cell:nth-last-child(-n+2) { border-bottom: none; }
.value-cell:hover { background: var(--blush3); }
.value-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.value-name { font-family: var(--fp); font-size: 1rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.3rem; }
.value-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

@media (min-width: 769px) { .value-cell { padding: 2rem 1.5rem; } }
@media (min-width: 1025px) {
  .values-strip { grid-template-columns: repeat(4, 1fr); }
  .value-cell   { border-bottom: none; }
  .value-cell:nth-child(2n)   { border-right: 1px solid var(--peach); }
  .value-cell:nth-child(4n)   { border-right: none; }
  .value-cell:last-child       { border-right: none; }
  .value-cell { padding: 2.2rem 1.8rem; }
  .value-icon { font-size: 1.8rem; }
  .value-name { font-size: 1.05rem; }
}

/* About press */
.about-press { background: var(--white); padding: 1.8rem 1.2rem; border-bottom: 1px solid var(--blush3); }
.about-press .press-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); text-align: center; margin-bottom: 1rem; }
.about-press .press-inner { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.about-press .press-name,
.about-press .press-name:link,
.about-press .press-name:visited { font-family: var(--fp); font-size: 0.85rem; font-style: italic; color: var(--mid); font-weight: 700; opacity: 0.7; transition: opacity 0.2s; }
.about-press .press-name:hover,
.about-press .press-name:active  { opacity: 1; color: var(--mid); }

@media (min-width: 769px) { .about-press { padding: 2.2rem 2rem; } .about-press .press-inner { gap: 2rem; } .about-press .press-name { font-size: 0.95rem; } }
@media (min-width: 1025px) { .about-press { padding: 2.2rem 2.5rem; } .about-press .press-inner { gap: 3rem; } .about-press .press-name { font-size: 1rem; } }

/* About CTA strip */
.about-cta-strip { background: var(--espresso); padding: 4rem 1.5rem; text-align: center; }
.about-cta-strip h2 {
  font-family: var(--fp);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--blush);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-cta-strip h2 em { font-style: italic; color: var(--peach); }
.about-cta-strip p { font-size: 0.88rem; color: rgba(253,232,220,0.6); font-weight: 300; line-height: 1.8; max-width: 480px; margin: 0 auto 2rem; }
.about-cta-btns { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.about-cta-btns .btn-dark,
.about-cta-btns .btn-outline { width: 100%; max-width: 320px; text-align: center; }

@media (min-width: 600px) {
  .about-cta-btns { flex-direction: row; justify-content: center; }
  .about-cta-btns .btn-dark,
  .about-cta-btns .btn-outline { width: auto; max-width: none; }
}
@media (min-width: 1025px) { .about-cta-strip { padding: 5rem 2.5rem; } }

/* ── PROSE WIDTH UTILITIES ────────────────────────────────────
   Use these instead of inline max-width on <p> tags.
   On mobile: full width. On desktop: capped for readability.
   ─────────────────────────────────────────────────────────── */
.prose        { width: 100%; font-size: 0.9rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.prose-sm     { width: 100%; font-size: 0.82rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.prose-dark   { width: 100%; font-size: 0.9rem; color: rgba(253,232,220,0.6); line-height: 1.85; font-weight: 300; }
.prose-center { text-align: center; margin-left: auto; margin-right: auto; }

@media (min-width: 769px) {
  .prose        { max-width: 520px; }
  .prose-sm     { max-width: 420px; }
  .prose-dark   { max-width: 480px; }
  .prose.wide   { max-width: 640px; }
}

/* ══════════════════════════════════════════════════════════════
   TREATMENTS PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Category filter tabs ─────────────────────────────────────── */
.tx-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--peach);
  padding: 0 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 60px;
  z-index: 90;
}
.tx-filter-bar::-webkit-scrollbar { display: none; }
.tx-filter-inner {
  display: flex;
  gap: 0;
  min-width: max-content;
}
.tx-tab {
  font-family: var(--fi);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.tx-tab:hover         { color: var(--terracotta); }
.tx-tab.active        { color: var(--espresso); border-bottom-color: var(--terracotta); }

@media (min-width: 769px) {
  .tx-filter-bar   { top: 68px; padding: 0 1.5rem; }
  .tx-tab          { font-size: 0.72rem; padding: 1.1rem 1.5rem; }
}
@media (min-width: 1025px) {
  .tx-filter-bar   { padding: 0 2.5rem; }
  .tx-tab          { padding: 1.1rem 2rem; }
}

/* ── Category heading ─────────────────────────────────────────── */
.tx-section { display: block; }

.tx-category-heading {
  background: var(--blush2);
  padding: 1.4rem 1.2rem 1.2rem;
  border-top: 1px solid var(--peach);
  border-bottom: 1px solid var(--peach);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tx-category-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  white-space: nowrap;
}
.tx-category-line {
  flex: 1;
  height: 1px;
  background: var(--peach);
}

@media (min-width: 769px) {

  .tx-category-heading { padding: 1.6rem 1.5rem; }
  .tx-category-label   { font-size: 0.68rem; }
}
@media (min-width: 1025px) {

  .tx-category-heading { padding: 1.8rem 2.5rem; }
}

/* ── Treatment detail — split layout ──────────────────────────── */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--peach);
}
/* Alternate image side on desktop: odd rows image-left, even rows image-right */
.treatment-detail .td-img    { order: 0; }
.treatment-detail .td-content { order: 1; }

.td-img {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.td-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.td-img-placeholder {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  font-family: var(--fi);
}
.td-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--espresso);
  color: var(--blush);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
  font-family: var(--fi);
}

.td-content {
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  background: var(--white);
}
.td-num {
  font-family: var(--fp);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blush3);
  line-height: 1;
}
.td-name {
  font-family: var(--fp);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
}
.td-name em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.td-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}
.td-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.td-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--espresso);
  background: var(--blush);
  padding: 5px 14px;
  border: 1px solid var(--peach);
}
.td-duration {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}
.td-deposit {
  font-size: 0.68rem;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.td-free-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 5px 14px;
  letter-spacing: 0.06em;
}
.td-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.td-btn-row .btn-dark,
.td-btn-row .btn-dark:link,
.td-btn-row .btn-dark:visited,
.td-btn-row .btn-outline,
.td-btn-row .btn-outline:link,
.td-btn-row .btn-outline:visited {
  font-size: 0.68rem;
  padding: 0.75rem 1.6rem;
}

/* Dark bg variant for alternating sections */
.treatment-detail.dark .td-content {
  background: var(--espresso);
}
.treatment-detail.dark .td-num  { color: rgba(245,196,176,0.15); }
.treatment-detail.dark .td-name { color: var(--blush); }
.treatment-detail.dark .td-name em { color: var(--peach); }
.treatment-detail.dark .td-desc { color: rgba(253,232,220,0.6); }
.treatment-detail.dark .td-price {
  background: rgba(253,232,220,0.08);
  border-color: rgba(253,232,220,0.2);
  color: var(--blush);
}
.treatment-detail.dark .td-duration { color: var(--mid); }
.treatment-detail.dark .td-deposit  { color: var(--peach); }

/* ── DB error state ───────────────────────────────────────────── */
.tx-db-error {
  background: var(--blush);
  border-left: 4px solid var(--terracotta);
  padding: 2rem 1.5rem;
  margin: 2rem 1.2rem;
  font-size: 0.88rem;
  color: var(--espresso);
  line-height: 1.7;
}
.tx-db-error strong { display: block; margin-bottom: 0.4rem; font-size: 1rem; }

/* ── Empty state ──────────────────────────────────────────────── */
.tx-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}
.tx-empty p { font-size: 0.9rem; margin-top: 0.8rem; }

/* ── CTA strip ────────────────────────────────────────────────── */
.tx-cta-strip {
  background: var(--espresso);
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.tx-cta-strip h2 {
  font-family: var(--fp);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--blush);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.tx-cta-strip h2 em { font-style: italic; color: var(--peach); }
.tx-cta-strip p {
  font-size: 0.88rem;
  color: rgba(253,232,220,0.6);
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

@media (min-width: 769px) {
  .treatment-detail    { grid-template-columns: 1fr 1fr; }
  .td-img              { min-height: 360px; }
  .td-content          { padding: 3rem 2.5rem; gap: 1.1rem; }
  /* Even-numbered rows: flip image to the right */
  .treatment-detail.flip .td-img    { order: 1; }
  .treatment-detail.flip .td-content { order: 0; }
  .tx-cta-strip        { padding: 5rem 2rem; }
}
@media (min-width: 1025px) {
  .td-img     { min-height: 440px; }
  .td-content { padding: 4rem 5rem; gap: 1.2rem; }
  .td-num     { font-size: 4rem; }
  .tx-cta-strip { padding: 6rem 2.5rem; }
}

/* ── HIPAA NOTICE BAR ────────────────────────────────────────── */
.hipaa-notice-bar {
  background: var(--espresso);
  color: rgba(253,232,220,0.85);
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--fi);
  font-weight: 300;
  border-bottom: 1px solid rgba(245,196,176,0.15);
}
.hipaa-notice-bar a {
  color: var(--peach);
  text-decoration: underline;
  font-weight: 500;
}
.hipaa-notice-bar a:hover { color: var(--blush); }
.hipaa-dismiss {
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--mid);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0 0.2rem;
  line-height: 1;
  transition: color 0.2s;
}
.hipaa-dismiss:hover { color: var(--blush); }

@media (min-width: 769px) {
  .hipaa-notice-bar {
    align-items: center;
    padding: 0.6rem 2.5rem;
    font-size: 0.78rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
   ══════════════════════════════════════════════════════════════ */

.reviews-section { padding: 3rem 1.2rem; background: var(--espresso); }

/* ── Overall rating badge ─────────────────────────────────────── */
.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.reviews-overall {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(253,232,220,0.06);
  border: 1px solid rgba(253,232,220,0.14);
  padding: 0.9rem 1.3rem;
  flex-shrink: 0;
}
.reviews-overall-score {
  font-family: var(--fp);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blush);
  line-height: 1;
}
.reviews-overall-right { display: flex; flex-direction: column; gap: 0.2rem; }
.reviews-overall-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.reviews-overall-count {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.reviews-overall-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,168,152,0.5);
  margin-top: 0.15rem;
}
.reviews-overall-logo svg { flex-shrink: 0; }

/* ── Review cards grid ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(245,196,176,0.12);
}
.review {
  background: var(--espresso);
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: background 0.2s;
}
.review:hover { background: rgba(253,232,220,0.04); }

.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--terra-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--fp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blush);
  text-transform: uppercase;
}
.review-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.review-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blush);
  line-height: 1.2;
  text-decoration: none;
}
.review-author:link,
.review-author:visited { color: var(--blush); }
.review-author:hover,
.review-author:active  { color: var(--peach); opacity: 1; }
.review-time {
  font-size: 0.68rem;
  color: var(--mid);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.review-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; }
.review-quote {
  font-family: var(--fp);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(253,232,220,0.75);
  flex: 1;
}

/* Google branding — required by Google's Terms of Service */
.review-google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}
.review-google-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,168,152,0.4);
}

/* ── Reviews footer bar ──────────────────────────────────────── */
.reviews-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,196,176,0.12);
}
.reviews-cta-text {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.6;
}
.reviews-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.reviews-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fi);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  background: rgba(253,232,220,0.08);
  border: 1px solid rgba(253,232,220,0.2);
  padding: 0.6rem 1.2rem;
  transition: all 0.2s;
  text-decoration: none;
  opacity: 1;
}
.reviews-write-btn:link,
.reviews-write-btn:visited { color: var(--blush); opacity: 1; }
.reviews-write-btn:hover,
.reviews-write-btn:active  {
  background: rgba(253,232,220,0.14);
  border-color: rgba(253,232,220,0.4);
  color: var(--white);
  transform: translateY(-1px);
  opacity: 1;
}
.reviews-see-all {
  font-size: 0.72rem;
  color: var(--mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  opacity: 1;
}
.reviews-see-all:link,
.reviews-see-all:visited { color: var(--mid); opacity: 1; }
.reviews-see-all:hover,
.reviews-see-all:active  { color: var(--blush); opacity: 1; }

/* ── Loading / error states ──────────────────────────────────── */
.reviews-loading {
  text-align: center;
  padding: 3rem;
  color: var(--mid);
  font-size: 0.82rem;
  font-weight: 300;
}
.reviews-error {
  background: rgba(196,130,106,0.1);
  border-left: 3px solid var(--terracotta);
  padding: 1rem 1.5rem;
  color: var(--mid);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

/* ── Source badge (cache / api) — dev only ───────────────────── */
.reviews-source-badge {
  display: none; /* shown only in dev via PHP condition */
  font-size: 0.6rem;
  background: rgba(255,255,255,0.05);
  color: var(--mid);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 769px) {
  .reviews-section  { padding: 4rem 1.5rem; }
  .reviews-header   { flex-direction: row; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; }
  .reviews-overall  { padding: 1rem 1.5rem; }
  .review           { padding: 2rem 1.5rem; }
  .review-avatar    { width: 42px; height: 42px; }
  .reviews-footer   { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 2rem; }
}
@media (min-width: 1025px) {
  .reviews-section { padding: 5rem 2.5rem; }
  .reviews-grid    { grid-template-columns: repeat(3, 1fr); }
  .review          { padding: 2.5rem 2rem; }
  .review-quote    { font-size: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   LOGIN PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Full-page layout ─────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--espresso);
}

/* ── Brand panel (hidden on mobile, shown on desktop) ─────────── */
.login-brand {
  display: none;
  background: var(--espresso);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem;
}
.login-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 30% 60%, rgba(196,130,106,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.login-brand-logo {
  font-family: var(--fp);
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--blush);
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.login-brand-logo:link,
.login-brand-logo:visited { color: var(--blush); }
.login-brand-logo:hover,
.login-brand-logo:active  { color: var(--peach); opacity: 1; }
.login-brand-tagline {
  font-family: var(--fp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blush);
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.login-brand-tagline em { font-style: italic; color: var(--peach); font-weight: 300; }
.login-brand-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.login-brand-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.85rem;
  color: rgba(253,232,220,0.7);
  font-weight: 300;
  line-height: 1.5;
}
.login-brand-perk-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(196,130,106,0.18);
  border: 1px solid rgba(196,130,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}
.login-brand-perk-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blush);
  margin-bottom: 0.1rem;
}
.login-brand-footer {
  font-size: 0.68rem;
  color: rgba(212,168,152,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ── Form panel ───────────────────────────────────────────────── */
.login-form-panel {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  min-height: 100vh;
}
.login-form-inner {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Mobile logo (only visible when brand panel is hidden) */
.login-mobile-logo {
  font-family: var(--fp);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--espresso);
  text-decoration: none;
  display: block;
  margin-bottom: 2rem;
  text-align: center;
}
.login-mobile-logo:link,
.login-mobile-logo:visited { color: var(--espresso); }
.login-mobile-logo:hover,
.login-mobile-logo:active  { color: var(--terracotta); opacity: 1; }

/* Heading */
.login-heading {
  font-family: var(--fp);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.login-heading em { font-style: italic; color: var(--terracotta); }
.login-sub {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── OAuth buttons ────────────────────────────────────────────── */
.login-oauth-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}
.login-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--fi);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1.5px solid transparent;
  opacity: 1;
  letter-spacing: 0.01em;
}
.login-oauth-btn:link,
.login-oauth-btn:visited { opacity: 1; }

/* Google button */
.login-oauth-btn.google {
  background: var(--white);
  color: #3C4043;
  border-color: #DADCE0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.login-oauth-btn.google:hover,
.login-oauth-btn.google:active {
  background: #F8F9FA;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-color: #C6C9CC;
  color: #3C4043;
  opacity: 1;
  transform: translateY(-1px);
}

/* Apple button */
.login-oauth-btn.apple {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.login-oauth-btn.apple:hover,
.login-oauth-btn.apple:active {
  background: #1A1A1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  color: #FFFFFF;
  opacity: 1;
  transform: translateY(-1px);
}
.login-oauth-btn svg { flex-shrink: 0; }
.login-oauth-btn-text { font-size: 0.88rem; }

/* ── Divider ──────────────────────────────────────────────────── */
.login-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--mid);
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--peach);
}
.login-divider-text {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

/* ── Email form ───────────────────────────────────────────────── */
.login-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.login-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.login-input {
  width: 100%;
  border: 1.5px solid var(--peach);
  background: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--fi);
  font-size: 0.9rem;
  color: var(--espresso);
  outline: none;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,130,106,0.1);
}
.login-input::placeholder { color: var(--mid); }

/* Forgot password link */
.login-forgot {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: -0.4rem;
  margin-bottom: 1.2rem;
  opacity: 1;
}
.login-forgot:link,
.login-forgot:visited { color: var(--terracotta); }
.login-forgot:hover,
.login-forgot:active  { color: var(--terra-dark); opacity: 1; }

/* Submit button */
.login-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--espresso);
  color: var(--blush);
  font-family: var(--fi);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 2px solid var(--espresso);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}
.login-submit:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,130,106,0.25);
}

/* ── State feedback ───────────────────────────────────────────── */
.login-error {
  background: rgba(196,130,106,0.1);
  border: 1px solid rgba(196,130,106,0.3);
  border-left: 3px solid var(--terracotta);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--terra-dark);
  margin-bottom: 1.2rem;
  display: none;
}
.login-error.visible { display: block; }

/* Loading spinner on submit */
.login-submit.loading {
  background: var(--muted);
  border-color: var(--muted);
  pointer-events: none;
}

/* ── Register / help links ────────────────────────────────────── */
.login-register {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}
.login-register a,
.login-register a:link,
.login-register a:visited { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.login-register a:hover,
.login-register a:active  { color: var(--terra-dark); opacity: 1; }

/* Privacy notice */
.login-privacy {
  text-align: center;
  font-size: 0.68rem;
  color: var(--mid);
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--blush3);
}
.login-privacy a,
.login-privacy a:link,
.login-privacy a:visited { color: var(--muted); text-decoration: underline; }
.login-privacy a:hover { color: var(--espresso); opacity: 1; }

/* ── Responsive ───────────────────────────────────────────────── */
/* On login page: hide site nav announce bar for cleaner experience */
.page-login .announce { display: none; }
.page-login nav       { display: none; }

@media (min-width: 769px) {
  .login-mobile-logo { display: none; }
  .login-form-panel  { padding: 3rem 2.5rem; min-height: 100vh; }
}
@media (min-width: 1025px) {
  .login-page                { grid-template-columns: 1fr 1fr; min-height: 100vh; }
  .login-brand               { display: flex; }
  .login-form-panel          { padding: 4rem 3.5rem; }
  .page-login .announce      { display: flex; }
  .login-heading             { font-size: 2.2rem; }
}
@media (min-width: 1280px) {
  .login-brand               { padding: 4rem; }
  .login-form-panel          { padding: 4rem 5rem; }
}
