
:root {
  --sand: #E8DCC8;
  --sand-lt: #F2E9D8;
  --sand-dk: #C9B894;
  --terra: #B96D4A;
  --terra-lt: #D4906D;
  --terra-dk: #8F4E32;
  --clay: #9B7862;
  --cream: #FAF5EC;
  --bone: #F8F0DE;
  --char: #2E241C;
  --text: #3D2E22;
  --muted: #8A7562;
  --border: #DDCFB4;
  --sage: #7A8968;
  --sage-lt: #96A283;
  --radius: 4px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px; line-height: 1.65;
}

/* DEMO BANNER */
.demo-banner {
  background: #1C2D4F; border-bottom: 1px solid rgba(42,111,212,0.4);
  padding: 10px 2rem; text-align: center; font-size: 14px;
  color: rgba(220,230,248,0.9); display: flex; align-items: center;
  justify-content: center; gap: 12px; flex-wrap: wrap;
}
.demo-banner strong { color: #7EB8F7; }
.demo-banner a {
  background: #2A6FD4; color: #fff; text-decoration: none;
  padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600;
}

/* NAV */
nav {
  background: var(--cream);
  padding: 1.25rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 22px;
  box-shadow: 0 4px 15px rgba(185,109,74,0.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--char); letter-spacing: 0.01em;
}
.brand-name em { color: var(--terra); font-style: italic; font-weight: 400; }
.brand-tag {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-top: 3px; font-weight: 500;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 14px; color: var(--text); text-decoration: none;
  font-weight: 500; transition: color 0.2s;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--terra); border-bottom-color: var(--terra);
}

.nav-cta {
  background: var(--terra); color: #fff;
  padding: 10px 22px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border-radius: 40px; letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--terra-dk); }

/* HERO */
.hero {
  position: relative; padding: 6rem 3rem 7rem;
  background: linear-gradient(160deg, var(--sand-lt) 0%, var(--sand) 50%, var(--sand-dk) 100%);
  overflow: hidden;
}
.hero-sun {
  position: absolute; top: 10%; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,109,74,0.35) 0%, rgba(185,109,74,0) 70%);
  filter: blur(20px);
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-dk); margin-bottom: 1.5rem; font-weight: 600;
}
.hero-eyebrow::before {
  content: ''; width: 30px; height: 1px; background: var(--terra);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 400; line-height: 1;
  color: var(--char); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--terra); font-weight: 300; }
.hero-sub {
  font-size: 20px; color: var(--text);
  line-height: 1.7; max-width: 500px;
  margin-bottom: 2.5rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-terra {
  background: var(--terra); color: #fff;
  padding: 14px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-terra:hover { background: var(--terra-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(185,109,74,0.3); }
.btn-outline-terra {
  background: transparent; color: var(--terra-dk);
  padding: 14px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--terra);
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-terra:hover { background: var(--terra); color: #fff; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--terra) 0%, var(--terra-dk) 60%, var(--clay) 100%);
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(143, 78, 50, 0.25);
}
.hero-visual::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(250,245,236,0.3);
  border-radius: 190px 190px 0 0;
}
.hero-visual-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,245,236,0.4);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 20px;
}

/* WELLNESS PILLARS */
.pillars {
  background: var(--bone);
  padding: 4rem 3rem;
}
.pillars-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  text-align: center;
}
.pillar { }
.pillar-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  background: rgba(185,109,74,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pillar-icon i { color: var(--terra); font-size: 30px; }
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  color: var(--char); margin-bottom: 8px;
}
.pillar h3 em { color: var(--terra); font-style: italic; }
.pillar p { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* SECTIONS */
section { padding: 6rem 3rem; }
.inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terra-dk); font-weight: 600; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--terra);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400; line-height: 1.15;
  color: var(--char); margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--terra); font-weight: 300; }
.section-sub {
  font-size: 19px; color: var(--muted); line-height: 1.7;
  max-width: 600px; font-weight: 300;
  margin-bottom: 3.5rem;
}

/* TREATMENTS PREVIEW */
.treatments-preview {
  background: var(--cream);
}
.treatments-cats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.treatment-cat {
  background: var(--bone);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  text-decoration: none; color: inherit;
  transition: all 0.3s;
  border: 1px solid var(--border);
}
.treatment-cat:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(143,78,50,0.10); background: var(--sand-lt); }
.treatment-cat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.treatment-cat-icon i { color: #fff; font-size: 28px; }
.treatment-cat h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  color: var(--char); margin-bottom: 8px;
}
.treatment-cat p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.treatment-cat-link { color: var(--terra); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }

/* PHILOSOPHY */
.philosophy {
  background: linear-gradient(160deg, var(--sand-lt) 0%, var(--sand) 100%);
}
.philosophy-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 5rem; align-items: center;
}
.philosophy-visual {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--terra) 0%, var(--terra-dk) 100%);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px rgba(143,78,50,0.25);
  max-width: 500px; margin: 0 auto;
}
.philosophy-visual::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(250,245,236,0.25);
  border-radius: 50%;
}
.philosophy-visual-inner {
  color: rgba(250,245,236,0.5);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 20px;
}
.philosophy-text .quote {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-style: italic; font-weight: 300;
  color: var(--char); line-height: 1.5;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--terra);
}
.philosophy-text p {
  font-size: 17px; color: var(--text); line-height: 1.8;
  margin-bottom: 1.25rem; font-weight: 300;
}

/* PACKAGES PREVIEW */
.packages-preview { background: var(--cream); }
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(143,78,50,0.12); }
.package-header {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(160deg, var(--sand-lt) 0%, var(--sand) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.package-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--terra); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.package-duration {
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terra-dk); font-weight: 600; margin-bottom: 8px;
}
.package-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500;
  color: var(--char); margin-bottom: 4px;
}
.package-price {
  font-family: 'Fraunces', serif;
  font-size: 20px; color: var(--terra);
  font-style: italic;
}
.package-body {
  padding: 2rem;
}
.package-includes {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 1.5rem;
}
.package-includes li {
  font-size: 14px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.6;
}
.package-includes li i { color: var(--terra); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.package-btn {
  display: block; text-align: center;
  background: var(--terra); color: #fff;
  padding: 10px; border-radius: 30px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background 0.2s;
}
.package-btn:hover { background: var(--terra-dk); }

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(160deg, var(--terra) 0%, var(--terra-dk) 100%);
  color: var(--cream);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,245,236,0.15) 0%, transparent 70%);
}
.cta-strip::after {
  content: ''; position: absolute;
  bottom: -50%; left: -20%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(250,245,236,0.10) 0%, transparent 70%);
}
.cta-strip .inner { position: relative; z-index: 1; }
.cta-strip .eyebrow { color: rgba(250,245,236,0.7); }
.cta-strip .eyebrow::before { background: rgba(250,245,236,0.4); }
.cta-strip h2 { color: var(--cream); }
.cta-strip h2 em { color: rgba(250,245,236,0.85); }
.cta-strip p {
  font-size: 18px; color: rgba(250,245,236,0.85);
  max-width: 520px; margin: 0 auto 2rem;
  line-height: 1.7; font-weight: 300;
}
.btn-cream {
  background: var(--cream); color: var(--terra-dk);
  padding: 14px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-cream:hover { background: #fff; transform: translateY(-1px); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(160deg, var(--sand-lt) 0%, var(--sand) 60%, var(--sand-dk) 100%);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -30%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,109,74,0.20) 0%, transparent 70%);
}
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 1rem; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400; color: var(--char);
  line-height: 1.1; margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { color: var(--terra); font-style: italic; font-weight: 300; }
.page-hero-sub {
  font-size: 20px; color: var(--text);
  max-width: 600px; margin: 0 auto;
  line-height: 1.7; font-weight: 300;
}

/* TREATMENTS PAGE */
.treatment-section { padding: 5rem 3rem; }
.treatment-section:nth-child(even) { background: var(--bone); }
.treatment-section-inner { max-width: 1180px; margin: 0 auto; }
.treatment-section-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 3rem;
}
.treatment-section-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dk) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.treatment-section-icon i { color: #fff; font-size: 32px; }
.treatment-section-title {
  font-family: 'Fraunces', serif; font-size: 36px;
  font-weight: 400; color: var(--char); line-height: 1.1;
  margin-bottom: 4px;
}
.treatment-section-title em { color: var(--terra); font-style: italic; font-weight: 300; }
.treatment-section-desc {
  font-size: 16px; color: var(--muted); font-weight: 300;
}
.treatment-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.treatment-item {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; justify-content: space-between;
  gap: 1.5rem;
}
.treatment-info h4 {
  font-family: 'Fraunces', serif; font-size: 20px;
  font-weight: 500; color: var(--char); margin-bottom: 6px;
}
.treatment-info p {
  font-size: 14px; color: var(--muted);
  line-height: 1.6; margin-bottom: 10px;
}
.treatment-meta {
  font-size: 12px; color: var(--terra-dk);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.treatment-price {
  font-family: 'Fraunces', serif;
  font-size: 22px; color: var(--terra);
  font-style: italic; font-weight: 400;
  white-space: nowrap;
}

/* PACKAGES PAGE */
.packages-main {
  padding: 5rem 3rem;
}
.packages-main-inner {
  max-width: 1180px; margin: 0 auto;
}
.package-detail {
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 3rem; align-items: center;
}
.package-detail-visual {
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--sand-lt), var(--sand-dk));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); font-family: 'Fraunces', serif;
  font-style: italic; font-size: 18px;
}
.package-detail-content { }
.package-detail-badge {
  display: inline-block;
  background: rgba(185,109,74,0.1);
  color: var(--terra-dk);
  padding: 4px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.package-detail-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 400;
  color: var(--char); margin-bottom: 4px;
}
.package-detail-content h3 em { color: var(--terra); font-style: italic; font-weight: 300; }
.package-detail-price {
  font-family: 'Fraunces', serif;
  font-size: 24px; color: var(--terra);
  font-style: italic; margin-bottom: 1.25rem;
}
.package-detail-content p {
  font-size: 16px; color: var(--text);
  line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300;
}
.package-detail-includes {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 1.75rem;
}
.package-detail-includes li {
  font-size: 15px; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.package-detail-includes li i { color: var(--terra); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* SPACE PAGE */
.space-gallery {
  padding: 4rem 3rem;
}
.space-gallery-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px; gap: 1rem;
}
.space-tile {
  background: linear-gradient(160deg, var(--sand), var(--sand-dk));
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  color: var(--char);
  transition: transform 0.3s;
  cursor: pointer;
}
.space-tile:hover { transform: scale(1.02); }
.space-tile.large { grid-column: span 2; grid-row: span 2; }
.space-tile.tall { grid-row: span 2; }
.space-tile-label {
  background: rgba(250,245,236,0.9);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 20px;
  font-family: 'Fraunces', serif;
  font-size: 15px; font-style: italic;
  color: var(--terra-dk);
}

.space-features {
  padding: 5rem 3rem;
  background: var(--bone);
}
.space-features-inner {
  max-width: 1180px; margin: 0 auto;
}
.space-features-header {
  text-align: center; margin-bottom: 4rem;
}
.space-features-header .eyebrow { justify-content: center; }
.space-features-header .eyebrow::before { display: none; }
.space-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.space-feature {
  text-align: center;
}
.space-feature-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--terra), var(--terra-dk));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.space-feature-icon i { color: #fff; font-size: 24px; }
.space-feature h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 500;
  color: var(--char); margin-bottom: 6px;
}
.space-feature p {
  font-size: 14px; color: var(--muted);
  line-height: 1.6; font-weight: 300;
}

/* BOOK PAGE */
.book-main { padding: 5rem 3rem; }
.book-main-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
}
.book-info {
  padding: 2.5rem;
  background: linear-gradient(160deg, var(--sand-lt), var(--sand));
  border-radius: 24px;
}
.book-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500;
  color: var(--char); margin-bottom: 1rem;
}
.book-info p {
  font-size: 16px; color: var(--text);
  line-height: 1.7; margin-bottom: 2rem; font-weight: 300;
}
.book-quick-info {
  display: flex; flex-direction: column; gap: 1.5rem;
}
.book-quick-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.book-quick-icon {
  width: 40px; height: 40px;
  background: rgba(185,109,74,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.book-quick-icon i { color: var(--terra); font-size: 20px; }
.book-quick-label {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 2px;
}
.book-quick-val {
  font-size: 15px; color: var(--char); font-weight: 500;
}
.book-quick-val a { color: inherit; text-decoration: none; }

.book-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.book-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500;
  color: var(--char); margin-bottom: 6px;
}
.book-form-sub {
  font-size: 14px; color: var(--muted); font-weight: 300;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  background: var(--bone);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-field textarea { min-height: 80px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--terra);
}
.form-submit {
  width: 100%; background: var(--terra); color: #fff;
  padding: 14px; border: none; border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--terra-dk); }

/* FOOTER */
footer {
  background: var(--char);
  color: rgba(250,245,236,0.7);
  padding: 4rem 3rem 2rem;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 2fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,245,236,0.1);
}
.footer-brand-block { }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terra), var(--terra-dk));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 20px;
}
.footer-brand-text {
  font-family: 'Fraunces', serif;
  font-size: 22px; color: var(--cream); font-weight: 500;
}
.footer-brand-text em { color: var(--terra-lt); font-style: italic; font-weight: 400; }
footer p {
  font-size: 15px; color: rgba(250,245,236,0.6);
  line-height: 1.7; max-width: 350px;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terra-lt);
  margin-bottom: 1rem; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col li a {
  font-size: 14px; color: rgba(250,245,236,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-col li a:hover { color: var(--terra-lt); }
.footer-bottom {
  padding-top: 2rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(250,245,236,0.35); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .brand-tag { display: none; }
  section, .hero, .page-hero, .pillars, .cta-strip, .treatment-section, .packages-main, .space-gallery, .space-features, .book-main { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-inner, .philosophy-grid, .book-main-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 350px; margin: 0 auto; border-radius: 175px 175px 0 0; }
  .pillars-inner, .treatments-cats-grid, .packages-grid, .space-features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .treatment-list { grid-template-columns: 1fr; }
  .package-detail { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .space-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .space-tile.large, .space-tile.tall { grid-column: span 1; grid-row: span 1; }
  .footer-top, .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
