/* =========================
   Esthétique DivaDerma
   Elegant beauty-industry styles
   ========================= */

:root {
  /* Brand */
  --primary: #8b1e2b;          /* Rich rose-red drawn from the logo accent */
  --primary-ink: #ffffff;
  --primary-rgb: 139, 30, 43;
  --primary-dark: #6a1621;
  --primary-dark-rgb: 106, 22, 33;

  --secondary: #d4a25c;        /* Warm gold — complements the burgundy */
  --secondary-ink: #1a1a1a;
  --secondary-rgb: 212, 162, 92;

  --accent: #f4d9c4;           /* Soft blush for tints */
  --accent-ink: #1a1a1a;
  --accent-rgb: 244, 217, 196;

  /* Neutrals */
  --ink: #1a1414;              /* Warm near-black */
  --ink-rgb: 26, 20, 20;
  --text: #2b2323;
  --text-rgb: 43, 35, 35;
  --text-light: #6d5f5b;
  --text-light-rgb: 109, 95, 91;
  --muted: #6b5f5b;
  --border: #ebe4de;

  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --surface: #faf6f2;          /* Warm ivory */
  --surface-rgb: 250, 246, 242;
  --bg-alt: #f4ede5;           /* Slightly deeper ivory band */
  --bg-alt-ink: #1a1414;

  /* Type */
  --font-heading: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(16px, 3vw, 32px);
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Reset & base */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

h1 em, h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

p { margin: 0 0 1em; }

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Section defaults */
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}
.section--alt { background: var(--surface); }
.section--dark { background: var(--ink); color: #efe6e0; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark h2 em { color: var(--secondary); }
.section--dark a { color: #efe6e0; }
.section--dark a:hover { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--secondary); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.section-head h2 { margin-bottom: 18px; }
.section-head__lede {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.section--dark .section-head__lede { color: #d7c9c0; }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 0.82rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.25);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--primary-ink);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: #fff;
}
.section--dark .btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
}
.section--dark .btn--ghost:hover { background: rgba(255,255,255,0.08); }

/* =========================
   Top bar
   ========================= */
.topbar {
  background: var(--ink);
  color: #cfc0b9;
  font-size: 0.82rem;
  padding: 10px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__info {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.topbar__item {
  display: inline-flex; align-items: center; gap: 8px;
  color: #cfc0b9;
  white-space: nowrap;
}
.topbar__item:hover { color: #fff; }
.topbar__item svg { color: var(--secondary); flex-shrink: 0; }
.topbar__social {
  display: flex; align-items: center; gap: 12px;
}
.topbar__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #cfc0b9;
  transition: all .25s var(--ease);
}
.topbar__social a:hover { background: var(--primary); color: #fff; }

@media (max-width: 720px) {
  .topbar__item--email, .topbar__item--addr { display: none; }
  .topbar__inner { justify-content: center; }
}

/* =========================
   Site header
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.site-header--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav__list a:not(.btn) {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.main-nav__list a.btn--primary,
.main-nav__list a.btn--primary:hover {
  color: var(--primary-ink);
}
.main-nav__list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--primary);
  transition: width .3s var(--ease);
}
.main-nav__list a:not(.btn):hover::after { width: 100%; }
.main-nav__list a:not(.btn):hover { color: var(--primary); }

.main-nav__cta-item { margin-left: 10px; }
.main-nav__cta {
  padding: 12px 22px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.28);
}
.main-nav__cta:hover {
  box-shadow: 0 12px 26px rgba(var(--primary-rgb), 0.36);
}

.main-nav__toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.main-nav__toggle[aria-expanded="true"] .hamburger { background: transparent; }
.main-nav__toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.main-nav__toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav__toggle { display: inline-flex; }
  .main-nav__list {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px var(--gutter) 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  }
  .main-nav__list.is-open { display: flex; }
  .main-nav__list li { border-bottom: 1px solid var(--border); }
  .main-nav__list li:last-child { border: none; margin-top: 10px; }
  .main-nav__list a { padding: 14px 4px; display: block; }
  .main-nav__list a.btn { display: inline-flex; padding: 12px 20px; }
  .main-nav { position: relative; }
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(560px, 78vh, 780px);
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(135deg, #3a1520 0%, #1a1414 55%, #2a1218 100%);
}
.hero__media {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero__scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(105deg,
      rgba(20, 12, 14, 0.86) 0%,
      rgba(20, 12, 14, 0.72) 45%,
      rgba(60, 20, 30, 0.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 12vw, 128px) 0;
  max-width: 820px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 24px;
  padding: 8px 18px;
  border: 1px solid rgba(212, 162, 92, 0.55);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  text-shadow: none;
  backdrop-filter: blur(4px);
}
.hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 22px;
  font-weight: 400;
}
.hero__title em {
  color: var(--secondary);
  font-style: italic;
  font-weight: 400;
}
.hero__lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 620px;
  color: #f2ebe6;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__trust {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 32px;
  max-width: 620px;
}
.hero__trust li {
  display: flex;
  flex-direction: column;
}
.hero__trust strong {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: var(--secondary);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
  font-style: italic;
}
.hero__trust span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9cac2;
  font-weight: 500;
}

/* =========================
   Promise strip
   ========================= */
.promise {
  padding: clamp(56px, 7vw, 88px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #fdf9f5 100%);
  border-bottom: 1px solid var(--border);
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.promise__item {
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.promise__item:hover {
  transform: translateY(-3px);
  background: rgba(var(--primary-rgb), 0.03);
}
.promise__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.10) 0%, rgba(var(--secondary-rgb), 0.14) 100%);
  color: var(--primary);
  margin-bottom: 18px;
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}
.promise__item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  color: var(--ink);
}
.promise__item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .promise__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
}
@media (max-width: 480px) {
  .promise__grid { grid-template-columns: 1fr; }
}

/* =========================
   Services
   ========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(var(--ink-rgb), 0.03);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(var(--ink-rgb), 0.10);
  border-color: rgba(var(--primary-rgb), 0.35);
}
.service-card__media {
  position: relative;
  width: 100%;
  padding-bottom: 66%;
  overflow: hidden;
  background: linear-gradient(135deg, #f4ede5 0%, #ebe0d3 100%);
}
.service-card__media img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
  display: block;
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.service-card__body h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}
.service-card__body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.service-card__body em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 10px 18px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  border: 1.5px solid rgba(var(--primary-rgb), 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
}
.card-link span {
  transition: transform .3s var(--ease);
  display: inline-block;
}
.card-link:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.28);
}
.card-link:hover span { transform: translateX(4px); }

.service-card--featured {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.08);
}
.badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.35);
}

/* Featured / CTA card that completes the last grid row */
.service-card--cta {
  background:
    linear-gradient(155deg,
      rgba(var(--primary-rgb), 0.06) 0%,
      rgba(var(--secondary-rgb), 0.10) 55%,
      #fff 100%),
    #fff;
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.08);
}
.service-card--cta:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
  box-shadow: 0 22px 44px rgba(var(--primary-rgb), 0.15);
}
.service-card__body--cta {
  padding: 32px 26px 30px;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.service-card__body--cta h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}
.service-card__body--cta p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 0 0 auto;
}
.service-card__cta-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(var(--primary-rgb), 0.14) 0%,
    rgba(var(--secondary-rgb), 0.18) 100%);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  margin-bottom: 4px;
}
.service-card__cta-btn {
  align-self: center;
  margin-top: 4px;
}
/* Ensure the CTA card fills any leftover row cleanly across auto-fit breakpoints */
@media (min-width: 720px) and (max-width: 1180px) {
  .service-card--cta {
    grid-column: 1 / -1;
  }
  .service-card__body--cta {
    padding: 36px 32px;
  }
}

.services__cta {
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--border);
}
.services__cta p {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .service-card__body { padding: 20px 20px 22px; }
  .service-card__body h3 { font-size: 1.15rem; }
  .service-card__body p { font-size: 0.9rem; }
}
@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card__body { padding: 24px 26px 26px; }
  .service-card__body h3 { font-size: 1.4rem; }
  .service-card__body p { font-size: 0.95rem; }
}

/* =========================
   Boutique feature
   ========================= */
.boutique__inner {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 600px);
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  max-width: 1080px;
  margin: 0 auto;
}
.boutique__brand {
  position: relative;
  background:
    linear-gradient(140deg, #ffffff 0%, #fbf4ec 100%);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(var(--ink-rgb), 0.08);
  overflow: hidden;
}
.boutique__brand::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}
.boutique__brand img {
  max-width: 240px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.boutique__brand-label {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
  padding-top: 6px;
  border-top: 1px solid var(--border);
  width: 100%;
}
.boutique__body h2 { margin-bottom: 20px; }
.boutique__body p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 560px;
}
@media (max-width: 800px) {
  .boutique__inner { grid-template-columns: 1fr; text-align: center; }
  .boutique__brand { max-width: 280px; margin: 0 auto; }
  .boutique__body p { margin-left: auto; margin-right: auto; }
}

/* =========================
   About
   ========================= */
.about__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.about-card {
  background: #fff;
  padding: 40px 32px 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(var(--ink-rgb), 0.08);
}
.about-card__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--primary);
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.9;
}
.about-card h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
  color: var(--ink);
}
.about-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
}
.about-card p strong { color: var(--ink); font-weight: 600; }
.about-card--accent {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  border-color: rgba(var(--primary-rgb), 0.15);
}
.about-card__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
  font-size: 0.92rem;
  color: var(--text);
}
.about-card__list li {
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.about-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 8px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
}
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about-card { padding: 34px 28px; }
}

/* =========================
   Location
   ========================= */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: stretch;
}
.location__info h2 { margin-bottom: 24px; }
.location__addr {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 32px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.location__addr svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.hours {
  margin-bottom: 32px;
}
.hours h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.hours__list {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.hours__list > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hours__list dt {
  font-weight: 500;
  color: var(--ink);
}
.hours__list dd {
  margin: 0;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}
.location__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.location__actions .btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.location__actions .btn--ghost:hover {
  background: var(--ink);
  color: #fff;
}
.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 18px 44px rgba(var(--ink-rgb), 0.08);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--primary-rgb), 0.10) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(var(--secondary-rgb), 0.10) 0%, transparent 55%),
    linear-gradient(160deg, var(--surface) 0%, var(--bg-alt) 100%);
}
.location__map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--ink-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
  pointer-events: none;
}
.location__map::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% - 8px));
  width: 44px; height: 44px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  transform-origin: bottom;
  transform: translate(-50%, -60%) rotate(-45deg);
  box-shadow: 0 10px 26px rgba(var(--primary-rgb), 0.35);
  pointer-events: none;
  z-index: 1;
}
.location__map iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}
.location__map-card {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  max-width: min(280px, calc(100% - 36px));
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  box-shadow:
    0 12px 28px rgba(var(--ink-rgb), 0.16),
    0 2px 6px rgba(var(--ink-rgb), 0.08);
  font-family: var(--font-body);
}
.location__map-card-eyebrow {
  margin: 0 0 6px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.location__map-card-title {
  margin: 0 0 2px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}
.location__map-card-sub {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}
.location__map-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color .2s var(--ease);
}
.location__map-card-link:hover {
  color: var(--primary-dark);
}
@media (max-width: 900px) {
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 320px; }
  .location__map iframe { min-height: 320px; }
}
@media (max-width: 640px) {
  .location__map-card {
    top: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 12px 14px;
  }
  .location__map-card-title { font-size: 0.92rem; }
  .location__map-card-sub { margin-bottom: 8px; }
}

/* =========================
   Contact
   ========================= */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.30) 0%, rgba(var(--primary-rgb), 0) 65%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -220px; left: -220px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.18) 0%, rgba(var(--secondary-rgb), 0) 65%);
  pointer-events: none;
}
.contact__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact__intro h2 { margin-bottom: 22px; }
.contact__intro > p {
  color: #d7c9c0;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 20px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.15);
  color: var(--secondary);
  flex-shrink: 0;
}
.contact__list .contact__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8a89f;
  margin-bottom: 4px;
}
.contact__list a, .contact__list span:not(.contact__icon):not(.contact__label) {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
}
.contact__list a:hover { color: var(--secondary); }
.contact__list a + a.contact__phone-alt {
  display: block;
  margin-top: 4px;
  font-size: 0.94rem;
  color: #efe6e0;
}
.contact__list a.contact__phone-alt:hover { color: var(--secondary); }

.topbar__item--phone-alt { position: relative; padding-left: 14px; }
.topbar__item--phone-alt::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .topbar__item--phone-alt { display: none; }
}

.contact__social {
  display: flex;
  gap: 12px;
}
.contact__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #efe6e0;
  transition: all .25s var(--ease);
}
.contact__social a:hover {
  background: var(--secondary);
  color: var(--ink);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  background: #fff;
  color: var(--text);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.contact-form h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 22px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .opt {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.75rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.12);
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}

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

/* =========================
   Footer
   ========================= */
.site-footer {
  background: #0f0a0a;
  color: #b8a89f;
  padding-top: 72px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
}
.site-footer__col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.site-footer__col a {
  color: #b8a89f;
  font-size: 0.92rem;
  transition: color .2s var(--ease);
}
.site-footer__col a:hover { color: #fff; }
.site-footer__col--brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 18px 0 22px;
  color: #b8a89f;
}
.site-footer__logo {
  height: 60px;
  width: auto;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  object-fit: contain;
}
.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #efe6e0;
  transition: all .25s var(--ease);
}
.site-footer__social a:hover {
  background: var(--primary);
  color: #fff;
}
.site-footer__col address {
  font-style: normal;
  color: #b8a89f;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.site-footer__col p { margin: 6px 0; font-size: 0.92rem; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8a7a72;
}
.site-footer__bottom-inner p { margin: 0; }

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { justify-content: center; text-align: center; }
}

/* =========================
   Floating call button (mobile)
   ========================= */
.fab-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.45);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.fab-call:hover {
  transform: scale(1.06);
  background: var(--primary-dark);
  color: #fff;
}
@media (max-width: 720px) {
  .fab-call { display: inline-flex; }
}

/* =========================
   Accessibility helpers
   ========================= */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

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

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
}

.service-card {
  background: var(--background, #fff);
  border: 1px solid var(--border, #e1e6ed);
  border-radius: var(--radius, 12px);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  overflow: hidden;
}

.service-card__body > .card-link {
  margin-top: auto;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */
