:root {
  --cream: #fbf7f1;
  --cream-2: #f5efe7;
  --paper: #fffdfa;
  --rose: #d79494;
  --rose-soft: #ead0cb;
  --gold: #c7a85d;
  --gold-dark: #9e7f38;
  --ink: #302b28;
  --ink-soft: #6f6660;
  --olive: #4f5c4a;
  --line: rgba(48, 43, 40, 0.13);
  --shadow: 0 24px 60px rgba(57, 42, 34, 0.10);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 88px; 
}

body { 
  margin: 0; 
  font-family: var(--sans); 
  color: var(--ink); 
  background: var(--cream); 
  line-height: 1.65; 
  -webkit-font-smoothing: antialiased; 
}

img { 
  display: block; 
  max-width: 100%; 
}

a { 
  color: inherit; 
  text-decoration: none;
}

button, input, textarea { 
  font: inherit; 
}

::selection { 
  background: var(--rose-soft); 
  color: var(--ink); 
}

/* ===== Header / Navigation ===== */
.site-header { 
  position: fixed; 
  top: 0; 
  left: 0;
  right: 0;
  z-index: 1000; 
  background: rgba(251,247,241,.92); 
  backdrop-filter: blur(16px); 
  border-bottom: 1px solid rgba(48,43,40,.08);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.site-header.show { 
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-back-link {
  display: none;
}

.nav-shell { 
  max-width: 1240px; 
  margin: 0 auto; 
  min-height: 78px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 2rem; 
  padding: 0 28px; 
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  cursor: pointer;
}

.brand-mark { 
  width: 44px; 
  height: 44px; 
  border-radius: 0; 
  object-fit: contain;
  background: transparent;
}

.brand-text { 
  display: grid; 
  line-height: 1.05; 
}

.brand-text strong { 
  font-family: var(--serif); 
  font-size: 1.05rem; 
  font-weight: 500; 
  letter-spacing: .05em; 
}

.brand-text small { 
  margin-top: 5px; 
  text-transform: uppercase; 
  letter-spacing: .16em; 
  font-size: .63rem; 
  color: var(--gold-dark); 
}

.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 1.65rem; 
}

.main-nav a { 
  text-decoration: none; 
  font-size: .9rem; 
  color: var(--ink-soft); 
  transition: color .2s ease; 
}

.main-nav a:hover { 
  color: var(--gold-dark); 
}

.main-nav a i { 
  font-size: 1.1rem;
}

.main-nav .nav-cta { 
  padding: 10px 16px; 
  border: 1px solid var(--gold); 
  color: var(--ink); 
  border-radius: 999px; 
}

.menu-toggle { 
  display: none; 
  border: 0; 
  background: transparent; 
  padding: 10px 8px; 
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: auto;
  height: auto;
}

.menu-toggle span { 
  display: block; 
  width: 32px;
  height: 4px;
  margin: 6px 0; 
  background: var(--ink); 
  border-radius: 2px;
  transition: .25s ease; 
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero { 
  background: linear-gradient(135deg, #F2F0EC 0%, #E8E3DB 25%, #F2F0EC 50%, #FAF7F0 75%, #F2F0EC 100%);
  background-size: 400% 400%;
  padding: 4rem 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 187, 119, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(185, 152, 72, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(232, 227, 219, 0.3) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.logo-hero {
  margin-bottom: 2rem;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-hero img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.logo-hero h1 {
  font-size: 5.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-weight: 300;
  margin: 0;
  display: none;
}

.logo-hero p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 0.8rem;
  font-weight: 600;
  display: none;
}

.logo-hero span {
  font-size: 1.1rem;
  display: none;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ===== Hero Gallery ===== */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== Quote Section ===== */
.quote-section {
  margin-top: 2rem;
  padding: 2rem;
  background-color: var(--paper);
  border-left: 4px solid var(--gold);
  border-radius: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.quote-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Menu Navigation ===== */
.menu-navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 1.5rem auto;
  position: relative;
  z-index: 100;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.menu-navigation.hide {
  opacity: 0;
  visibility: hidden;
}

.menu-item {
  padding: 1.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(232, 227, 219, 0.5);
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.menu-item:last-child {
  border-right: none;
}

.menu-item:hover {
  background-color: var(--cream-2);
  transform: translateY(-2px);
}

.menu-item i {
  color: var(--gold);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.3rem;
}

.menu-item a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: color 0.3s ease;
  display: block;
}

.menu-item:hover a {
  color: var(--gold-dark);
}

/* ===== Treatments Section ===== */
.treatments {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
}

.treatments h2 {
  font-size: 2.5rem;
  color: var(--ink);
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.treatment-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

.treatment-item:last-child {
  border-bottom: none;
}

.treatment-item-reverse {
  grid-template-columns: 1fr 1fr;
}

.treatment-item-reverse .treatment-image {
  order: -1;
}

.treatment-content {
  padding: 1rem 0;
}

.treatment-content h3 {
  color: var(--ink);
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
}

.treatment-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.treatment-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-text {
  font-size: 1rem !important;
  color: var(--ink-soft) !important;
  margin-top: 1rem !important;
  padding-top: 0 !important;
}

/* ===== Pricing Section ===== */
.pricing { 
  max-width: 1320px;
  padding-bottom: 20px !important;
}

.section { 
  max-width: 1240px; 
  margin: 0 auto; 
  padding: clamp(40px, 5vw, 80px) 28px; 
}

.section-heading { 
  max-width: 740px; 
  margin-bottom: 52px; 
}

.eyebrow { 
  margin: 0 0 15px; 
  color: var(--gold-dark); 
  text-transform: uppercase; 
  letter-spacing: .19em; 
  font-size: .72rem; 
  font-weight: 650; 
}

h1, h2, h3 { 
  font-family: var(--serif); 
  font-weight: 400; 
  line-height: 1.08; 
  margin-top: 0; 
}

h2 { 
  font-size: clamp(2.4rem, 4vw, 4.5rem); 
  letter-spacing: -.025em; 
  margin-bottom: 24px; 
}

.section-heading p:last-child { 
  color: var(--ink-soft); 
  font-size: 1.05rem; 
}

.price-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 22px; 
  align-items: start; 
}

.price-card { 
  position: relative; 
  background: var(--paper); 
  padding: 32px 28px; 
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(57, 42, 34, .06); 
}

.featured-price {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}

.price-kicker { 
  margin: 0 0 8px; 
  color: var(--gold-dark); 
  text-transform: uppercase; 
  letter-spacing: .19em; 
  font-size: .65rem; 
  font-weight: 700; 
}

.price-card h3 { 
  font-family: var(--serif); 
  font-size: 1.55rem; 
  margin: 0 0 24px; 
  font-weight: 400;
}

.price-row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 12px 0; 
  border-bottom: 1px solid var(--line); 
}

.price-row:last-of-type { 
  border-bottom: none; 
}

.price-row span { 
  font-size: 0.9rem; 
  color: var(--ink-soft); 
}

.price-row strong { 
  color: var(--gold-dark); 
  font-weight: 600; 
}

.price-subtitle { 
  padding: 18px 0 12px; 
  margin-top: 12px; 
  font-size: 0.75rem; 
  letter-spacing: .16em; 
  text-transform: uppercase; 
  color: var(--gold-dark); 
  font-weight: 700; 
  border-top: 1px solid var(--line); 
}

.pricing-note { 
  margin-top: 24px; 
  padding: 18px 22px; 
  border: 1px solid var(--line); 
  color: var(--ink-soft); 
  font-size: 0.88rem;
  text-align: center;
}

/* ===== About Section ===== */
.about { 
  display: grid; 
  grid-template-columns: 1.03fr .97fr; 
  align-items: center; 
  gap: clamp(52px, 8vw, 110px); 
}

.about-photo { 
  position: relative; 
}

.about-photo::before { 
  display: none;
}

.about-photo img { 
  width: 100%; 
  aspect-ratio: 4/5; 
  object-fit: cover; 
  box-shadow: var(--shadow); 
}

.about-copy p { 
  color: var(--ink-soft); 
  text-align: left;
}

.intro { 
  font-size: clamp(1.08rem, 1.4vw, 1.26rem); 
  color: var(--ink-soft); 
  max-width: 660px; 
}

.signature {
  font-family: "Allura", cursive !important;
  font-size: 3rem !important;
  color: var(--gold-dark) !important;
  margin-top: 2rem !important;
  font-weight: 400 !important;
  text-align: left !important;
  letter-spacing: 1px !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ===== Contact Section ===== */
.contact { 
  display: flex; 
  flex-direction: column;
}

.contact-card { 
  padding: clamp(38px, 6vw, 72px); 
  background: var(--gold-dark); 
  display: grid; 
  grid-template-columns: 1fr 0.9fr; 
  gap: clamp(36px, 6vw, 80px); 
  align-items: center;
  border-radius: 12px;
}

.contact-card > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card h2 { 
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  color: var(--cream);
}

.contact-card p { 
  color: var(--cream-2); 
}

.contact-actions { 
  display: grid; 
}

.contact-link { 
  text-decoration: none; 
  display: grid; 
  grid-template-columns: 90px 1fr; 
  gap: 14px; 
  padding: 18px 0; 
  border-bottom: 1px solid rgba(48, 43, 40, 0.18);
}

.contact-link:last-child {
  border-bottom: none;
}

.contact-link:hover {
  transform: none;
}

.contact-link span { 
  text-transform: uppercase; 
  letter-spacing: 0.14em; 
  font-size: 0.66rem; 
  color: var(--cream); 
  padding-top: 3px;
}

.contact-link strong { 
  font-weight: 550; 
  word-break: break-word; 
  color: var(--cream);
}

/* ===== Map Section ===== */
.map-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 82px 28px;
}

.map-section h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  letter-spacing: -.025em;
  margin-bottom: 52px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

.map-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-info {
  max-width: 600px;
}

.map-info h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 24px 0 12px;
  font-weight: 500;
}

.map-info p {
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-info i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--cream-2);
  color: var(--ink);
  padding: 0;
}

.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 35px 28px;
}

.footer-left {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
}

.footer-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  padding-right: 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-brand:hover {
  opacity: 0.8;
}

.footer-brand img {
  width: 160px;
  height: 160px;
  border-radius: 0px;
  object-fit: contain;
}

.footer-brand span {
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--ink);
}

.footer-main > p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  transition: color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links i {
  color: var(--gold);
  font-size: 1rem;
}

.footer-bottom {
  padding-top: 12px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--ink-soft);
}

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .gallery-image {
    height: 200px;
  }

  .treatment-item {
    gap: 2rem;
  }

  .menu-navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    position: sticky;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-shell {
    padding: 0 16px;
    min-height: 60px;
    gap: 1rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text small {
    font-size: 0.55rem;
  }

  /* Mobile menu styles are in style-carousel.css - removed duplicates to avoid conflicts */

  .price-grid {
    grid-template-columns: 1fr;
  }

  .featured-price {
    transform: scale(1);
  }

  .treatment-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .treatment-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .treatment-item-reverse .treatment-image {
    order: 0;
  }

  .contact-card {
    padding: 32px 20px;
  }

  .hero-gallery {
    gap: 0.8rem;
  }

  .gallery-image {
    height: 140px;
  }

  .logo-hero h1 {
    font-size: 2.8rem;
  }

  .logo-hero p {
    font-size: 0.9rem;
  }

  .treatments {
    padding: 2rem 1rem;
  }

  .treatments h2 {
    margin-bottom: 1rem;
  }

  .section {
    padding: 35px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-left {
    justify-content: center;
    padding-left: 0;
  }

  .footer-right {
    align-items: center;
    padding-right: 0;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-bottom {
    padding: 15px 20px 22px;
  }

  .map-section {
    padding: 60px 20px;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-navigation {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem auto;
  }

  .menu-item {
    padding: 0.8rem 0.5rem;
  }

  .menu-item i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .menu-item a {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    padding: 0 12px;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-navigation {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote {
    font-size: 0.9rem;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .about-photo::before {
    inset: -12px 12px 12px -12px;
  }

  .map-container iframe {
    height: 300px !important;
  }

  .contact-card {
    padding: 20px 12px;
  }

  .section {
    padding: 25px 12px;
  }

  .contact-link {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ===== Legal Pages ===== */
.legal-warning {
  background: var(--rose-soft);
  color: var(--ink);
  padding: 20px 28px;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.legal-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 80px 90px;
  text-align: center;
}

.legal-page h1 {
  font-family: var(--sans);
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}

.legal-page h2 {
  font-family: var(--sans);
  font-size: 0.95rem;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  text-align: center;
}

.legal-content p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 0.9rem;
  text-align: center;
}

.legal-content ul {
  margin-bottom: 1.2rem;
  padding-left: 20px;
  text-align: center;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.9rem;
}

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  transition: color 0.2s ease;
  text-align: center;
}

.legal-content a:hover {
  color: var(--gold);
}

.legal-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem auto;
  text-align: center;
}

.legal-content table th,
.legal-content table td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.legal-content table th {
  background-color: var(--cream-2);
  font-weight: 600;
}

.legal-page + .footer {
  margin-top: 0;
}

@media (max-width: 768px) {
  .mobile-back-link {
    display: inline-block !important;
  }

  .legal-page {
    padding: 30px 20px 60px;
    text-align: center;
  }

  .legal-page h1 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  .legal-page h2 {
    font-size: 0.9rem;
    margin-top: 1.3rem;
    margin-bottom: 0.6rem;
    text-align: center;
  }

  .legal-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-left {
    justify-content: center;
    padding-left: 0;
  }

  .footer-right {
    align-items: center;
    padding-right: 0;
  }

  .footer-brand {
    justify-content: center;
    gap: 8px;
  }

  .footer-brand img {
    width: 120px;
    height: 120px;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-bottom {
    padding: 15px 20px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { 
    scroll-behavior: auto; 
  }
  *, *::before, *::after { 
    animation-duration: .01ms !important; 
    animation-iteration-count: 1 !important; 
    transition-duration: .01ms !important; 
  }
  .reveal { 
    opacity: 1; 
    transform: none; 
  }
}
