/* ============================================================
   The Aesthetics House — Main Stylesheet
   Palette: #006d73 | #a7d0cc | #f2f5f4 | #ffffff
   Fonts:   Benedict (handwriting) | Montserrat (sans-serif)
   ============================================================ */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic-VariableFont_wght-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Benedict";
  src: url("../fonts/Benedict.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-sans: "Montserrat", sans-serif;
  --font-handwriting: "Benedict", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #f2f5f4;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: inside;
  text-indent: -12px;
  margin-left: 12px;
}

/* ── Typography ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.2;
  color: #006d73;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
h4 {
  font-size: 1.3rem;
}

.serif {
  font-family: var(--font-handwriting);
}

.handwriting {
  font-family: var(--font-handwriting);
}

p {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.text-teal {
  color: #006d73;
}
.mt-sm {
  margin-top: 1rem;
}
.mt-md {
  margin-top: 2rem;
}
.mt-lg {
  margin-top: 3rem;
}

.section-tag {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #006d73;
  margin-bottom: 0.75rem;
}

.divider {
  width: 50px;
  height: 1px;
  background: #a7d0cc;
  margin: 1.2rem auto;
}

.divider--left {
  margin: 1.2rem 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: #006d73;
  color: #ffffff;
}
.btn-primary:hover {
  background: #005a5f;
}

.btn-outline {
  background: transparent;
  color: #006d73;
  border: 1px solid #006d73;
}
.btn-outline:hover {
  background: #006d73;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #006d73;
}
.btn-white:hover {
  background: #f2f5f4;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Navigation ───────────────────────────────────────────── */
[data-shared-header] {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-nav {
  position: static;
  background: #F5F7F6;
  border-bottom: 1px solid #e8efee;
  backdrop-filter: blur(6px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: block;
  width: clamp(150px, 18vw, 220px);
  height: 100%;
  overflow: hidden;
  margin-bottom: 9px;
}

.nav-logo img {
  width: 150px;
  transform: scale(1);
  transform-origin: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin-left: 0;
  text-indent: 0;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2c2c2c;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #006d73;
}

.nav-links .nav-book {
  background: #006d73;
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}
.nav-links .nav-book:hover {
  background: #005a5f;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #006d73;
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #006d73 0%, #4a9e9a 45%, #a7d0cc 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 640px;
}

.hero-content .section-tag {
  color: rgba(255, 255, 255, 0.75);
}

.hero-content h1 {
  font-family: var(--font-handwriting);
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.is-hidden {
  display: none !important;
}

.text-white {
  color: #ffffff;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ── Page Header (inner pages) ────────────────────────────── */
.page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, #006d73 0%, #4a9e9a 100%);
  text-align: center;
  color: #ffffff;
}

.page-header h1 {
  color: #ffffff;
  font-style: italic;
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 1rem auto 0;
}

.page-header-tag {
  color: rgba(255, 255, 255, 0.7);
}

.treatments-nav-section {
  padding: 2.5rem 0 0;
  background: #f2f5f4;
}

.treatments-intro-bar {
  display: flex;
  gap: 1.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.treatment-nav-pill {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid #a7d0cc;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #006d73;
  transition: all 0.2s;
}

.treatment-nav-pill:hover {
  background: #006d73;
  color: #ffffff;
  border-color: #006d73;
}

.container-narrow {
  max-width: 760px;
}

.faq-list {
  margin-top: 2.5rem;
}

.faq-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ── Section Spacing ──────────────────────────────────────── */
.section {
  padding: 5rem 0;
}
.section-light {
  background: #ffffff;
}
.section-tinted {
  background: #f2f5f4;
}
.section-tealgrad {
    background: linear-gradient(135deg, #006d73 0%, #4a9e9a 45%, #a7d0cc 100%);
 color: #ffffff;
}

.about-container {
  padding: 1rem;
}

.about-heading {
  font-family: var(--font-handwriting);
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1.5rem;
}
.section-teal {
  background: #006d73;
  color: #ffffff;
}
.section-teal h2,
.section-teal h3 {
  color: #ffffff;
}
.section-teal .section-tag {
  color: #a7d0cc;
}
.section-teal .divider {
  background: rgba(255, 255, 255, 0.3);
}

/* ── Section Intro ────────────────────────────────────────── */
.section-intro {
  max-width: 580px;
}
.section-intro.centered {
  margin: 0 auto;
  text-align: center;
}
.section-intro p {
  color: #555;
  font-size: 0.95rem;
}
.section-teal .section-intro p {
  color: rgba(255, 255, 255, 0.8);
}

/* ── About Snippet (homepage) ─────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #a7d0cc 0%, #006d73 100%);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

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

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 160px;
  height: 160px;
  background: #a7d0cc;
  opacity: 0.3;
  z-index: -1;
  border-radius: 2px;
}

.about-text .section-tag {
  margin-top: 0;
}
.about-text a {
  color: white;
  /* color: #006d73; */
  border-bottom: 1px solid #a7d0cc;
}
.about-text a:hover {
  /* color: #005a5f; */
  color: white;
}

/* ── Treatment Cards ──────────────────────────────────────── */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.treatment-card {
  background: #ffffff;
  border: 1px solid #e8efee;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 109, 115, 0.12);
}

.treatment-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
}

.treatment-card-image-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.treatment-card-image-inner > span {
  position: absolute;
  left: -9999px;
}

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

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

.treatment-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.treatment-card-placeholder.lip {
  background: linear-gradient(135deg, #006d73, #3d9499);
}
.treatment-card-placeholder.dermal {
  background: linear-gradient(135deg, #4a9e9a, #a7d0cc);
}
.treatment-card-placeholder.botox {
  background: linear-gradient(135deg, #2d7d82, #7bbbb7);
}

.treatment-card-body {
  padding: 1.6rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.treatment-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.treatment-card-body p {
  font-size: 0.88rem;
  color: #666;
  flex-grow: 1;
}

.treatment-card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #006d73;
}

.treatment-card-body .card-link::after {
  content: "→";
  transition: transform 0.2s;
}
.treatment-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-top: 3px solid #a7d0cc;
  position: relative;
}

.testimonial-stars {
  color: #a7d0cc;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 1.2rem;
}

.testimonial-card blockquote::before {
  content: "\201C";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.7rem;
  color: #a7d0cc;
  margin-right: 0.1em;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #006d73;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  text-align: left;
}

.contact-intro {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: #a7d0cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail-text {
  font-size: 0.88rem;
  color: #555;
}
.contact-detail-text strong {
  display: block;
  color: #2c2c2c;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #006d73;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d0dedd;
  background: #ffffff;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: #2c2c2c;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #006d73;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #f0f9f8;
  border: 1px solid #a7d0cc;
  padding: 1.5rem;
  text-align: center;
  color: #006d73;
  font-family: var(--font-sans);
  font-size: 1.2rem;
}

/* ── Location Map ─────────────────────────────────────────── */
.location-section .map-container {
  margin-top: 3rem;
  height: 360px;
  background: #a7d0cc;
  overflow: hidden;
}

.location-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) hue-rotate(140deg) saturate(0.7);
}

.location-section .map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a7d0cc, #006d73);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* ── About Page ───────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-story-text {
}
.about-story-aside {
}

.qualification-card {
  background: #f2f5f4;
  border-left: 3px solid #006d73;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.qualification-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.qualification-card p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
}

.terms-card {
  background: #ffffff;
  border: 1px solid #e8efee;
  padding: 2rem;
  margin-top: 1.5rem;
}

.terms-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.terms-card p,
.terms-card li {
  font-size: 0.88rem;
  color: #555;
  margin-bottom: 0.6rem;
}
.terms-card ul {
  padding-left: 1rem;
}
.terms-card ul li::before {
  content: "–";
  margin-right: 0.5rem;
  color: #a7d0cc;
}

/* ── Treatments Page ──────────────────────────────────────── */
.treatment-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid #e8efee;
}

.treatment-detail:last-child {
  border-bottom: none;
}
.treatment-detail:nth-child(even) {
  direction: rtl;
}
.treatment-detail:nth-child(even) > * {
  direction: ltr;
}

.treatment-detail-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.treatment-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-detail-image .placeholder {
  width: 100%;
  height: 100%;
}

.treatment-meta {
  margin-top: 2rem;
}

.treatment-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.treatment-fact {
  background: #ffffff;
  padding: 1rem;
  border: 1px solid #e8efee;
}

.section-tinted .treatment-fact {
  background: #f2f5f4;
}

.treatment-fact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a7d0cc;
  margin-bottom: 0.3rem;
}

.treatment-fact-value {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #006d73;
}

.btn-fixed-width {
  width: 230px;
}

.treatment-detail-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.treatment-detail-content .price-from {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7d0cc;
  margin-bottom: 1.2rem;
  display: block;
}

.treatment-detail-content p,
ul {
  font-size: 0.92rem;
  color: #555;
}

.faq-item {
  border-bottom: 1px solid #e8efee;
  padding: 1rem 0;
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #006d73;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  font-size: 0.9rem;
  color: #555;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── Booking Page ─────────────────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-panel {
  background: #ffffff;
  border: 1px solid #e8efee;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.booking-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8efee;
}

/* Treatment checkboxes */
.treatment-category {
  margin-bottom: 2rem;
}
.treatment-category h4 {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a7d0cc;
  margin-bottom: 0.8rem;
}

.treatment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f2f5f4;
  cursor: pointer;
  transition: background 0.15s;
}

.treatment-option:last-child {
  border-bottom: none;
}
.treatment-option:hover {
  padding-left: 0.5rem;
}

.treatment-option-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.treatment-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid #a7d0cc;
  border-radius: 0;
  cursor: pointer;
  accent-color: #006d73;
  flex-shrink: 0;
}

.treatment-option-name {
  font-size: 0.9rem;
  color: #2c2c2c;
}

.treatment-option-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #006d73;
}

/* Price total */
.price-total {
  background: #f2f5f4;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.price-total-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
}

.price-total-amount {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: #006d73;
}

/* Calendar */
.calendar {
  margin-top: 0.5rem;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7d0cc;
  padding: 0.4rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  background: #ffffff;
  position: relative;
}

.cal-day .day-num {
  font-weight: 300;
}
.cal-day .day-label {
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 1px;
}

.cal-day.today {
  border-color: #a7d0cc;
  background: #f0faf9;
}

.cal-day.today .day-label {
  color: #006d73;
}

.cal-day.past,
.cal-day.booked,
.cal-day.weekend {
  color: #ccc;
  cursor: not-allowed;
  background: #f9f9f9;
}

.cal-day.past .day-label,
.cal-day.booked .day-label {
  color: #ccc;
}

.cal-day.booked .day-label {
  content: "Booked";
}

.cal-day.available:hover {
  border-color: #006d73;
  background: #f0faf9;
}

.cal-day.selected {
  border-color: #006d73;
  background: #006d73;
  color: #ffffff;
}

.cal-day.selected .day-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Booking sidebar */
.booking-summary {
  background: #006d73;
  padding: 2rem;
  color: #ffffff;
  position: sticky;
  top: 100px;
}

.booking-summary h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.summary-item:last-of-type {
  border-bottom: none;
}

.summary-item strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-total {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.summary-total-amount {
  font-family: var(--font-sans);
  font-size: 2.4rem;
}

.booking-location-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.booking-location-note strong {
  display: block;
  color: #a7d0cc;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

#pay-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.pay-notice {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ── Thank You Page ───────────────────────────────────────── */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: #a7d0cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: #006d73;
}

.thank-you-section h1 {
  font-style: italic;
  margin-bottom: 1rem;
}
.thank-you-section p {
  color: #555;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #016c71;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-logo {
  display: block;
  width: min(150px, 100%);
  margin-bottom: 1rem;
  overflow: hidden;
  /* background: #ffffff; */
}

.footer-logo img {
  width: 100%;
  transform: scale(1);
}

.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h5 {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #a7d0cc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Booking Button Dropdown ──────────────────────────────── */
.booking-btn-wrapper {
  position: relative;
  display: inline-block;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: #006d73;
  color: #ffffff;
  transition: all 0.25s ease;
}

.booking-btn:hover {
  background: #005a5f;
}

.booking-btn.booking-btn-active {
  background: #005a5f;
}

.booking-btn::after {
  content: "▼";
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.booking-btn.booking-btn-active::after {
  transform: rotate(180deg);
}

.booking-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e8efee;
  border-top: none;
  min-width: 280px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.booking-dropdown-open {
  max-height: 500px;
  opacity: 1;
}

.booking-dropdown-item {
  display: block;
  padding: 1.2rem;
  border-bottom: 1px solid #e8efee;
  text-decoration: none;
  color: #006d73;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.booking-dropdown-item:last-child {
  border-bottom: none;
}

.booking-dropdown-item:hover {
  background: #f2f5f4;
  padding-left: 1.5rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 760px) {
  .about-split,
  .contact-split,
  .about-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .treatment-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 540px;
  }
  .treatment-detail:nth-child(even) {
    direction: ltr;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 320px) {
  .nav-inner {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 0.5rem 0 0.75rem;
    text-align: center;
  }
  [data-shared-header] {
  position: relative;}

  .nav-links {
    margin: 0.5rem auto 0;
    
  }

  .nav-logo {
    width: 150px;
    height: auto;
    margin: 0 auto;
  }

  .nav-logo img {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 490px) {
.nav-links {
  display: block;
  /* flex-direction: column; */
  /* position: fixed; */
  /* inset: 72px 0 0 0; */
  /* background: #ffffff; */
  /* padding: 2rem; */
  /* gap: 1.5rem; */
  /* z-index: 999; */
}
.nav-links.open {
  /* display: flex; */
}
.nav-toggle {
  /* display: flex; */
}}
@media (max-width: 680px) {
  .section {
    padding: 3.5rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .booking-panel {
    padding: 1.5rem;
  }
}

strong {
  font-weight: 500;
}

footer ul {
  list-style: none;
  text-indent: 0;
  margin-left: 0;
}
