/* Mom In Tune — homepage styles
   Palette + type extracted from the Claude Design (.dc.html) source. */

:root {
  --bg: #F8F3EC;
  --band: #EDE2D5;
  --mark: #45364A;
  --text: #4B3A32;
  --accent: #CDA6A0;
  --cta: #45364A;
  --cta-text: #F8F3EC;
}

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

html { scroll-behavior: smooth; }

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input,
.has-custom-cursor label {
  cursor: none;
}
#cursor-trail {
  mix-blend-mode: normal;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(205, 166, 160, 0.333); }

a { text-decoration: none; color: inherit; }
input::placeholder { color: inherit; opacity: 0.5; }

.serif {
  font-family: 'Cormorant Garamond', serif;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mark);
  margin-bottom: 22px;
}

.hair {
  height: 1px;
  border: 0;
  background: currentColor;
  opacity: 0.22;
}

.btn {
  display: inline-block;
  background: var(--cta);
  color: var(--cta-text);
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 24px rgba(73, 54, 79, 0.14);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover {
  background: #5B3A67;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(73, 54, 79, 0.18);
}

.btn--sm {
  padding: 12px 22px;
  font-size: 13.5px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid color-mix(in srgb, var(--mark) 55%, transparent);
  padding-bottom: 3px;
  transition: opacity 0.2s, transform 0.2s;
}
.link-arrow:hover { opacity: 0.9; transform: translateY(-1px); }
.link-arrow span { font-size: 18px; display: inline-block; transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].mit-in { opacity: 1; transform: none; }

@keyframes mitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes mitSlide {
  0% { transform: translateY(22px); }
  100% { transform: translateY(0); }
}
.mit-arc { animation: 14s ease-in-out 0s infinite normal none running mitFloat; }
.mit-hero-rise { animation: 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0s 1 normal both running mitSlide; opacity: 0; animation-fill-mode: forwards; }
.mit-hero-rise { opacity: 1; }
.mit-hero-rise.d2 { animation-delay: 0.12s; }
.mit-hero-rise.d3 { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .mit-hero-rise { opacity: 1 !important; transform: none !important; animation: none !important; }
  .mit-arc { animation: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 243, 235, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(75, 58, 50, 0.10);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 6px; justify-self: start; }
.brand img { height: 58px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(75, 58, 50, 0.78);
}
.nav-link {
  position: relative;
  transition: color 180ms ease;
}
.nav-link:hover,
.nav-link.active { color: var(--mark); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--mark);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-1px);
}

.btn-cta {
  justify-self: end;
  display: inline-block;
  background: #49364F;
  color: #F9F3EB;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 10px 24px rgba(73, 54, 79, 0.14);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.btn-cta:hover {
  background: #5B3A67;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(73, 54, 79, 0.18);
}

/* ---------- Mobile menu ---------- */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  width: 26px;
  height: 20px;
  position: relative;
  cursor: pointer;
  justify-self: end;
}
.menu-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--mark);
  transition: transform 220ms ease, opacity 220ms ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background-image: url("assets/Background.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--band));
  z-index: 1;
  pointer-events: none;
}
.hero-bottom-pattern {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px 110px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--mark);
}
.hero p.lede {
  font-size: 18.5px;
  line-height: 1.66;
  max-width: 30em;
  color: color-mix(in srgb, var(--text) 82%, transparent);
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual__pattern {
  position: absolute;
  z-index: 0;
  width: 135%;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  animation: mitSpin 90s linear infinite;
  pointer-events: none;
}
@keyframes mitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual__pattern { animation: none; }
}
.hero-portrait {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 260px 260px 18px 18px;
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 35%, var(--bg)), color-mix(in srgb, var(--mark) 16%, var(--bg)));
  font-size: 13px;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}

/* ---------- Section: recognition (band) ---------- */
.band { background: var(--band); }
.section { padding: 104px 48px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
#recognition { position: relative; overflow: hidden; }
.section-intro { position: relative; z-index: 1; max-width: 760px; margin-bottom: 64px; }
.section-intro h2, .section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-intro p, .section-copy {
  font-size: 18px;
  line-height: 1.66;
  color: color-mix(in srgb, var(--text) 82%, transparent);
  max-width: 34em;
}
.section-intro em { font-style: italic; color: var(--mark); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.card-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  aspect-ratio: 1900 / 830;
  background: url("assets/background-strip.webp") center / contain no-repeat;
  pointer-events: none;
}
.card {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--mark) 24%, transparent);
  border-radius: 18px;
  padding: 38px 34px;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s, opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px -32px color-mix(in srgb, var(--text) 55%, transparent);
}
.card svg { display: block; margin-bottom: 18px; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
.card:hover svg { transform: scale(1.08) rotate(-4deg); }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 12px;
}
.card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}

/* ---------- Philosophy ---------- */
.philosophy {
  --text: #F8F3EC;
  --mark: #E8C9A0;
  --bg: #2E2138;
  padding: 118px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(rgba(20, 12, 28, 0.28), rgba(20, 12, 28, 0.28)), url("assets/dark-moon-background.webp") center / cover no-repeat;
}
.philosophy__orbit {
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
  width: 108px;
  height: 108px;
  object-fit: contain;
  opacity: 0.9;
}
.philosophy__content {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 96px;
  position: relative;
}
.philosophy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.philosophy .kicker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--mark);
  margin-bottom: 36px;
}
.philosophy p.body {
  font-size: 18.5px;
  line-height: 1.72;
  max-width: 36em;
  margin: 0 auto;
  color: color-mix(in srgb, var(--text) 82%, transparent);
}
.moon-phases {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 54px;
  opacity: 0.78;
}
.moon-phases .rule { width: 54px; height: 1px; background: var(--mark); opacity: 0.4; }

/* ---------- Services ---------- */
#services {
  position: relative;
  overflow: hidden;
}
.services-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.services-head h2 { max-width: 14em; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
}
.service-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: min(1100px, 92vw);
  aspect-ratio: 1 / 1;
  background: url("assets/birth-chart.webp") center / contain no-repeat;
  opacity: 0.5;
  pointer-events: none;
  animation: mitSpinLeft 200s linear infinite;
}
@keyframes mitSpinLeft {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .service-grid::before { animation: none; }
}
.service-card {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: 20px;
  padding: 0 0 36px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--mark) 18%, transparent);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s, opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 60px -34px color-mix(in srgb, var(--text) 55%, transparent);
}
.service-card__media {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 18%, var(--bg));
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__body { padding: 30px 30px 0; }
.service-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--mark);
  margin-bottom: 8px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 27px;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15.5px;
  line-height: 1.62;
  color: color-mix(in srgb, var(--text) 80%, transparent);
}

/* ---------- Approach ---------- */
.approach-inner { max-width: 1100px; margin: 0 auto; }
.approach-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.approach-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.approach-intro p {
  font-size: 17px;
  line-height: 1.64;
  color: color-mix(in srgb, var(--text) 78%, transparent);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid color-mix(in srgb, var(--mark) 30%, transparent);
}
.approach-item {
  padding: 34px 22px;
  border-right: 1px solid color-mix(in srgb, var(--mark) 22%, transparent);
  transition: background 0.4s, opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.approach-item:last-child { border-right: 0; }
.approach-item:hover { background: color-mix(in srgb, var(--mark) 8%, transparent); }
.approach-item svg { display: block; margin-bottom: 16px; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
.approach-item:hover svg { transform: scale(1.12); }
.approach-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--mark);
  margin-bottom: 14px;
}
.approach-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
}
.approach-item p {
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in srgb, var(--text) 74%, transparent);
}

/* ---------- About ---------- */
.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.about-portrait { position: sticky; top: 120px; }
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 18px 18px 220px 220px;
  overflow: hidden;
  box-shadow: 0 30px 70px -44px color-mix(in srgb, var(--text) 60%, transparent);
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.about-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--text) 84%, transparent);
  margin-bottom: 22px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonials-wash {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 420px at 18% 15%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 100%),
    radial-gradient(circle 460px at 84% 90%, color-mix(in srgb, var(--mark) 24%, transparent), transparent 100%);
  opacity: 0.55;
}
.testimonials-content {
  position: relative;
  z-index: 1;
}
.testimonials-mark {
  display: block;
  margin: 0 auto 28px;
  width: 140px;
  height: auto;
  opacity: 0.85;
}
.testimonials-content > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 18em;
  margin: 0 auto 18px;
}
.testimonials-intro {
  text-align: center;
  max-width: 34em;
  margin: 0 auto 56px;
  font-size: 17px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--text) 74%, transparent);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  text-align: center;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--mark) 16%, transparent);
  border-radius: 22px;
  padding: 44px 32px 34px;
  box-shadow: 0 20px 45px -34px color-mix(in srgb, var(--text) 45%, transparent);
  backdrop-filter: blur(6px);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -32px color-mix(in srgb, var(--text) 50%, transparent);
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 23px;
  line-height: 1.58;
  max-width: 22ch;
  margin: 0 auto 22px;
}
.testimonial-card .hair {
  color: var(--mark);
  width: 34px;
  margin: 0 auto 14px;
  opacity: 0.5;
}
.testimonial-card figcaption {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: color-mix(in srgb, var(--text) 62%, transparent);
}

/* ---------- Community ---------- */
#community {
  --text: #F8F3EC;
  --mark: #E8C9A0;
  --bg: #2E2138;
  position: relative;
  color: var(--text);
  background: linear-gradient(rgba(20, 12, 28, 0.32), rgba(20, 12, 28, 0.32)), url("assets/dark-background.webp") center / cover no-repeat;
}
.community-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.community-icon { width: 62px; height: auto; margin: 0 auto 26px; display: block; }
.community-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.community-inner > p {
  font-size: 18px;
  line-height: 1.66;
  max-width: 34em;
  margin: 0 auto 38px;
  color: color-mix(in srgb, var(--text) 82%, transparent);
}
.signup-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.beehiiv-embed {
  max-width: 480px;
  margin: 0 auto;
}
.signup-form input {
  flex: 1 1 0;
  min-width: 220px;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--mark) 40%, transparent);
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 15px;
  font-family: inherit;
  color: inherit;
  outline: none;
}
.signup-form button {
  background: var(--cta);
  color: var(--cta-text);
  border: 0;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(73, 54, 79, 0.14);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.signup-form button:hover {
  background: #5B3A67;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(73, 54, 79, 0.18);
}
p.fine-print {
  font-size: 12px;
  margin-top: 34px;
  color: color-mix(in srgb, var(--text) 60%, transparent);
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 130px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  object-fit: contain;
  opacity: 0.5;
  pointer-events: none;
  animation: mitSpin 160s linear infinite;
  transform-origin: center;
  translate: -50% -50%;
}
.final-cta__content {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.final-cta p {
  font-size: 18.5px;
  line-height: 1.68;
  max-width: 32em;
  margin: 0 auto 40px;
  color: color-mix(in srgb, var(--text) 82%, transparent);
}
.final-cta .btn { padding: 18px 38px; font-size: 16px; position: relative; }
.final-cta .btn::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 50%, transparent) 0%, transparent 62%);
  z-index: -1;
  animation: mitGlowPulse 3.6s ease-in-out infinite;
}
@keyframes mitGlowPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 0.75; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .final-cta .btn::before, .final-cta__orbit { animation: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #45364A;
  color: var(--bg);
  padding: 70px 48px 40px;
}
.site-footer__inner { max-width: 1180px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 44px;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 22%, transparent);
}
.footer-brand { max-width: 30em; }
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p.tag {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.72;
}
.footer-nav {
  display: flex;
  gap: 64px;
  font-size: 14.5px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col span {
  opacity: 0.55;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-col a { opacity: 0.85; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  font-size: 12.5px;
  opacity: 0.5;
  margin-top: 26px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 64px 28px 72px; gap: 48px; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .main-nav { display: none; }
  .btn-cta { display: none; }
  .site-header__inner { padding: 16px 24px; grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms ease;
  }
  .mobile-nav.open { max-height: 420px; }
  .mobile-nav .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(75, 58, 50, 0.10);
    font-size: 16px;
    color: var(--text);
  }
  .mobile-nav .btn-cta {
    display: inline-block;
    justify-self: unset;
    margin: 16px 0 20px;
    text-align: center;
  }
  .section, .philosophy, .final-cta { padding: 80px 24px; }
  .section-inner, .about-grid, .approach-inner, .testimonials-inner, .site-footer__inner { padding: 0; }
  .card-grid, .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item:nth-child(2n) { border-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 380px; margin: 0 auto; position: static; }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 40px; flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item { border-right: 0 !important; border-bottom: 1px solid color-mix(in srgb, var(--mark) 22%, transparent); }
  .approach-item:last-child { border-bottom: 0; }
}
