/* Northwest Wax — Design System */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Pinyon+Script&display=swap');

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-accent: 'Pinyon Script', cursive;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.5rem, 1rem + 5vw, 5rem);

  --color-bg: #fff9eb;
  --color-surface: #ffffff;
  --color-surface-alt: #ffede6;
  --color-border: oklch(from var(--color-text) l c h / 0.12);
  --color-text: #3d3834;
  --color-text-muted: #6b6560;
  --color-primary: #a9b49c;
  --color-primary-hover: #8f9a84;
  --color-accent: #fab89d;
  --color-accent-deep: #e8a088;
  --color-accent-mauve: #b06a94;
  --color-accent-mauve-deep: #8f5274;
  --color-success: #5a7d5e;
  --color-error: #c45c4a;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --content-width: 1100px;
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --header-height: 4.5rem;
  --shadow-sm: 0 1px 3px oklch(0.3 0.02 50 / 0.08);
  --shadow-md: 0 8px 24px oklch(0.3 0.02 50 / 0.1);
}

/* Slightly larger type on phones — one scale tweak, site-wide */
@media (max-width: 767px) {
  :root {
    --text-xs: clamp(0.8125rem, 0.78rem + 0.3vw, 0.9375rem);
    --text-sm: clamp(0.9375rem, 0.875rem + 0.4vw, 1.0625rem);
    --text-base: clamp(1.0625rem, 1rem + 0.35vw, 1.1875rem);
    --text-lg: clamp(1.25rem, 1.125rem + 0.85vw, 1.625rem);
    --text-xl: clamp(1.625rem, 1.3125rem + 1.35vw, 2.375rem);
    --text-2xl: clamp(2.125rem, 1.35rem + 2.65vw, 3.5rem);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.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 {
  width: min(100% - var(--space-8), var(--content-width));
  margin-inline: auto;
}

/* ——— Typography ——— */

.heading-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-script {
  font-family: var(--font-accent);
  font-weight: 400;
  line-height: 1;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-hover);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 42ch;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  min-width: 2.75rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    transform var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #2a2623;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-primary-hover);
}

.btn-light {
  background: var(--color-surface);
  color: var(--color-text);
  margin-top: var(--space-6);
}

.btn-light:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-text);
  background: var(--color-surface);
}

@media (max-width: 767px) {
  .btn--block-mobile {
    width: 100%;
  }
}

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-primary);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}

.site-logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: var(--space-2) 0;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-deep);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.site-nav a.is-active {
  font-weight: 600;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-social {
  display: none;
  align-items: center;
  align-self: center;
  gap: var(--space-2);
  justify-content: center;
}

.header-social .social-link {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.1);
}

.header-social .social-link img,
.header-social .social-link .social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.header-social .social-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}


.nav-drawer__social {
  display: flex;
  gap: var(--space-3);
  padding-block: var(--space-2) var(--space-4);
  margin-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.nav-drawer__social .social-link {
  width: 2.75rem;
  height: 2.75rem;
}

.site-header__cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: var(--space-2);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.2 0.02 50 / 0.45);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-drawer.is-open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(85vw, 320px);
  height: 100%;
  background: var(--color-surface);
  padding: calc(var(--header-height) + var(--space-6)) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__panel a {
  font-size: var(--text-lg);
  font-weight: 500;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-nav {
    gap: var(--space-4);
  }

  .site-nav a {
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
  }
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .header-social {
    display: flex;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .nav-toggle,
  .nav-drawer {
    display: none;
  }
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: clamp(28rem, 70vh, 40rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    oklch(0.25 0.03 50 / 0.55) 0%,
    oklch(0.35 0.04 80 / 0.35) 45%,
    oklch(0.92 0.02 85 / 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-16);
  color: var(--color-surface);
  max-width: 38rem;
}

.hero__welcome {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 2rem + 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 20px oklch(0 0 0 / 0.25);
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: var(--space-6);
  text-shadow: 0 1px 12px oklch(0 0 0 / 0.2);
}

.hero__sub {
  font-size: var(--text-base);
  opacity: 0.95;
  margin-bottom: var(--space-8);
  max-width: 32ch;
}

/* Bodyscape hero — mobile: headline + glass straddle; desktop: open grid layout */

.hero--bodyscape {
  min-height: clamp(28rem, 72svh, 44rem);
  align-items: stretch;
}

.hero--bodyscape .hero__bg img {
  object-position: 22% 58%;
}

.hero--bodyscape .hero__overlay {
  display: none;
}

.hero--bodyscape .hero__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  flex: 1;
  min-height: inherit;
  padding-block: clamp(var(--space-6), 4vh, var(--space-10));
  max-width: none;
  width: min(100% - var(--space-8), var(--content-width));
  margin-inline: auto;
  color: var(--color-text);
}

.hero--bodyscape .hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
}

.hero--bodyscape .hero__book {
  display: none;
}

.hero--bodyscape .hero__headline {
  align-self: flex-end;
  width: min(100%, 22rem);
  max-width: 100%;
  text-align: right;
}

.hero--bodyscape .hero__copy {
  display: contents;
}

.hero--bodyscape .hero__glass {
  align-self: center;
  width: min(100%, 22rem);
  margin-top: auto;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: oklch(1 0 0 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.72);
  box-shadow:
    0 12px 40px oklch(0.25 0.02 50 / 0.14),
    inset 0 1px 0 oklch(1 0 0 / 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero--bodyscape .hero__glass {
    background: oklch(1 0 0 / 0.92);
  }
}

.hero--bodyscape .hero__welcome {
  color: var(--color-accent-mauve);
  text-shadow: none;
  font-size: clamp(2.5rem, 1.5rem + 5vw, 4.25rem);
  margin-bottom: var(--space-1);
}

.hero--bodyscape .hero__tagline {
  color: var(--color-text);
  text-shadow: none;
  margin-bottom: 0;
}

.hero--bodyscape .hero__sub {
  color: var(--color-accent-mauve-deep);
  opacity: 1;
  max-width: none;
  font-size: var(--text-sm);
  text-align: center;
  margin-bottom: 0;
}

.hero--bodyscape .hero__content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 768px) {
  .hero--bodyscape {
    position: relative;
    min-height: clamp(36rem, 82vh, 50rem);
    overflow: visible;
  }

  .hero--bodyscape .hero__bg img {
    object-position: 18% 42%;
  }

  .hero--bodyscape .hero__content {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 0;
    flex: unset;
    pointer-events: none;
  }

  .hero--bodyscape .hero__headline {
    position: absolute;
    top: clamp(var(--space-8), 7vh, var(--space-16));
    left: clamp(50%, 36rem, 58%);
    right: clamp(var(--space-8), 4vw, var(--space-16));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-8);
    width: max-content;
    max-width: calc(50% - var(--space-16));
    text-align: left;
    pointer-events: auto;
  }

  .hero--bodyscape .hero__copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-8);
    position: static;
    width: 100%;
    max-width: none;
    pointer-events: auto;
  }

  .hero--bodyscape .hero__welcome {
    position: static;
    margin: 0;
    text-align: left;
    font-size: clamp(3.75rem, 2.5rem + 3vw, 6rem);
    line-height: 0.95;
    white-space: nowrap;
  }

  .hero--bodyscape .hero__tagline {
    position: static;
    margin: 0;
    transform: none;
    text-align: left;
    font-size: clamp(var(--text-base), 0.9rem + 0.85vw, var(--text-xl));
    line-height: 1.25;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .hero--bodyscape .hero__bottom {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 0;
    gap: var(--space-8);
    align-items: center;
    pointer-events: auto;
  }

  .hero--bodyscape .hero__glass {
    width: 100%;
    align-self: stretch;
    margin: 0;
    padding: 0;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero--bodyscape .hero__sub {
    font-size: var(--text-sm);
    line-height: 1.55;
    color: var(--color-accent-mauve-deep);
    text-align: left;
    text-shadow: none;
  }

  .hero--bodyscape .hero__book {
    display: inline-flex;
    align-self: center;
    min-width: 14rem;
    justify-content: center;
    box-shadow: var(--shadow-md);
  }

  .hero--bodyscape + .trust-bar .trust-bar__cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero--bodyscape {
    height: clamp(17.5rem, 62vw, 20rem);
    min-height: 0;
    overflow: visible;
  }

  .hero--bodyscape .hero__bg img {
    object-fit: cover;
    object-position: 16% 42%;
  }

  .hero--bodyscape .hero__content {
    width: 100%;
    min-height: 100%;
    padding-inline: var(--space-4);
    padding-block: var(--space-3) 0;
    gap: var(--space-1);
  }

  .hero--bodyscape .hero__headline {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: 100%;
    text-align: right;
    padding-inline: var(--space-1);
    flex: 1;
  }

  .hero--bodyscape .hero__copy {
    display: contents;
  }

  .hero--bodyscape .hero__bottom {
    margin-top: auto;
    width: 100%;
  }

  .hero--bodyscape .hero__welcome {
    font-size: clamp(1.75rem, 1rem + 4vw, 2.15rem);
    line-height: 1;
  }

  .hero--bodyscape .hero__tagline {
    font-size: var(--text-xs);
    line-height: 1.3;
    text-wrap: balance;
  }

  .hero--bodyscape .hero__glass {
    width: 100%;
    max-width: none;
    margin-top: auto;
    margin-bottom: 0;
    transform: translateY(50%);
    padding: var(--space-3) var(--space-4);
    background: oklch(1 0 0 / 0.72);
  }

  .hero--bodyscape .hero__sub {
    font-size: var(--text-sm);
    line-height: 1.4;
  }

  .hero--bodyscape + .trust-bar {
    --glass-overhang: 3.5rem;
    padding-top: var(--glass-overhang);
  }

  .hero--bodyscape + .trust-bar .trust-bar__cta {
    display: flex;
    margin-top: var(--space-4);
  }
}

/* ——— Trust bar ——— */

.trust-bar {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  padding-block: var(--space-6);
}

.trust-bar__cta {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.trust-bar__cta .btn {
  width: min(100%, 18rem);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  text-align: left;
}

.trust-item__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  color: var(--color-accent-mauve);
}

/* ——— UI icons (SVG sprite) ——— */

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: inherit;
}

.ui-icon--lg {
  width: 1.75rem;
  height: 1.75rem;
}

.ui-icon--label {
  width: 0.9rem;
  height: 0.9rem;
  opacity: 0.9;
}

.ui-icon--sm {
  width: 0.875rem;
  height: 0.875rem;
}

.ui-icon--xl {
  width: 4.5rem;
  height: 4.5rem;
  color: var(--color-surface);
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--color-accent-deep);
}

.star-rating .ui-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.yelp-badge .star-rating .ui-icon,
.platform-badge .star-rating .ui-icon {
  width: 0.85rem;
  height: 0.85rem;
}

.trust-item__title {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.3;
}

.trust-item__text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ——— Sections ——— */

.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

main section[id] {
  scroll-margin-top: calc(var(--header-height) + var(--space-4));
}

.section--alt {
  background: var(--color-surface-alt);
}

.section--surface {
  background: var(--color-surface);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header .section-lead {
  margin-inline: auto;
  margin-top: var(--space-4);
}

.section__header .section-label,
.reviews-cta .section-label {
  margin-inline: auto;
}

/* ——— Service cards ——— */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  color: var(--color-accent-mauve);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  flex: 1;
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-mauve);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.service-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Feature (hard wax) ——— */

.feature-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 10vw, 7rem);
  min-height: clamp(22rem, 52vh, 34rem);
  display: flex;
  align-items: center;
  color: var(--color-surface);
}

.feature-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.feature-section__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    oklch(0 0 0 / 0.78) 0%,
    oklch(0 0 0 / 0.58) 42%,
    oklch(0 0 0 / 0.28) 100%
  );
}

.feature-section__inner {
  position: relative;
  z-index: 2;
}

.feature-section__copy {
  max-width: 34rem;
}

.feature-section__copy .section-title {
  color: inherit;
  text-shadow: 0 2px 24px oklch(0 0 0 / 0.35);
}

.feature-section__copy p {
  text-shadow: 0 1px 12px oklch(0 0 0 / 0.35);
}

.feature-section__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(1 0 0 / 0.16);
  border: 1px solid oklch(1 0 0 / 0.32);
  color: inherit;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  margin-bottom: var(--space-4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feature-section__lead {
  margin-top: var(--space-4);
  color: oklch(1 0 0 / 0.88);
}

@media (max-width: 767px) {
  .feature-section {
    min-height: clamp(26rem, 68vh, 36rem);
    align-items: flex-end;
    padding-block: var(--space-8);
  }

  .feature-section__scrim {
    background: linear-gradient(
      180deg,
      oklch(0 0 0 / 0.15) 0%,
      oklch(0 0 0 / 0.55) 45%,
      oklch(0 0 0 / 0.82) 100%
    );
  }

  .feature-section__copy {
    max-width: none;
  }
}

/* ——— About ——— */

.about-grid {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-12);
  }
}

.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.about-photo:has(img) {
  padding: 0;
  display: block;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo.about-photo--logo,
.about-photo.about-photo--logo:has(img) {
  aspect-ratio: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-photo.about-photo--logo img {
  width: auto;
  height: auto;
  max-width: min(100%, 20rem);
  max-height: none;
  object-fit: contain;
}

@media (min-width: 768px) {
  .about-photo.about-photo--logo img {
    max-width: min(100%, 28rem);
  }
}

.about-photo__placeholder {
  text-align: center;
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.about-highlight {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
}

.about-bio p + p {
  margin-top: var(--space-4);
}

/* ——— Reviews ——— */

.reviews-cta {
  text-align: center;
  margin-bottom: var(--space-8);
}

.reviews-cta .section-lead {
  margin-inline: auto;
  margin-top: var(--space-4);
}

.yelp-badge,
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition);
}

.yelp-badge:hover,
.platform-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  color: var(--color-accent-mauve);
}

.testimonial-card__quote::before {
  content: '\201C';
}

.testimonial-card__quote::after {
  content: '\201D';
}

/* ——— Photo gallery ——— */

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.photo-gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-gallery__item:hover img {
  transform: scale(1.05);
}

.photo-gallery__item--featured {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .photo-gallery__item--featured {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

.review-buttons,
.review-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
}

.review-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  color: var(--color-accent-mauve);
}

.review-link__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: block;
}

.testimonials {
  column-count: 1;
  column-gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 640px) {
  .testimonials {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .testimonials {
    column-count: 3;
  }
}

.testimonial-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  margin-bottom: var(--space-4);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.testimonial-card__author {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
}

.testimonial-card__source {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ——— Social / specials ——— */

.social-section {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.header-social.social-links {
  margin-top: 0;
  justify-content: center;
}

.nav-drawer__social.social-links {
  margin-top: 0;
  justify-content: flex-start;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.social-link img,
.social-link .social-icon {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ——— CTA band ——— */

.cta-band {
  background: var(--color-primary);
  text-align: center;
}

.cta-band .section-title {
  margin-bottom: var(--space-4);
}

.cta-band .section-lead {
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* ——— Footer ——— */

.site-footer {
  background: var(--color-text);
  color: oklch(0.95 0.01 85);
  padding-block: var(--space-12) var(--space-8);
}

.site-footer a:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--space-12);
  }
}

.footer-logo img {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  opacity: 0.85;
  max-width: 22ch;
}

.footer-social {
  justify-content: flex-start;
  margin-top: var(--space-5);
}

.footer-social .social-link {
  background: oklch(1 0 0 / 0.08);
  border-color: oklch(1 0 0 / 0.15);
}

.footer-social .social-link:hover {
  background: oklch(1 0 0 / 0.14);
  border-color: oklch(1 0 0 / 0.25);
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: var(--space-4);
}

.footer-list li + li {
  margin-top: var(--space-2);
}

.footer-list a,
.footer-list span {
  font-size: var(--text-sm);
}

.footer-hours li {
  font-size: var(--text-sm);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-1);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid oklch(1 0 0 / 0.1);
  font-size: var(--text-xs);
  opacity: 0.55;
  text-align: center;
}

/* ——— Scroll reveal ——— */

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Inner pages ——— */

.page-hero {
  background: var(--color-primary);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.page-hero .section-title {
  margin-top: var(--space-2);
}

.page-hero .section-lead {
  margin-inline: auto;
  margin-top: var(--space-4);
}

.price-category {
  margin-bottom: var(--space-12);
}

.price-category:last-of-type {
  margin-bottom: 0;
}

.price-category__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-accent);
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

@media (min-width: 640px) {
  .price-row {
    font-size: var(--text-base);
  }
}

.price-row__name {
  flex: 1;
  min-width: 0;
}

.price-row__price {
  flex-shrink: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.callout {
  background: var(--color-surface-alt);
  border-left: 4px solid var(--color-accent-mauve);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.callout--highlight {
  border-left-color: var(--color-primary-hover);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left-width: 4px;
  margin-bottom: var(--space-8);
}

.category-cta {
  margin-top: var(--space-6);
}

.contact-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-6);
}

.contact-list li + li {
  margin-top: var(--space-3);
}

.contact-list a {
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--color-accent-mauve);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.hours-row span:last-child {
  font-weight: 500;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  min-height: 280px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-page-grid {
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .about-page-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.prose p + p {
  margin-top: var(--space-4);
}

.prose p + h2 {
  margin-top: var(--space-8);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover,
  .social-link:hover,
  .photo-gallery__item:hover img {
    transform: none;
  }
}
