/* Keiko Hair — deep plum · lavender mist · champagne */
:root {
  --plum: #3D1F4A;
  --plum-dark: #2A1235;
  --plum-light: #5A3068;
  --lavender: #C8B8D9;
  --lavender-light: #E8DFF0;
  --lavender-mist: #D9CFE6;
  --champagne: #E8D4B8;
  --champagne-light: #F5E6D3;
  --champagne-warm: #FAF3EA;
  --ink: #1E1024;
  --ink-muted: #4A3A52;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --shadow-sm: 0 2px 12px rgba(61, 31, 74, 0.1);
  --shadow-md: 0 8px 28px rgba(61, 31, 74, 0.14);
  --shadow-lg: 0 20px 50px rgba(42, 18, 53, 0.2);
  --shadow-card: 0 4px 20px rgba(61, 31, 74, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
  --header-h: 76px;
  --mobile-bar-h: 64px;
  --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--champagne-warm);
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--plum);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--plum-light); }

:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); margin-bottom: var(--space-sm); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); margin-bottom: 0.5rem; }

.container {
  width: min(1180px, 100% - 2rem);
  margin-inline: auto;
}

.container--wide {
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.mb-0 { margin-bottom: 0; }
.mb-xl { margin-bottom: var(--space-xl); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--champagne-warm);
  border-bottom: 1px solid rgba(61, 31, 74, 0.12);
  height: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-sm);
  width: min(1280px, 100% - 2rem);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.logo__mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--plum) 0%, var(--plum-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--champagne);
  letter-spacing: -0.05em;
  border: 2px solid var(--lavender);
  box-shadow: var(--shadow-sm);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum-dark);
  letter-spacing: -0.04em;
}

.logo__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-light);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .header-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid var(--plum);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 310;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--plum);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.site-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: calc(100dvh - var(--header-h));
  z-index: 250;
  background: var(--champagne-warm);
  padding: var(--space-lg) var(--space-md) var(--space-xl);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav.is-open,
body.nav-open .site-nav {
  display: block;
}

.site-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav__link {
  display: block;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  min-height: 48px;
  border-bottom: 1px solid rgba(61, 31, 74, 0.1);
  letter-spacing: -0.02em;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  background: var(--lavender-light);
  color: var(--plum);
}

@media (min-width: 1024px) {
  .site-nav {
    display: block;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: auto;
    width: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    flex: 1;
  }

  .site-nav__list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.125rem;
  }

  .site-nav__link {
    padding: 0.5rem 0.55rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    border-bottom: none;
    letter-spacing: 0;
  }
}

body.nav-open { overflow: hidden; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
}

.btn--champagne {
  background: linear-gradient(135deg, var(--champagne) 0%, #D4BC9A 100%);
  color: var(--plum-dark);
  border-color: var(--champagne);
}

.btn--champagne:hover {
  background: var(--champagne);
  color: var(--plum-dark);
}

.btn--plum {
  background: var(--plum);
  color: var(--champagne-light);
  border-color: var(--plum);
}

.btn--plum:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  color: var(--champagne-light);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}

.btn--outline:hover {
  background: var(--plum);
  color: var(--champagne-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn--sm {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Full-bleed hero */
.hero-bleed {
  position: relative;
  min-height: clamp(520px, 88vh, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bleed__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bleed__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 18, 53, 0.45) 0%,
    rgba(61, 31, 74, 0.78) 55%,
    rgba(42, 18, 53, 0.88) 100%
  );
}

.hero-bleed__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: var(--space-xl) var(--space-md);
}

.hero-bleed__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--champagne-light);
  background: rgba(42, 18, 53, 0.55);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 212, 184, 0.35);
  margin-bottom: var(--space-sm);
  backdrop-filter: blur(4px);
}

.hero-bleed h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-bleed__promise {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--lavender-mist);
  max-width: 52ch;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.hero-bleed .btn-group { justify-content: center; }

/* Inner page hero */
.hero--inner {
  background: linear-gradient(180deg, var(--lavender-light) 0%, var(--champagne-warm) 100%);
  padding-block: var(--space-xl);
  border-bottom: 1px solid rgba(61, 31, 74, 0.1);
}

.hero__promise,
.page-hero__lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 60ch;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  color: var(--ink-muted);
}

.breadcrumb a {
  color: var(--plum);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* Trust bar */
.trust-bar {
  background: var(--plum);
  color: var(--champagne-light);
  padding-block: var(--space-md);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  text-align: center;
  padding: var(--space-sm);
}

.trust-item__value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--champagne);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.trust-item__label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Sections */
.section {
  padding-block: var(--space-xl);
}

.section--lavender {
  background: var(--lavender-light);
}

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 0.5rem;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 65ch;
}

/* Service cards */
.service-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(200, 184, 217, 0.4);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-md); }

.service-card__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--plum-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.service-card__body p {
  flex: 1;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--lavender);
  box-shadow: var(--shadow-sm);
}

.benefit-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.benefit-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Rating banner */
.rating-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--lavender);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--champagne);
}

.testimonial__stars {
  color: var(--champagne);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.testimonial__text {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
}

/* Gallery */
.gallery-preview,
.gallery-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery-preview {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .gallery-preview .gallery-item--wide {
    grid-row: span 2;
  }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-item--wide img { aspect-ratio: auto; min-height: 100%; }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(42, 18, 53, 0.88));
  color: var(--champagne-light);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Location */
.location-block {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .location-block { grid-template-columns: 1fr 1fr; }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
}

.hours-table th,
.hours-table td {
  padding: 0.6rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(61, 31, 74, 0.1);
}

.hours-table th {
  font-weight: 600;
  color: var(--plum);
  width: 45%;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--lavender);
}

.map-embed iframe,
.footer__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(61, 31, 74, 0.12);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1rem 1.1rem;
  min-height: 48px;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.02em;
}

.faq-item__icon {
  font-size: 1.4rem;
  color: var(--plum);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--ink-muted);
}

.faq-item.is-open .faq-item__answer { display: block; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
  color: var(--champagne-light);
  padding-block: var(--space-xl);
  text-align: center;
}

.cta-band h2 { color: var(--champagne-light); }

.cta-band p {
  max-width: 50ch;
  margin: 0 auto var(--space-lg);
  opacity: 0.92;
}

/* Footer */
.site-footer {
  background: var(--plum-dark);
  color: var(--champagne-light);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.footer__nap p,
.footer__list li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  opacity: 0.88;
}

.footer__list { list-style: none; }

.footer__list a {
  color: var(--champagne-light);
  text-decoration: none;
}

.footer__list a:hover { color: var(--champagne); }

.footer__map {
  margin-top: var(--space-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer__map iframe { height: 160px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 230, 211, 0.15);
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer__bottom a { color: var(--champagne); text-decoration: none; }

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  height: var(--mobile-bar-h);
  box-shadow: 0 -4px 20px rgba(42, 18, 53, 0.2);
}

@media (min-width: 768px) {
  .mobile-bar { display: none; }
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  text-align: center;
  padding: 0.5rem;
}

.mobile-bar__btn--wa {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-bar__btn--tel {
  background: var(--plum);
  color: var(--champagne-light);
}

/* Service detail */
.service-detail {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--plum);
  box-shadow: var(--shadow-sm);
}

.service-detail__meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--plum-light);
  margin-bottom: 0.35rem;
}

.service-detail p { color: var(--ink-muted); margin-bottom: var(--space-sm); }

/* Agende page */
.agende-options {
  display: grid;
  gap: var(--space-md);
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .agende-options { grid-template-columns: repeat(2, 1fr); }
}

.agende-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(61, 31, 74, 0.1);
}

.agende-card--featured {
  border: 2px solid var(--lavender);
  background: linear-gradient(180deg, var(--lavender-light) 0%, var(--white) 100%);
}

.agende-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

/* Team */
.team-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-card__img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card__body { padding: var(--space-md); }

.team-card__role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--plum-light);
  margin-bottom: 0.5rem;
}

.team-card__body p { color: var(--ink-muted); font-size: 0.92rem; }

/* Split layout */
.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--lavender);
}

/* Timeline */
.timeline {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

.timeline__item {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--plum);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.timeline__item p { color: var(--ink-muted); font-size: 0.95rem; }

.brand-ribbon {
  display: inline-block;
  background: var(--plum);
  color: var(--champagne-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: var(--space-sm);
}

/* Reviews */
.review-card {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 4px solid var(--lavender);
  box-shadow: var(--shadow-sm);
}

.review-card p { color: var(--ink-muted); margin-bottom: 0.5rem; }

/* Legal */
.legal-content h2 {
  margin-top: var(--space-lg);
  font-size: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: var(--space-sm);
}

ol {
  padding-left: 1.25rem;
  color: var(--ink-muted);
}

ol li { margin-bottom: 0.5rem; }
