

:root {
  --clr-gold:        #b8924a;
  --clr-gold-light:  #d4aa72;
  --clr-gold-dark:   #8a6a30;
  --clr-earth:       #3d2b1f;
  --clr-earth-mid:   #5c3d2e;
  --clr-cream:       #f8f3ec;
  --clr-cream-dark:  #ede5d8;
  --clr-warm-white:  #fdf9f4;
  --clr-text:        #2e1e14;
  --clr-text-mid:    #5a3d2b;
  --clr-text-light:  #8a7060;
  --clr-overlay:     rgba(30, 15, 5, 0.52);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lato', system-ui, sans-serif;

  --fs-xs:   clamp(0.75rem, 1.5vw, 0.875rem);
  --fs-sm:   clamp(0.875rem, 1.8vw, 1rem);
  --fs-base: clamp(1rem, 2vw, 1.125rem);
  --fs-md:   clamp(1.125rem, 2.5vw, 1.375rem);
  --fs-lg:   clamp(1.375rem, 3vw, 1.75rem);
  --fs-xl:   clamp(1.75rem, 4vw, 2.5rem);
  --fs-2xl:  clamp(2.25rem, 6vw, 3.75rem);

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.75rem;
  --sp-lg:  3rem;
  --sp-xl:  5rem;
  --sp-2xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --shadow-card: 0 4px 24px rgba(61, 43, 31, 0.10);
  --shadow-hover: 0 8px 36px rgba(61, 43, 31, 0.18);

  --transition: 0.25s ease;

  --header-h: 72px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

address { font-style: normal; }


.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}


h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  color: var(--clr-earth);
}

h1 { font-size: var(--fs-2xl); font-weight: 600; }
h2 { font-size: var(--fs-xl); font-weight: 600; }
h3 { font-size: var(--fs-md); font-weight: 400; }


.btn {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--clr-gold);
  color: #fff;
  border-color: var(--clr-gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  box-shadow: 0 4px 16px rgba(184, 146, 74, 0.35);
  outline: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  outline: none;
}

.btn-secondary {
  background: transparent;
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--clr-gold);
  color: #fff;
  outline: none;
}

.btn-cta {
  background: var(--clr-gold);
  color: #fff;
  border-color: var(--clr-gold);
  padding: 0.5em 1.25em;
}
.btn-cta:hover, .btn-cta:focus-visible {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  outline: none;
}

.btn-lg { padding: 1em 2.25em; font-size: var(--fs-base); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-earth);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}

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

.logo-icon {
  font-size: 1.4rem;
  color: var(--clr-gold);
  line-height: 1;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  color: var(--clr-cream);
  line-height: 1.2;
  max-width: 18ch;
}

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] a {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-cream-dark);
  transition: color var(--transition);
  padding: 0.25em 0;
  border-bottom: 2px solid transparent;
}

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] a:hover,
nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] a:focus-visible {
  color: var(--clr-gold-light);
  border-bottom-color: var(--clr-gold-light);
  outline: none;
}

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] a[aria-current="page"] {
  color: var(--clr-gold-light);
  border-bottom-color: var(--clr-gold);
}

nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] li[data-pn-cta] a {
  border-bottom: none;
}

@media (max-width: 680px) {
  nav[aria-label="Primary navigation"] ul[data-pn-nav="primary"] li:not([data-pn-cta]) {
    display: none;
  }
}


.hero {
  position: relative;
  min-height: clamp(520px, 90vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 12, 3, 0.72) 0%,
    rgba(61, 43, 31, 0.48) 60%,
    rgba(92, 61, 46, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: var(--sp-2xl);
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: var(--sp-sm);
}

.hero-content h1 {
  color: #fff;
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--sp-lg);
  max-width: 54ch;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}


.intro {
  padding-block: var(--sp-2xl);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

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

.intro-text h2 {
  margin-bottom: var(--sp-md);
}

.intro-text p {
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-sm);
}

.intro-text .btn {
  margin-top: var(--sp-sm);
}

.intro-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.intro-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.intro-photo:hover img {
  transform: scale(1.03);
}


.services {
  background: var(--clr-cream);
  padding-block: var(--sp-2xl);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

.section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-xs);
}

.section-sub {
  color: var(--clr-text-mid);
  margin-top: var(--sp-sm);
  font-size: var(--fs-base);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-md);
}

.service-card {
  background: var(--clr-warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.service-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}

@media (max-width: 640px) {
  .service-card--featured {
    flex-direction: column;
  }
}

.service-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card--featured .service-card-media {
  aspect-ratio: unset;
  width: 45%;
  min-height: 280px;
}

@media (max-width: 640px) {
  .service-card--featured .service-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}

.service-card--featured .service-card-body {
  justify-content: center;
  padding: var(--sp-lg);
}

.service-card-body h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  color: var(--clr-earth);
  font-weight: 600;
}

.service-card--featured .service-card-body h3 {
  font-size: var(--fs-lg);
}

.service-card-body p {
  color: var(--clr-text-mid);
  font-size: var(--fs-sm);
  line-height: 1.65;
  flex: 1;
}

.card-link {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: var(--sp-xs);
  transition: color var(--transition), letter-spacing var(--transition);
}

.card-link:hover, .card-link:focus-visible {
  color: var(--clr-gold-dark);
  letter-spacing: 0.1em;
  outline: none;
}

.services-cta {
  text-align: center;
  margin-top: var(--sp-xl);
}


.feature-strip {
  background: var(--clr-earth);
  padding-block: var(--sp-xl);
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-lg);
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.feature-item h3 {
  color: var(--clr-gold-light);
  font-size: var(--fs-base);
  font-weight: 700;
  font-family: var(--ff-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-item p {
  color: rgba(248, 243, 236, 0.75);
  font-size: var(--fs-sm);
  max-width: 24ch;
  margin-inline: auto;
}


.ambience {
  padding-block: var(--sp-2xl);
}

.ambience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--sp-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .ambience-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.ambience-photo {
  overflow: hidden;
}

.ambience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ambience-photo:hover img {
  transform: scale(1.04);
}

.ambience-photo--tall {
  aspect-ratio: 3 / 4;
  grid-row: span 2;
}

@media (min-width: 640px) {
  .ambience-photo--tall {
    grid-row: span 1;
    aspect-ratio: unset;
    min-height: 420px;
  }
  .ambience-photo--short {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 639px) {
  .ambience-photo--tall {
    grid-column: 1;
    aspect-ratio: 2 / 3;
  }
  .ambience-photo--short:first-of-type + .ambience-photo--short {
    grid-column: 2;
  }
}


.hours-contact {
  background: var(--clr-cream);
  padding-block: var(--sp-2xl);
}

.hours-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}

@media (min-width: 760px) {
  .hours-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hours-block h2,
.contact-block h2 {
  margin-bottom: var(--sp-md);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-base);
}

.hours-table th,
.hours-table td {
  padding: 0.6em 0;
  border-bottom: 1px solid var(--clr-cream-dark);
  text-align: left;
}

.hours-table th {
  font-weight: 700;
  color: var(--clr-earth);
  padding-right: var(--sp-md);
  width: 50%;
}

.hours-table td {
  color: var(--clr-text-mid);
}

.contact-address {
  font-size: var(--fs-md);
  color: var(--clr-earth);
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
}

.contact-link {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--clr-gold);
  display: inline-block;
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.contact-link:hover, .contact-link:focus-visible {
  color: var(--clr-gold-dark);
  outline: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}


.cta-banner {
  background: linear-gradient(135deg, var(--clr-earth) 0%, var(--clr-earth-mid) 100%);
  padding-block: var(--sp-xl);
}

.cta-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

.cta-banner-text h2 {
  color: var(--clr-cream);
  margin-bottom: 0.4rem;
}

.cta-banner-text p {
  color: rgba(248,243,236,0.75);
  max-width: 52ch;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  flex-shrink: 0;
}


.site-footer {
  background: var(--clr-earth);
  color: var(--clr-cream-dark);
  padding-block: var(--sp-xl);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-name {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  color: var(--clr-cream);
  font-weight: 600;
  max-width: 28ch;
}

.footer-address,
.footer-phone {
  font-size: var(--fs-sm);
  color: rgba(237, 229, 216, 0.7);
}

.footer-phone a {
  color: var(--clr-gold-light);
  transition: color var(--transition);
}
.footer-phone a:hover { color: var(--clr-gold); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(237, 229, 216, 0.7);
  transition: color var(--transition);
}

.footer-nav a:hover, .footer-nav a:focus-visible {
  color: var(--clr-gold-light);
  outline: none;
}

.footer-copy {
  width: 100%;
  font-size: var(--fs-xs);
  color: rgba(237, 229, 216, 0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-md);
  margin-top: var(--sp-sm);
}


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



.menu-hero {
  position: relative;
  min-height: clamp(380px, 60vh, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.menu-hero-media {
  position: absolute;
  inset: 0;
}

.menu-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 12, 3, 0.75) 0%,
    rgba(61, 43, 31, 0.52) 60%,
    rgba(92, 61, 46, 0.28) 100%
  );
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: var(--sp-xl);
}

.menu-hero-content h1 {
  color: #fff;
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.menu-intro {
  padding-block: var(--sp-xl) var(--sp-md);
  text-align: center;
}

.menu-intro-inner {
  max-width: 640px;
  margin-inline: auto;
}

.menu-intro-inner h2 {
  margin-block: var(--sp-xs) var(--sp-sm);
}

.inline-link {
  color: var(--clr-gold);
  font-weight: 700;
  transition: color var(--transition);
}

.inline-link:hover, .inline-link:focus-visible {
  color: var(--clr-gold-dark);
  outline: none;
}

.treatments-list {
  padding-bottom: var(--sp-xl);
}

.treatment-block--featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--clr-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: var(--sp-xl);
}

@media (min-width: 760px) {
  .treatment-block--featured {
    grid-template-columns: 1fr 1fr;
  }
}

.treatment-block-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

@media (min-width: 760px) {
  .treatment-block-media {
    aspect-ratio: unset;
    min-height: 420px;
  }
}

.treatment-block-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.treatment-block--featured:hover .treatment-block-media img {
  transform: scale(1.03);
}

.treatment-block-body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  justify-content: center;
}

.treatment-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.treatment-block-body h2 {
  font-size: var(--fs-lg);
  margin-bottom: 0;
}

.treatment-block-body p {
  color: var(--clr-text-mid);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  margin-block: var(--sp-xs);
}

.price-table th,
.price-table td {
  padding: 0.55em 0;
  border-bottom: 1px solid var(--clr-cream-dark);
  text-align: left;
}

.price-table th {
  font-weight: 700;
  color: var(--clr-earth);
  width: 50%;
  padding-right: var(--sp-sm);
}

.price-table td {
  color: var(--clr-text-mid);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--sp-md);
}

.treatment-card {
  background: var(--clr-warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.treatment-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.treatment-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.treatment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-card-media img {
  transform: scale(1.04);
}

.treatment-card-body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  flex: 1;
}

.treatment-card-body h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  color: var(--clr-earth);
  font-weight: 600;
}

.treatment-card-body p {
  color: var(--clr-text-mid);
  font-size: var(--fs-sm);
  line-height: 1.65;
  flex: 1;
}

.menu-note {
  padding-block: var(--sp-lg);
}

.menu-note-inner {
  background: var(--clr-cream);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.menu-note-inner .feature-icon {
  font-size: 1.4rem;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.menu-note-inner p {
  color: var(--clr-text-mid);
  font-size: var(--fs-base);
  line-height: 1.7;
}



.about-hero {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-block: var(--sp-xl);
}

.about-hero-content h1 {
  color: #fff;
  margin-bottom: var(--sp-sm);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.about-hero-content .hero-sub {
  margin-bottom: 0;
}

.about-story {
  padding-block: var(--sp-2xl);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 760px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-story-text .section-tag {
  display: inline-block;
  margin-bottom: var(--sp-xs);
}

.about-story-text h2 {
  margin-bottom: var(--sp-md);
}

.about-story-text p {
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-sm);
}

.about-story-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-story-photo:hover img {
  transform: scale(1.03);
}

.about-approach {
  padding-block: var(--sp-2xl);
}

.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

@media (min-width: 760px) {
  .about-approach-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-approach-photos {
    order: -1;
  }
}

.about-approach-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.approach-photo {
  overflow: hidden;
}

.approach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.approach-photo:hover img {
  transform: scale(1.04);
}

.approach-photo--main {
  aspect-ratio: 3 / 4;
  grid-row: span 2;
}

.approach-photo--accent {
  aspect-ratio: 1;
  align-self: end;
}

.about-approach-text .section-tag {
  display: inline-block;
  margin-bottom: var(--sp-xs);
}

.about-approach-text h2 {
  margin-bottom: var(--sp-md);
}

.about-approach-text p {
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-sm);
}

.about-approach-text .btn {
  margin-top: var(--sp-sm);
}

.about-treatments {
  background: var(--clr-cream);
  padding-block: var(--sp-2xl);
}

.about-treatments-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--clr-warm-white);
  margin-bottom: var(--sp-md);
}

.about-treatment-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  border-bottom: 1px solid var(--clr-cream-dark);
  transition: background var(--transition);
}

.about-treatment-row:last-child {
  border-bottom: none;
}

.about-treatment-row:hover {
  background: var(--clr-cream);
}

.about-treatment-icon {
  font-size: 1rem;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 0.35em;
  line-height: 1;
}

.about-treatment-info h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-earth);
  margin-bottom: 0.3rem;
}

.about-treatment-info p {
  font-size: var(--fs-sm);
  color: var(--clr-text-mid);
  line-height: 1.65;
}




.contact-hero {
  position: relative;
  min-height: clamp(320px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30, 12, 3, 0.68) 0%,
    rgba(61, 43, 31, 0.50) 60%,
    rgba(92, 61, 46, 0.28) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-block: var(--sp-2xl);
}

.contact-hero-content h1 {
  color: #fff;
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.contact-hero-content .hero-sub {
  margin-bottom: 0;
}


.contact-main {
  padding-block: var(--sp-2xl);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (min-width: 820px) {
  .contact-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-details-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}


.contact-card {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-card);
}

.contact-card--hours {
  height: 100%;
}

.contact-card-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-card h2 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-sm);
}

.contact-note {
  color: var(--clr-text-mid);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
  line-height: 1.65;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: var(--sp-md);
}

.contact-map-btn {
  margin-top: 0.25rem;
}

.hours-full .hours-table {
  margin-block: var(--sp-md);
}

.hours-note {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  margin-top: var(--sp-sm);
  font-style: italic;
}


.contact-map-section {
  background: var(--clr-cream-dark);
}

.map-photo-wrap {
  position: relative;
  aspect-ratio: 21 / 7;
  min-height: 260px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .map-photo-wrap {
    aspect-ratio: 4 / 3;
  }
}

.map-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.72) saturate(0.85);
}

.map-address-badge {
  position: absolute;
  inset-block: 0;
  right: clamp(1rem, 8vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(30, 15, 5, 0.82);
  backdrop-filter: blur(6px);
  border-left: 3px solid var(--clr-gold);
  padding: var(--sp-md) var(--sp-lg);
  max-width: 300px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

@media (max-width: 600px) {
  .map-address-badge {
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 3px solid var(--clr-gold);
    inset-block: auto 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem var(--sp-sm);
    padding: var(--sp-sm) var(--sp-md);
  }
}

.map-address-badge .logo-icon {
  font-size: 1.2rem;
  color: var(--clr-gold);
}

.map-address-badge strong {
  font-family: var(--ff-display);
  font-size: var(--fs-sm);
  color: var(--clr-cream);
  line-height: 1.3;
  display: block;
}

.map-address-badge span {
  font-size: var(--fs-xs);
  color: rgba(248, 243, 236, 0.75);
  display: block;
}

.map-address-badge .btn {
  margin-top: var(--sp-xs);
}


.contact-ambience {
  padding-block: var(--sp-2xl);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}

/* pn-article-styles:begin */
.pn-article *,
.pn-article *::before,
.pn-article *::after {
  box-sizing: border-box;
}

.pn-article {
  width: min(100%, 740px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  padding-top: calc(var(--header-h, 72px) + var(--sp-lg, 3rem));
  padding-bottom: var(--sp-2xl, 8rem);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pn-article__head {
  margin-bottom: var(--sp-lg, 3rem);
  text-align: center;
}

.pn-article__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--clr-earth);
  line-height: 1.2;
  margin-bottom: var(--sp-sm, 1rem);
  overflow-wrap: break-word;
}

.pn-article__byline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: var(--sp-xs, 0.5rem);
}

.pn-article__hero {
  width: min(100%, 860px);
  margin-inline: auto;
  margin-bottom: var(--sp-lg, 3rem);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.pn-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.pn-article__hero .photo-credit {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  text-align: right;
  padding: 0.35em 0.75em;
  background: var(--clr-cream);
  letter-spacing: 0.04em;
}

.pn-article__body {
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.pn-article__body h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  font-weight: 600;
  color: var(--clr-earth);
  line-height: 1.2;
  margin-top: var(--sp-lg, 3rem);
  margin-bottom: var(--sp-sm, 1rem);
  overflow-wrap: break-word;
}

.pn-article__body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 400;
  color: var(--clr-earth-mid, #5c3d2e);
  line-height: 1.3;
  margin-top: var(--sp-md, 1.75rem);
  margin-bottom: var(--sp-xs, 0.5rem);
  overflow-wrap: break-word;
}

.pn-article__body p {
  margin-bottom: var(--sp-sm, 1rem);
  color: var(--clr-text);
  overflow-wrap: break-word;
}

.pn-article__body a {
  color: var(--clr-gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(184, 146, 74, 0.4);
  text-underline-offset: 2px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.pn-article__body a:hover,
.pn-article__body a:focus-visible {
  color: var(--clr-gold-dark);
  text-decoration-color: var(--clr-gold-dark);
  outline: none;
}

.pn-article__body ul,
.pn-article__body ol {
  margin-bottom: var(--sp-sm, 1rem);
  padding-left: 1.5em;
}

.pn-article__body ul {
  list-style: disc;
}

.pn-article__body ol {
  list-style: decimal;
}

.pn-article__body li {
  color: var(--clr-text);
  margin-bottom: 0.4em;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.pn-article__body figure {
  margin-block: var(--sp-lg, 3rem);
  margin-inline: 0;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pn-article__body figure figcaption {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  padding: 0.5em 0.75em;
  background: var(--clr-cream);
  text-align: center;
  letter-spacing: 0.03em;
}

.pn-article__body img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: initial;
  border-radius: var(--radius-sm, 6px);
  margin-block: var(--sp-sm, 1rem);
}

.pn-article__body blockquote {
  margin-block: var(--sp-lg, 3rem);
  margin-inline: 0;
  padding: var(--sp-md, 1.75rem) var(--sp-lg, 3rem);
  background: var(--clr-cream);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--radius-md, 12px);
  font-family: var(--ff-display);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 400;
  color: var(--clr-earth);
  line-height: 1.5;
  font-style: italic;
}

.pn-article__body blockquote p {
  margin-bottom: 0;
  color: inherit;
}

.pn-article__body svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}
/* pn-article-styles:end */
