/* ============================================================
   Pearl Clinic — design tokens
   ============================================================ */
:root {
  --ivory: #fbf9f5;
  --stone: #f2ece1;
  --espresso: #2a2019;
  --rosewood: #93805f;
  --rosewood-dark: #6f5c43;
  --dusty-rose: #d4c4a4;
  --gold: #b99356;
  --line: rgba(42, 32, 25, 0.14);

  --serif: "Fraunces", "Iowan Old Style", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--espresso);
}

p { margin: 0; }

.eyebrow-none { /* intentionally unused — no all-caps eyebrow labels on this site */ }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--rosewood);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--rosewood-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 245, 239, 0.55);
}
.btn-ghost:hover { border-color: var(--ivory); }
.btn-outline {
  background: transparent;
  color: var(--rosewood);
  border-color: var(--rosewood);
}
.btn-outline:hover { background: var(--rosewood); color: var(--ivory); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.logo span { color: var(--rosewood); }

nav.main-nav { display: flex; gap: 32px; }
nav.main-nav a {
  font-size: 0.95rem;
  color: var(--espresso);
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav a:hover { color: var(--rosewood); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { font-size: 0.95rem; white-space: nowrap; }
.header-phone:hover { color: var(--rosewood); }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 14, 10, 0.82) 0%,
    rgba(20, 14, 10, 0.62) 32%,
    rgba(20, 14, 10, 0.18) 62%,
    rgba(20, 14, 10, 0.05) 100%
  );
}
.hero-content {
  position: relative;
  color: var(--ivory);
  padding: 64px 0 76px;
  max-width: 620px;
}
.hero-content h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 22px;
}
.hero-content p {
  font-size: 1.08rem;
  color: rgba(250, 245, 239, 0.88);
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- section shell ---------- */
section { padding: 108px 0; }
.section-stone { background: var(--stone); }
.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.05rem;
  color: rgba(42, 32, 25, 0.78);
}

/* ---------- about / why us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}
.about-copy p { font-size: 1.05rem; color: rgba(42, 32, 25, 0.82); margin-bottom: 20px; }
.about-copy p:last-child { margin-bottom: 0; }

.why-list { border-top: 1px solid var(--line); margin-top: 36px; }
.why-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: rgba(42, 32, 25, 0.85);
}

.about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-image img { height: 100%; object-fit: cover; }

/* ---------- treatment menu ---------- */
.menu-note {
  font-size: 0.95rem;
  color: rgba(42, 32, 25, 0.68);
  margin-bottom: 8px;
}
.menu-categories {
  display: grid;
  gap: 56px;
}
.menu-cat h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--rosewood);
  margin-bottom: 22px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:first-of-type { border-top: 1px solid var(--line); }
.menu-item-name {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  flex: 0 0 auto;
  max-width: 260px;
}
.menu-item-desc {
  font-size: 0.96rem;
  color: rgba(42, 32, 25, 0.72);
  flex: 1;
}
.menu-item-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rosewood);
  flex: 0 0 auto;
  white-space: nowrap;
  text-align: right;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--rosewood);
  color: var(--ivory);
  padding: 88px 0;
}
.cta-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--ivory); font-size: clamp(1.7rem, 3vw, 2.2rem); max-width: 480px; }
.cta-strip .btn-primary { background: var(--ivory); color: var(--rosewood); }
.cta-strip .btn-primary:hover { background: var(--stone); }

/* ---------- follow / social ---------- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.social-link:hover { border-color: var(--rosewood); background: #fff; }
.social-link svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--rosewood); }
.social-link small {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(42, 32, 25, 0.6);
  margin-top: 2px;
}

/* ---------- location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
}
.detail-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.detail-block:first-child { padding-top: 0; }
.detail-label {
  font-size: 0.82rem;
  color: rgba(42, 32, 25, 0.55);
  margin-bottom: 6px;
}
.detail-value { font-size: 1.08rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  padding: 7px 0;
}
.hours-row.today { color: var(--rosewood); font-weight: 600; }

.map-frame {
  border: 1px solid var(--line);
  min-height: 420px;
  overflow: hidden;
  border-radius: 2px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

/* ---------- footer ---------- */
footer {
  background: var(--espresso);
  color: rgba(250, 245, 239, 0.82);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 245, 239, 0.14);
}
.footer-brand .logo { color: var(--ivory); }
.footer-brand .logo span { color: var(--dusty-rose); }
.footer-brand p { margin-top: 14px; color: rgba(250, 245, 239, 0.6); max-width: 280px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(250, 245, 239, 0.55);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.95rem;
  color: rgba(250, 245, 239, 0.85);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--dusty-rose); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(250, 245, 239, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 76px 0; }
  .cta-strip .wrap { justify-content: flex-start; }
}

@media (max-width: 760px) {
  nav.main-nav { display: none; }
  .header-phone { display: none; }
  .wrap { padding: 0 20px; }
  .hero-content { padding: 40px 0 56px; }
  .menu-item { flex-direction: column; gap: 4px; }
  .menu-item-name { max-width: none; }
  .menu-item-price { text-align: left; }
}
