/* Sanctuary Spa Menu - Clean Professional Layout */
:root {
  --bg: #F7F3EE;
  --bg-alt: #EFE7DF;
  --text-dark: #2E2A28;
  --text-body: #4B413A;
  --text-muted: #81736A;
  --accent: #6B523F;
  --gold: #A0856F;
  --rose: #C99E97;
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(160, 136, 112, 0.18);
  --divider-bg: rgba(80, 48, 32, 0.95);
  --divider-text: #D9CABE;
  --container: 1120px;
  --section-space: clamp(3.5rem, 7vw, 6.5rem);
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #F7F3EE 0%, #ECE6DE 100%);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  min-width: 320px;
}
a { color: inherit; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  background: rgba(80, 48, 32, 0.94);
  backdrop-filter: blur(12px);
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav::-webkit-scrollbar { display: none; }
.nav-item {
  flex: 1;
  min-width: 76px;
  padding: .9rem .55rem;
  text-align: center;
  text-decoration: none;
  color: var(--divider-text);
  font-size: .68rem;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.nav-item.active { color: #d9d6d3; border-bottom-color: var(--gold); }
.nav-item:hover { color: #c3c1be; background: rgba(255,255,255,.055); }
.nav-spacer { height: 54px; }

/* HERO */
.hero {
  margin-top: 54px;
  position: relative;
  min-height: calc(100vh - 54px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg'), url('images/page_1.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(.78) contrast(.9);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,243,238,.42), rgba(245,238,231,.76) 48%, rgba(240,232,224,.96));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(92%, 860px);
  padding: 2rem 1.25rem;
  animation: heroFade 1s ease both;
}
@keyframes heroFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-logo { display: block; width: min(300px, 70vw); height: auto; margin: 0 auto 1.4rem; }
.hero-floral { font-size: 1.15rem; color: var(--gold); margin-bottom: 1.35rem; opacity: .72; }
.hero-tagline { font-family: Georgia, serif; font-size: clamp(.75rem, 2vw, 1rem); font-style: italic; letter-spacing: 4px; color: var(--gold); margin-bottom: 1.4rem; }
.hero-title { font-family: Georgia, serif; font-size: clamp(2.5rem, 10vw, 6rem); font-weight: 300; letter-spacing: clamp(8px, 4vw, 24px); text-transform: uppercase; color: var(--text-dark); line-height: 1.05; }
.hero-divider { display: flex; align-items: center; justify-content: center; gap: .75rem; margin: 1.5rem auto; max-width: 300px; }
.hero-divider span:first-child, .hero-divider span:last-child { flex: 1; height: 1px; background: var(--gold); opacity: .42; }
.hero-divider span:nth-child(2) { font-size: .7rem; color: var(--gold); opacity: .65; }
.hero-subtitle { font-size: clamp(.65rem, 1.5vw, .85rem); letter-spacing: clamp(4px, 1.5vw, 8px); text-transform: uppercase; color: var(--accent); margin-bottom: .45rem; }
.hero-location { font-size: clamp(.55rem, 1.2vw, .7rem); letter-spacing: clamp(3px, 1vw, 5px); text-transform: uppercase; color: var(--text-muted); margin-bottom: 2.3rem; }
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(.66rem, 1.2vw, .75rem);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  padding: .92rem 2.1rem;
  border: 1px solid rgba(46,42,40,.9);
  background: rgba(255,255,255,.86);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.hero-cta:hover { transform: translateY(-1px); background: var(--text-dark); color: var(--bg); }

/* PAGE RHYTHM */
.menu-section,
.section {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: var(--section-space) 0;
  background: transparent;
  position: relative;
}
.section + .section { border-top: 1px solid rgba(160,136,112,.14); }
.section.alt { background: transparent; }

.section-title,
.menu-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(1.7rem, 4vw, 2.8rem);
}
.sub-title {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28rem;
  font-size: .75rem;
  margin-bottom: .75rem;
}
.section-title h2,
.menu-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 3.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.section-title .section-sub,
.menu-header p {
  font-size: clamp(.78rem, 1.7vw, .95rem);
  font-style: italic;
  color: var(--text-muted);
  max-width: 570px;
  margin: 0 auto;
  line-height: 1.6;
}
.menu-header::after,
.section-title::after {
  content: "";
  width: 70px;
  height: 1px;
  display: block;
  margin: 1.05rem auto 0;
  background: rgba(160,136,112,.55);
}
.intro-text {
  font-family: Georgia, serif;
  font-size: clamp(.82rem, 1.7vw, .98rem);
  font-style: italic;
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto clamp(1.3rem, 3vw, 2.2rem);
  line-height: 1.75;
}

/* IMAGES */
.section-img,
.section-img-full {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid rgba(160,136,112,.14);
  background: rgba(255,255,255,.2);
}
.section-img {
  height: clamp(240px, 36vw, 420px);
  margin: 0 auto clamp(1.6rem, 3vw, 2.4rem);
}

/* DIVIDERS */
.section-divider {
  min-height: clamp(310px, 44vw, 460px);
  padding: clamp(3.8rem, 7vw, 5.8rem) 1.5rem;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--divider-text);
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40,24,16,.28);
}
.section-divider > * { position: relative; z-index: 1; }
.section-divider > span { display: inline-block; color: var(--gold); margin-bottom: .6rem; opacity: .85; }
.section-divider .sec-title {
  font-size: clamp(.9rem, 2vw, 1.16rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--divider-text);
  margin: .9rem 0 .5rem;
}
.section-divider .sec-sub {
  font-family: Georgia, serif;
  font-size: clamp(.74rem, 1.8vw, .9rem);
  font-style: italic;
  color: var(--gold);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* CONTENTS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.7rem);
  align-items: start;
}
.menu-section > .menu-grid > .menu-card {
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  border: 1px solid rgba(160,136,112,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.45);
}
.menu-section .menu-card ul { list-style: none; display: grid; gap: .25rem; }
.menu-section .menu-card li {
  position: relative;
  padding: .42rem 0 .42rem 1rem;
  color: var(--text-body);
  font-size: clamp(.78rem, 1.5vw, .87rem);
}
.menu-section .menu-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 1.05rem;
}

/* MENU ITEMS - CLEAN, NOT CLUTTERED */
.menu-card {
  position: relative;
  padding: clamp(1rem, 2vw, 1.35rem) 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.section > .menu-card + .menu-card { border-top: 1px solid rgba(160,136,112,.16); }
.menu-card h3 {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .35rem;
  line-height: 1.35;
}
.card-desc {
  font-size: clamp(.75rem, 1.5vw, .84rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: .34rem;
}
.card-detail {
  font-size: clamp(.78rem, 1.5vw, .88rem);
  color: var(--text-body);
  line-height: 1.72;
  margin-bottom: .35rem;
  max-width: 74ch;
}
.card-note {
  font-size: clamp(.65rem, 1.2vw, .74rem);
  color: var(--text-muted);
  margin-top: .35rem;
  font-style: italic;
}
.menu-card.featured {
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
  border: 1px solid rgba(160,136,112,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.44);
}
.menu-card.small-card { padding: clamp(.95rem, 2vw, 1.2rem) 0; }
.menu-card.small-card h3 { font-size: clamp(.92rem, 1.7vw, 1.06rem); }

.card-meta {
  border-top: 1px solid rgba(160,136,112,.13);
  padding-top: .55rem;
  margin-top: .62rem;
}
.card-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .26rem 0;
}
.price {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.price::before { content: none; }
.price:not(:empty)::first-letter { }
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin: .72rem 0 .1rem;
}
.card-tags span,
.addon-grid span {
  font-size: clamp(.6rem, 1.1vw, .68rem);
  letter-spacing: .85px;
  text-transform: uppercase;
  color: var(--accent);
  padding: .36rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(160,136,112,.15);
  background: rgba(255,255,255,.38);
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin-top: .65rem;
}
.addon-grid span { border-radius: 12px; line-height: 1.5; }
.addon-grid em { color: var(--gold); font-style: normal; margin: 0 .15rem; }

/* DESKTOP: SIMPLE PROFESSIONAL SPLIT */
@media (min-width: 900px) {
  body { font-size: 17px; }
  .section {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
    column-gap: clamp(2.2rem, 5vw, 4.5rem);
    align-items: start;
  }
  .section.alt { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); }
  .section > .section-img {
    grid-row: 1 / span 16;
    margin: 0;
    position: sticky;
    top: 76px;
    height: min(66vh, 540px);
  }
  .section.alt > .section-img { grid-column: 2; }
  .section.alt > .section-title,
  .section.alt > .intro-text,
  .section.alt > .menu-card { grid-column: 1; }
  .section-title,
  .intro-text { text-align: left; margin-left: 0; margin-right: 0; }
  .section-title::after { margin-left: 0; }
  .intro-text { max-width: 100%; }
  .section > .menu-card.small-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.25rem;
    align-items: start;
  }
  .section > .menu-card.small-card h3,
  .section > .menu-card.small-card .card-detail { grid-column: 1; }
  .section > .menu-card.small-card .card-meta { grid-column: 2; grid-row: 1 / span 3; min-width: 90px; margin-top: 0; text-align: right; }
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, rgba(80,48,32,.96), rgba(61,39,28,.96));
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: clamp(6px, 2vw, 12px);
  text-transform: uppercase;
  color: var(--divider-text);
  margin-bottom: .5rem;
}
.footer .tagline { font-family: Georgia, serif; font-size: clamp(.7rem, 1.6vw, .85rem); font-style: italic; letter-spacing: 3px; color: var(--gold); margin-bottom: 2rem; }
.contact-info p { font-size: clamp(.78rem, 1.6vw, .9rem); color: var(--divider-text); margin-bottom: .5rem; letter-spacing: .5px; }
.contact-info a { color: var(--rose); text-decoration: none; transition: color .2s; }
.contact-info a:hover { color: #E0C0C0; }
.footer-disclaimer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(208,192,176,.15); }
.footer-disclaimer p { font-size: clamp(.55rem, 1.2vw, .65rem); color: rgba(208,192,176,.5); letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .menu-section,
  .section { width: min(calc(100% - 1.4rem), var(--container)); padding-block: clamp(3rem, 12vw, 4.5rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .section-img { height: clamp(220px, 70vw, 335px); }
  .section-divider { min-height: 300px; }
  .section > .menu-card.small-card { display: block; }
  .section > .menu-card.small-card .card-meta { text-align: left; min-width: 0; }
  .addon-grid { grid-template-columns: 1fr; }
  .nav-item { min-width: 82px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
/* Mobile Navigation */
@media (max-width:768px){

.nav{
    position:fixed;
    left:12px;
    right:12px;
    bottom:16px;
    top:auto;
    border-radius:50px;
    padding:8px;
    background:rgba(80,48,32,.92);
    backdrop-filter:blur(18px);
    justify-content:space-between;
    overflow-x:auto;
    box-shadow:0 10px 35px rgba(0,0,0,.22);
}

.nav-item{
    flex:none;
    min-width:auto;
    padding:10px 16px;
    font-size:11px;
    letter-spacing:1px;
    border-radius:30px;
    border-bottom:none;
}

.nav-item.active{
    background:#A0856F;
    color:#fff;
}

.nav-spacer{
    display:none;
}

}
.nav{
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(160,136,112,.18);
}

.nav-item{
    color:#6B523F;
    font-size:12px;
}

.nav-item.active{
    color:#A0856F;
    border-bottom:2px solid #A0856F;
}
@media (max-width:768px){

.hero-title{
    font-size: clamp(2rem, 13vw, 3.4rem);
    letter-spacing: 6px;
    line-height: 1.1;
    width:100%;
    text-align:center;
    white-space:normal;
}

}
.hero-title{
    letter-spacing:3px;
    font-size:clamp(2rem,11vw,3.2rem);
}
.hero-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    border:1px solid #2E2A28;
    background:transparent;
    color:#2E2A28;
    text-decoration:none;
    transition:all .3s ease;
}

.hero-cta:hover{
    background:rgba(46,42,40,0.08);
    color:#2E2A28;
}

.hero-cta:active,
.hero-cta:focus,
.hero-cta:visited{
    background:transparent;
    color:#2E2A28;
    outline:none;
    box-shadow:none;
}
.hero-cta,
.nav-item{
    -webkit-tap-highlight-color: transparent;
}

.hero-cta:focus-visible,
.nav-item:focus-visible{
    outline: none;
}
/* Remove active background */
.nav-item.active{
    background: transparent !important;
    color: #6B523F; /* or your preferred text color */
    border-bottom: 2px solid #A0856F; /* Optional: keep only the underline */
}
.nav-item,
.nav-item:focus,
.nav-item:active,
.nav-item:visited{
    background: transparent !important;
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}