/* ============================================
   HIMALAYA WEIGHT LOSS CLINIC
   Warm, refined, mountain-inspired design
   ============================================ */

:root {
  /* Warm earth palette */
  --cream: #faf3e8;
  --cream-soft: #f5ead8;
  --sand: #e8d5b7;
  --terracotta: #c97b5e;
  --terracotta-deep: #a85a3f;
  --clay: #8a4a35;
  --olive: #6b6841;
  --sage: #8a9070;
  --ink: #2b1f17;
  --ink-soft: #4a3a2e;
  --warm-gray: #8a7868;
  --gold: #c89762;
  --gold-soft: #e8c896;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --max-w: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Subtle grain overlay for warmth */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 243, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 120, 104, 0.15);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}

.logo-mark {
  width: 44px;
  height: 30px;
  color: var(--terracotta);
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo-sub {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 4px;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  align-items: center;
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s;
}

.nav a:hover { color: var(--terracotta); }

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}

.cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(232, 200, 150, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 200, 150, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(232, 200, 150, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 200, 150, 0); }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.3s;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

.hero-mountains {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-mountains svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-mountains::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(250, 243, 232, 0.85) 0%, rgba(250, 243, 232, 0.3) 30%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2rem;
  max-width: 14ch;
  font-variation-settings: "opsz" 144;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}

.hero-title {
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}

.hero-sub {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}
.meta-divider {
  width: 1px;
  height: 32px;
  background: var(--warm-gray);
  opacity: 0.3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(168, 90, 63, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-soft);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 243, 232, 0.4);
}
.btn-outline-light:hover {
  background: rgba(250, 243, 232, 0.1);
  border-color: var(--cream);
}

/* ============== SECTION COMMON ============== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.section-label.light { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ============== INTRO ============== */
.intro {
  padding: 8rem 0;
  background: var(--cream);
  position: relative;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 500;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.3s;
}
.link-arrow:hover { gap: 1rem; }

.intro-visual {
  position: relative;
}

.quote-card {
  background: linear-gradient(135deg, var(--cream-soft), var(--sand));
  padding: 3rem 2.5rem;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(43, 31, 23, 0.15);
  transform: rotate(-1deg);
  border: 1px solid rgba(200, 151, 98, 0.2);
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 151, 98, 0.25);
  border-radius: 2px;
  pointer-events: none;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1rem;
  font-style: italic;
}

.quote-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
}

.quote-attr {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
}

/* ============== SERVICES PREVIEW ============== */
.services-preview {
  padding: 7rem 0;
  background: linear-gradient(to bottom, var(--cream), var(--cream-soft));
}

.section-head {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-head .section-label { color: var(--clay); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(138, 120, 104, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(43, 31, 23, 0.2);
  border-color: var(--gold-soft);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 0.7rem; }

.service-card-cta {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service-card-cta h3 { color: var(--cream); }
.service-card-cta p { color: rgba(250, 243, 232, 0.75); }
.service-card-cta .service-num { color: var(--gold-soft); }
.service-card-cta .service-link { color: var(--gold-soft); }

/* ============== VALUES ============== */
.values {
  padding: 6rem 0;
  background: var(--cream-soft);
  border-top: 1px solid rgba(138, 120, 104, 0.15);
  border-bottom: 1px solid rgba(138, 120, 104, 0.15);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.value-item {
  text-align: left;
}
.value-icon {
  width: 44px;
  height: 44px;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}
.value-icon svg { width: 100%; height: 100%; }

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.value-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ============== CTA BAND ============== */
.cta-band {
  padding: 7rem 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 123, 94, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-band::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 200, 150, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(250, 243, 232, 0.78);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--cream-soft);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(138, 120, 104, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name {
  font-size: 2rem;
  display: block;
}
.footer-brand .logo-sub {
  margin-top: 8px;
  display: block;
}
.footer-tag {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clay);
  font-size: 1.05rem;
}

.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(138, 120, 104, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* ============== ABOUT PAGE ============== */
.page-hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(to bottom, var(--cream-soft), var(--cream));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 200, 150, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
  margin: 0.5rem 0 1.5rem;
  font-variation-settings: "opsz" 144;
}
.page-hero h1 em { font-style: italic; color: var(--terracotta); }

.page-hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-content {
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: start;
}

.about-grid-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.about-grid-text h2 em { font-style: italic; color: var(--terracotta); }

.about-grid-text p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.story-card {
  background: var(--cream-soft);
  border: 1px solid rgba(200, 151, 98, 0.25);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}
.story-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 151, 98, 0.2);
  pointer-events: none;
}

.story-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--terracotta-deep);
}
.story-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.philosophy {
  padding: 5rem 0;
  background: var(--cream-soft);
  border-top: 1px solid rgba(138, 120, 104, 0.15);
  border-bottom: 1px solid rgba(138, 120, 104, 0.15);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.philosophy-item {
  position: relative;
  padding-left: 0;
}
.philosophy-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  font-weight: 400;
  display: block;
}
.philosophy-item h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.philosophy-item p {
  color: var(--ink-soft);
}

/* ============== SERVICES PAGE ============== */
.services-page {
  padding: 5rem 0 7rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(138, 120, 104, 0.15);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }

.service-detail-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.service-detail-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-detail-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-detail-body ul {
  list-style: none;
  margin-top: 1.5rem;
}

.service-detail-body li {
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid rgba(138, 120, 104, 0.12);
  color: var(--ink-soft);
  position: relative;
  font-size: 0.98rem;
}
.service-detail-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

/* ============== PRICING PAGE ============== */
.pricing-page {
  padding: 5rem 0 7rem;
}

.pricing-card {
  max-width: 720px;
  margin: 4rem auto 0;
  background: linear-gradient(135deg, var(--cream-soft), var(--sand));
  border: 1px solid rgba(200, 151, 98, 0.3);
  padding: 4rem 3rem;
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 151, 98, 0.25);
  pointer-events: none;
}

.pricing-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--ink);
  line-height: 1.15;
}
.pricing-card h2 em { font-style: italic; color: var(--terracotta); }
.pricing-card p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.pricing-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
}
.pricing-divider span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--clay);
  font-size: 0.95rem;
}
.pricing-divider::before, .pricing-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: rgba(168, 90, 63, 0.3);
}

.pricing-phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--terracotta-deep);
  letter-spacing: -0.01em;
  display: inline-block;
  margin: 1rem 0;
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}
.pricing-phone:hover { color: var(--clay); }

.pricing-hours {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
}

/* ============== CONTACT PAGE ============== */
.contact-page {
  padding: 5rem 0 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-block {
  border-left: 2px solid var(--terracotta);
  padding-left: 1.75rem;
}
.contact-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.contact-block p, .contact-block a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.contact-block a:hover { color: var(--terracotta); }
.contact-block .small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

.contact-visual {
  background: var(--cream-soft);
  border: 1px solid rgba(200, 151, 98, 0.25);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}

.contact-visual h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ink);
  line-height: 1.2;
}
.contact-visual h3 em { font-style: italic; color: var(--terracotta); }
.contact-visual p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.map-placeholder {
  margin-top: 1.5rem;
  aspect-ratio: 16 / 10;
  background: var(--cream);
  border: 1px solid rgba(138, 120, 104, 0.2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder svg { width: 100%; height: 100%; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { gap: 1rem; }
  .cta-btn { font-size: 0.78rem; padding: 0.55rem 0.9rem; }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .service-detail { grid-template-columns: 1fr; gap: 3rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero { padding: 3rem 0 5rem; min-height: auto; }
  .hero-meta { gap: 1rem; }
  .meta-divider { display: none; }
  .intro, .services-preview, .values, .cta-band { padding: 5rem 0; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .quote-card { padding: 2rem 1.5rem; }
  .pricing-card, .story-card, .contact-visual { padding: 2rem 1.5rem; }
  .logo-sub { display: none; }
}

/* Mobile menu open state */
body.menu-open .nav {
  display: flex;
  position: fixed;
  inset: 80px 0 0 0;
  background: var(--cream);
  flex-direction: column;
  padding: 3rem var(--pad);
  gap: 1.75rem;
  z-index: 99;
}
body.menu-open .nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== LEGAL / 10DLC PAGE ============== */
.legal-page {
  padding: 4rem 0 7rem;
}

.legal-toc {
  background: var(--cream-soft);
  border: 1px solid rgba(200, 151, 98, 0.25);
  border-left: 3px solid var(--terracotta);
  padding: 2rem 2.5rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 4rem;
}
.legal-toc h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
}
.legal-toc ol {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-toc li a {
  color: var(--terracotta);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.legal-toc li a:hover { border-color: var(--terracotta); }

.legal-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(138, 120, 104, 0.15);
  scroll-margin-top: 90px;
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}

.legal-section p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 75ch;
}

.legal-section ul, .legal-section ol {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  max-width: 75ch;
}
.legal-section li {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

.legal-highlight {
  background: var(--cream-soft);
  border: 1px solid rgba(200, 151, 98, 0.3);
  border-left: 3px solid var(--terracotta);
  padding: 1.25rem 1.75rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}
.legal-highlight p {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0;
}

.legal-effective {
  font-size: 0.82rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--warm-gray);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer-legal-links a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}
