/* =============================================
   Luxe Salon — Salon Mauve A
   style.css — scoped, no @import, plain CSS
   ============================================= */

/* ---- Tokens ---- */
:root {
  /* Palette */
  --bg:      #F7EFEC;
  --surface: #FFFAF7;
  --fg:      #322B2E;
  --muted:   #9C8E92;
  --primary: #9C6B84;
  --primary-fg: #FFFAF7;
  --accent:  #C9A15A;
  --border:  rgba(50,43,46,0.12);

  /* Breakpoints (reference only — used in @media) */
  --bp-sm: 480px;
  --bp-md: 720px;
  --bp-lg: 1024px;
  --bp-xl: 1440px;

  /* Fluid type */
  --fs-hero: clamp(2.5rem, 5vw + 1rem, 4.75rem);
  --fs-h2:   clamp(1.4rem, 2.5vw + 0.5rem, 2.25rem);
  --fs-body: clamp(0.9375rem, 0.4vw + 0.875rem, 1rem);
  --fs-sm:   0.875rem;
  --fs-xs:   0.75rem;

  /* Spacing */
  --section-py: clamp(72px, 10vw, 120px);
  --container-gutter: clamp(24px, 4vw, 48px);
  --radius-card: 0px;
  --radius-btn: 24px;

  /* Fonts */
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p { margin: 0; }
address { font-style: normal; }
ul { list-style: none; }
blockquote { margin: 0; }

/* ---- Focus ---- */
:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
  background-color: #7E5369;
  border-color: #7E5369;
}

.btn-ghost {
  background-color: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: var(--fg);
  color: var(--bg);
}
.btn-ghost:active {
  opacity: 0.8;
}

.btn-banner {
  background-color: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
}
.btn-banner:hover,
.btn-banner:focus-visible {
  background-color: rgba(255,250,247,0.85);
  border-color: rgba(255,250,247,0.85);
}

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ---- Section helpers ---- */
.section-header {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-title {
  font-size: var(--fs-h2);
  color: var(--fg);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.65;
}

/* ====================================================
   NAV — split + curved + hamburger
   ==================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}
/* Curved bottom edge on the nav bar */
.nav::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background-color: var(--surface);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  pointer-events: none;
  z-index: -1;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}
.nav__logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-family: var(--font-heading);
}
.nav__logo-text {
  display: inline-block;
}
.nav__toggle-input {
  display: none;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--fg);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity 150ms ease;
}
.nav__link:hover,
.nav__link:focus-visible {
  opacity: 1;
}
.nav__cta {
  min-height: 36px;
  padding: 8px 20px;
  font-size: var(--fs-xs);
  border-radius: 999px;
}

@media (max-width: 720px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px var(--container-gutter) 24px;
  }
  .nav__toggle-input:checked ~ .nav__links {
    display: flex;
  }
  .nav__link {
    padding-block: 12px;
    width: 100%;
  }
  .nav__cta {
    margin-top: 12px;
  }
  .nav__toggle-input:checked ~ .nav__hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav__toggle-input:checked ~ .nav__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle-input:checked ~ .nav__hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  background-color: var(--bg);
  padding-top: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-block: 64px;
}
.hero__text {
  max-width: 540px;
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero__subtitle {
  font-size: clamp(1rem, 1vw + 0.85rem, 1.125rem);
  color: var(--muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* Booking widget visual (CSS-only decorative block) */
.hero__booking-widget {
  margin-top: 32px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  box-shadow: 0 4px 16px rgba(50,43,46,0.08);
}
.hero__booking-widget-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-fg);
}
.hero__booking-widget-text {
  flex: 1;
}
.hero__booking-widget-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.hero__booking-widget-value {
  font-size: var(--fs-sm);
  color: var(--fg);
  font-weight: 500;
}

/* Short hero variant (about / contact) */
.hero--short .hero__inner {
  min-height: 320px;
  padding-block: clamp(64px, 10vw, 96px);
}
.hero__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  max-width: 680px;
  margin-inline: auto;
}
.hero__inner--centered .hero__text {
  max-width: none;
}
.hero__inner--centered .hero__subtitle {
  max-width: none;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: clamp(48px, 8vw, 80px);
  }
  .hero__media {
    order: -1;
  }
  .hero__media img {
    max-height: 520px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ====================================================
   SERVICES
   ==================================================== */
.services {
  padding-block: var(--section-py);
  background-color: var(--surface);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px);
  transition: background-color 180ms ease;
}
.service-card:hover {
  background-color: var(--bg);
}
.service-card__title {
  font-size: clamp(1rem, 1.2vw + 0.7rem, 1.3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.service-card__price {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.service-card__duration {
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

/* ====================================================
   TEAM
   ==================================================== */
.team {
  padding-block: var(--section-py);
  background-color: var(--bg);
}
.team .section-title {
  margin-bottom: clamp(40px, 6vw, 56px);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.team-card {
  display: flex;
  flex-direction: column;
}
.team-card__avatar-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 24px;
}
.team-card__avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.team-card:hover .team-card__avatar-wrap img {
  transform: scale(1.03);
}
.team-card__body {
  flex: 1;
}
.team-card__name {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 4px;
}
.team-card__role {
  display: block;
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team__grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   GALLERY
   ==================================================== */
.gallery {
  padding-block: var(--section-py);
  background-color: var(--surface);
}
.gallery .section-title {
  margin-bottom: clamp(32px, 5vw, 48px);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 200ms ease;
}
.gallery__item:hover img {
  opacity: 0.9;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item--wide img {
  aspect-ratio: 2;
}

@media (max-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: auto;
  }
  .gallery__item--wide img {
    aspect-ratio: 16/9;
  }
}

/* ====================================================
   TESTIMONIAL
   ==================================================== */
.testimonial {
  padding-block: var(--section-py);
  background-color: var(--bg);
}
.testimonial .section-title {
  margin-bottom: clamp(40px, 6vw, 56px);
}
.testimonial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.testimonial-card {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.testimonial-card__quote {
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.05rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__author {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  font-style: normal;
  color: var(--fg);
}
.testimonial-card__role {
  display: block;
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .testimonial__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .testimonial__grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   PRICING
   ==================================================== */
.pricing {
  padding-block: var(--section-py);
  background-color: var(--surface);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.pricing-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  background-color: var(--surface);
}
.pricing-card--featured {
  background-color: var(--bg);
}
.pricing-card__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-card__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-card__price {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.pricing-card__unit {
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  font-size: var(--fs-sm);
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background-color: var(--muted);
}
.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

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

/* ====================================================
   STORY (about.html)
   ==================================================== */
.story {
  padding-block: var(--section-py);
  background-color: var(--surface);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.story__content .section-title {
  margin-bottom: 28px;
}
.story__body {
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.story__body:last-child {
  margin-bottom: 0;
}
.story__image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

/* ====================================================
   VALUES (about.html)
   ==================================================== */
.values {
  padding-block: var(--section-py);
  background-color: var(--bg);
}
.values .section-title {
  margin-bottom: clamp(40px, 6vw, 56px);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.value-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(28px, 3vw, 40px);
}
.value-card__icon {
  width: 28px;
  height: 28px;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.value-card__title {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 12px;
}
.value-card__desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  padding-block: clamp(56px, 8vw, 96px);
  background-color: var(--primary);
  text-align: center;
}
.cta-banner__title {
  font-size: var(--fs-h2);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--primary-fg);
  margin-bottom: 16px;
}
.cta-banner__subtitle {
  font-size: var(--fs-body);
  color: rgba(255,250,247,0.65);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ====================================================
   CONTACT FORM (contact.html)
   ==================================================== */
.contact-form {
  padding-block: var(--section-py);
  background-color: var(--bg);
}
.contact-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-form__form-wrap .section-title {
  margin-bottom: 32px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-field label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--fg);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  width: 100%;
  resize: vertical;
  line-height: 1.55;
  transition: border-color 150ms ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea {
  min-height: 140px;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 32px;
  background-color: var(--primary);
  color: var(--primary-fg);
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background-color 150ms ease;
}
.form-submit:hover,
.form-submit:focus-visible {
  background-color: #7E5369;
  border-color: #7E5369;
}
.form-submit:active {
  opacity: 0.8;
}

.contact-form__info-wrap {
  padding-top: clamp(0px, 6vw, 48px);
}
.contact-form__info-title {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}
.contact-form__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-form__icon {
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-form__label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-form__value {
  font-size: var(--fs-sm);
  color: var(--fg);
  line-height: 1.5;
}
a.contact-form__value:hover,
a.contact-form__value:focus-visible {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .contact-form__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ====================================================
   HOURS (contact.html)
   ==================================================== */
.hours {
  padding-block: var(--section-py);
  background-color: var(--surface);
}
.hours .section-title {
  margin-bottom: clamp(32px, 5vw, 48px);
}
.hours__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.hours-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-card__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours-card__value {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1024px) {
  .hours__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hours__grid {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  padding-block: 48px;
  background-color: var(--primary);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer__logo {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--primary-fg);
  margin-bottom: 12px;
}
.footer__copy {
  font-size: var(--fs-xs);
  color: rgba(255,250,247,0.5);
  line-height: 1.5;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 2px;
}
.footer__link {
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,250,247,0.65);
  transition: color 150ms ease;
}
.footer__link:hover,
.footer__link:focus-visible {
  color: var(--primary-fg);
}
.footer__social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding-top: 2px;
}
.footer__social-link {
  color: rgba(255,250,247,0.65);
  transition: color 150ms ease;
  display: flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}
.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: var(--primary-fg);
}

@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__social {
    justify-content: flex-start;
  }
}

/* ====================================================
   Reduced motion
   ==================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === PRESETS (drag-drop editor) ===
   Section-scoped variants override defaults via [data-section-type="…"].
   Do NOT edit these markers — used by template-preset-spec.md.
=== */

.preset-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9375rem, 0.4vw + 0.875rem, 1rem);
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 1rem;
}

.preset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 12px 28px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease;
}

.preset-button:hover {
  background: #7E5369;
  border-color: #7E5369;
}

.preset-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.preset-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
  width: 100%;
}

.preset-form-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.preset-form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--fg);
  transition: border-color 150ms ease;
}

.preset-form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.preset-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--primary-fg);
  padding: 14px 32px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  cursor: pointer;
  transition: background 150ms ease;
}

.preset-form-submit:hover {
  background: #7E5369;
  border-color: #7E5369;
}

.preset-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Section-scoped overrides */
[data-section-type="hero"] .preset-button {
  padding: 14px 36px;
  font-size: 0.8125rem;
}

[data-section-type="nav"] .preset-button {
  padding: 8px 20px;
  font-size: 0.6875rem;
}

[data-section-type="cta-banner"] .preset-button {
  background: var(--primary-fg);
  color: var(--primary);
  border-color: var(--primary-fg);
}

[data-section-type="cta-banner"] .preset-button:hover {
  background: rgba(255,250,247,0.85);
  box-shadow: none;
}

[data-section-type="footer"] .preset-button {
  background: transparent;
  color: rgba(255,250,247,0.65);
  border-color: rgba(255,250,247,0.3);
}

[data-section-type="footer"] .preset-button:hover {
  background: rgba(255,250,247,0.1);
  box-shadow: none;
}

/* --- section-pool token contract (auto-added by normalize-template-tokens) --- */
:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --fs-h3: clamp(1rem, 1.2vw + 0.7rem, 1.3rem);
  --fs-small: 0.875rem;
  /* legacy alias for --fs-sm (kept until callers migrate) */
  --fs-sm: var(--fs-small);
  --lh-tight: 1.1;
  --lh-body: 1.6;
  --section-py: clamp(72px, 10vw, 120px);
  --container-px: clamp(24px, 4vw, 48px);
  --container-max: 1200px;
  --gap-lg: 48px;
  --gap-md: 24px;
  --gap-sm: 12px;
  --radius-input: 0px;
}

/* --- section-pool preset classes (auto-added) --- */

.preset-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0;
}

.preset-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
}

.preset-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--surface);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
}

/* ====================================================
   PRODUCT / SERVICE LIST (services.html)
   ==================================================== */
.product-list {
  padding-block: var(--section-py);
  background-color: var(--bg);
}
.product-list .section-header {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 56px);
}
.product-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms ease;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(50,43,46,0.08);
}
.product-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.product-card:hover .product-card__image-wrap img {
  transform: scale(1.03);
}
.product-card__body {
  padding: clamp(16px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  flex: 1;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw + 0.6rem, 1.2rem);
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.product-card__desc {
  font-size: var(--fs-small);
  color: var(--muted);
  line-height: var(--lh-body);
  flex: 1;
}
.product-card__price {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.product-card__cta {
  display: inline-block;
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}
.product-card__cta:hover,
.product-card__cta:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

/* Hide quantity stepper on service detail — not relevant for bookings */
.sect-product-detail-split-card-01 .stepper {
  display: none;
}

@media (max-width: 1024px) {
  .product-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-list__grid {
    grid-template-columns: 1fr;
  }
}
