:root {
  --background: #f8f5ef;
  --surface: #fcfaf6;
  --surface-alt: #f1ece3;
  --foreground: #1a1812;
  --muted: #756d61;
  --border: #e3ddd2;
  --primary: #9b7d3a;
  --primary-dark: #8a6f33;
  --footer: #1a1812;
  --footer-text: #fafaf7;
  --shadow: 0 1px 3px rgba(26, 24, 18, 0.06), 0 10px 30px rgba(26, 24, 18, 0.05);
  --radius: 0px;
  --container: 1280px;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
button, a { font: inherit; }
button { border: 0; background: none; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(155, 125, 58, 0.06) 0%, transparent 50%);
}

.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { position: relative; z-index: 1; padding: 8rem 0; }
.section-muted { background: rgba(241, 236, 227, 0.6); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-soft { background: rgba(241, 236, 227, 0.4); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
  padding: 1.5rem 0;
}
.site-header.is-scrolled {
  background: rgba(248, 245, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(26, 24, 18, 0.05);
  padding: 1.5rem 0;
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  width: auto;
  height: 3.35rem;
  max-width: 8.5rem;
  padding: 0;
  object-fit: contain;
  flex: 0 0 auto;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 8px 16px rgba(26, 24, 18, 0.08));
}
.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  transform: translateY(1px);
}
.brand-text span { color: var(--primary); font-style: italic; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav button,
.desktop-nav a,
.mobile-menu button,
.mobile-menu a,
.footer-links a {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color 0.2s ease;
}
.desktop-nav button:hover,
.desktop-nav a:hover,
.mobile-menu button:hover,
.mobile-menu a:hover,
.footer-links a:hover { color: var(--foreground); }
.desktop-nav a.is-active,
.mobile-menu a.is-active {
  color: var(--foreground);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.72rem 1.55rem;
  gap: 0.38rem;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: var(--primary) !important;
  background: transparent;
  font-size: 0.66rem !important;
  font-weight: 500;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(155, 125, 58, 0.18);
}

.header-cta:active,
.header-cta.is-active {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}

.header-cta--mobile {
  width: 100%;
  margin-top: 0.65rem;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.7rem;
  border: 1px solid rgba(190, 168, 126, 0.35);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.76);
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}
.menu-toggle:hover {
  border-color: rgba(155, 125, 58, 0.5);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 10px 22px rgba(26, 24, 18, 0.08);
}
.menu-toggle span { width: 100%; height: 1px; background: var(--foreground); transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0 16px 14px;
  padding: 1rem;
  border: 1px solid rgba(190, 168, 126, 0.2);
  border-radius: 1.35rem;
  background: rgba(252, 249, 242, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(26, 24, 18, 0.08);
}
.mobile-menu.is-open { display: flex; flex-direction: column; gap: 0.35rem; }
.mobile-menu a,
.mobile-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  color: var(--foreground);
  letter-spacing: 0.18em;
}
.mobile-menu a:not(.header-cta--mobile),
.mobile-menu button {
  border: 1px solid transparent;
}
.mobile-menu a:not(.header-cta--mobile):hover,
.mobile-menu button:hover,
.mobile-menu a.is-active:not(.header-cta--mobile) {
  background: rgba(155, 125, 58, 0.08);
  border-color: rgba(190, 168, 126, 0.26);
  color: var(--foreground);
}

.hero {
  min-height: 100vh;
  padding: 1.9rem 0 0;
  overflow: hidden;
}
.hero-grid, .why-grid, .insights-grid, .footer-grid { display: grid; gap: 4rem; }
.hero-grid, .why-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 1.04fr); align-items: center; }
.hero-grid {
  position: relative;
  z-index: 1;
  align-items: start;
  gap: 3.25rem;
}
.hero-copy {
  max-width: 42rem;
  padding-top: 0;
}

.hero h1,
.section h2,
.featured-insight h3,
.testimonial-card h4,
.why-item h3,
.service-card h3,
.process-card h3,
.footer-brand h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
}
.hero h1 span {
  display: block;
  margin-top: 0.2rem;
  background: linear-gradient(135deg, #9b7d3a, #c9a84c, #9b7d3a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero p,
.why-copy p,
.section-heading p,
.featured-insight p,
.process-card p,
.testimonial-card p,
.footer-brand p,
.footer-brand small {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}
.hero p { max-width: 34rem; margin: 0; font-size: 1.125rem; }

.primary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 2rem;
  margin-top: 2.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease;
}
.primary-btn { background: var(--primary); color: #fff; }
.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(155, 125, 58, 0.22);
}
.outline-btn { border-color: var(--primary); color: var(--primary); }
.outline-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(155, 125, 58, 0.18);
}
.outline-btn--light { border-color: rgba(255, 255, 255, 0.8); color: #fff; }
.outline-btn--light:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 14px 30px rgba(26, 24, 18, 0.14);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.hero-stats strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
}
.hero-stats span,
.eyebrow,
.partners-label {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero-panel {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  border: 1px solid rgba(227, 221, 210, 0.8);
  background: rgba(252, 250, 246, 0.68);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
  animation: heroPanelFloat 8s ease-in-out infinite;
}
.hero-panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.26) 0%, rgba(248, 245, 239, 0.16) 100%),
    radial-gradient(circle at 68% 38%, rgba(171, 139, 63, 0.08), transparent 42%);
}
.hero-panel__ring { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-panel__ring--large {
  inset: -35% -45% auto auto;
  width: 58rem;
  height: 58rem;
  background: radial-gradient(circle at center, rgba(155, 125, 58, 0.11) 0, rgba(155, 125, 58, 0.04) 18%, transparent 55%);
  animation: ringPulse 14s linear infinite;
}
.hero-panel__ring--soft {
  inset: auto auto -35% -30%;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle at center, rgba(26, 24, 18, 0.04) 0, transparent 58%);
  animation: ringPulse 18s linear infinite reverse;
}
.hero-panel__emblem {
  position: absolute;
  inset: 50%;
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  animation: emblemFloat 7s ease-in-out infinite;
}

.hero-panel__emblem-image {
  width: 100%;
  max-width: 7.6rem;
  height: auto;
  display: block;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 14px 28px rgba(155, 125, 58, 0.08));
}

.why-copy h2,
.section-heading h2,
.process-intro h2,
.hub-strip h2,
.site-footer h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
}

.process-intro h2 {
  font-family: Cormorant Garamond, Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.45rem, 3.7vw, 3.4rem) !important;
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 42rem;
}
.why-list {
  padding-top: 0.5rem;
  max-width: 28rem;
  width: 100%;
  justify-self: end;
  margin-left: auto;
}
.why-item + .why-item { margin-top: 2.75rem; }
.mini-line { width: 3rem; height: 1px; margin-bottom: 1.2rem; background: var(--primary); }
.why-item h3 { margin: 0; font-size: 2rem; font-weight: 400; }

.section-heading { max-width: 42rem; margin: 0 auto 5rem; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.services-grid, .testimonial-grid { display: grid; gap: 2rem; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card,
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(26, 24, 18, 0.04);
}
.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 246, 240, 0.94) 100%);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 125, 58, 0.35);
  box-shadow: var(--shadow);
}
.service-line { width: 2rem; height: 1px; margin-bottom: 1.5rem; background: var(--primary); transition: width 0.25s ease; }
.service-card:hover .service-line { width: 4rem; }
.service-label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); }
.service-card h3 { margin: 1rem 0; font-size: 2rem; font-weight: 400; }
.service-card p { margin: 0 0 2rem; color: var(--muted); font-size: 0.95rem; line-height: 1.65; font-weight: 300; }
.service-link { margin-top: auto; color: var(--primary); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }
.section-cta { text-align: center; margin-top: 4rem; }

.process-intro { max-width: 48rem; margin-bottom: 4rem; }
.process-list { border-top: 1px solid rgba(227, 221, 210, 0.7); }
.process-card {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 3rem;
  align-items: center;
  padding: 4.25rem 0;
  border-top: 1px solid rgba(227, 221, 210, 0.7);
}
.process-card:first-child { border-top: 0; }
.process-card.reverse .process-visual { order: 2; justify-self: start; }
.process-card.reverse .process-content { order: 3; }
.process-num {
  color: rgba(155, 125, 58, 0.4);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 9vw, 6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
}
.process-content h3 { margin: 0 0 1rem; font-size: 2rem; font-weight: 400; }
.process-visual {
  justify-self: end;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(227, 221, 210, 0.8);
  background: rgba(241, 236, 227, 0.85);
  overflow: hidden;
  position: relative;
}
.process-visual::after {
  content: "W.";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-style: italic;
  color: rgba(155, 125, 58, 0.22);
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.08) 0%, rgba(248, 245, 239, 0.18) 100%);
}
.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.process-card:hover .process-visual img,
.featured-insight:hover .featured-insight__media img,
.mini-insight:hover .mini-insight__media img {
  transform: scale(1.04);
}

.hub-strip {
  background: #ab8b3f;
  color: #fff;
  padding: 4.35rem 0;
}
.hub-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  align-items: center;
  gap: 3rem;
}
.hub-strip h2 {
  margin: 0;
  color: #fff;
  font-family: Cormorant Garamond, Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.35rem, 3.6vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  padding-left: 0.2rem;
}
.hub-strip__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.85rem;
}
.hub-strip__cta span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hub-strip .outline-btn--light {
  margin-top: 0;
  min-width: 13.6rem;
  min-height: 3.08rem;
  padding: 0.82rem 1.45rem;
  border-color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.hub-strip__arrow {
  font-size: 0.88rem;
  line-height: 1;
  transform: translateY(-1px);
}

.insights {
  padding-top: 6.2rem;
}

.section-heading--left {
  max-width: 46rem;
  margin-bottom: 4rem;
}

.section-heading--left h2 {
  margin-bottom: 1rem;
}

.section-heading--left p {
  max-width: 36rem;
}

.insights-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: start; }
.featured-insight__media,
.mini-insight__media { border: 1px solid rgba(227, 221, 210, 0.8); background: rgba(241, 236, 227, 0.7); }
.featured-insight__media { aspect-ratio: 16 / 10; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.featured-insight__media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(155, 125, 58, 0.14), transparent 50%); }
.featured-insight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-insight h3 { margin: 1rem 0; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; }
.featured-insight,
.mini-insight {
  transition: transform 0.3s ease;
}
.featured-insight:hover,
.mini-insight:hover {
  transform: translateY(-4px);
}
.insight-list { display: flex; flex-direction: column; gap: 2rem; }
.mini-insight { display: grid; grid-template-columns: 1fr 8rem; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.mini-insight:last-child { padding-bottom: 0; border-bottom: 0; }
.mini-insight__media { aspect-ratio: 4 / 3; }
.mini-insight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.mini-insight h4 { margin: 0.4rem 0 0; font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 400; line-height: 1.15; }

.testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.testimonial-card { padding: 2.5rem; }
.quote-mark { color: var(--primary); font-family: "Cormorant Garamond", serif; font-size: 5rem; line-height: 1; }
.testimonial-card p { margin: 0 0 2.5rem; font-style: italic; }
.testimonial-divider,
.footer-bottom { border-top: 1px solid var(--border); }
.testimonial-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; }
.testimonial-person { display: flex; align-items: center; gap: 1rem; }
.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}
.testimonial-person h4 { margin: 0; font-size: 1.5rem; font-weight: 400; }
.testimonial-person span,
.stars { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.stars { color: var(--primary); letter-spacing: 0.2em; }

.partners-strip {
  padding-top: 5.25rem;
  padding-bottom: 5.75rem;
  border-top: 1px solid var(--border);
  border-bottom: 0;
}
.partners-label {
  display: block;
  margin-bottom: 2.75rem;
  text-align: center;
  letter-spacing: 0.28em;
  color: var(--primary);
}
.partners-row {
  position: relative;
  overflow: hidden;
}
.partners-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  width: max-content;
  animation: partner-marquee 28s linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
.partner-card {
  width: 13.75rem;
  height: 5.6rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.35rem;
  border: 1px solid #ddd3c1;
  background: linear-gradient(180deg, #f4ede0 0%, #efe6d8 100%);
  box-shadow: 0 14px 32px rgba(42, 35, 18, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}
.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.36) contrast(1.18) grayscale(1);
  opacity: 0.95;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.45);
  background: linear-gradient(180deg, #f8f3e8 0%, #f2eadc 100%);
  box-shadow: 0 18px 36px rgba(42, 35, 18, 0.1);
}
.partner-card:hover img {
  filter: brightness(0.28) contrast(1.24) grayscale(0);
  opacity: 1;
  transform: scale(1.02);
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.675rem));
  }
}

.site-footer {
  background: #1b1812;
  color: rgba(250, 250, 247, 0.9);
  padding: 6.5rem 0 2.5rem;
}
.footer-grid {
  grid-template-columns: minmax(0, 1.5fr) auto auto;
  align-items: start;
  margin-bottom: 6rem;
  gap: 3rem 7rem;
}
.footer-brand h2 { margin: 0 0 1rem; font-size: 3.35rem; font-weight: 400; color: var(--footer-text); }
.footer-brand h2 span { color: var(--primary); font-style: italic; }
.footer-brand p {
  margin: 0 0 3.75rem;
  color: rgba(250, 250, 247, 0.96);
  font-size: 1.05rem;
  font-weight: 300;
}
.footer-brand small {
  display: block;
  max-width: 30rem;
  color: rgba(250, 250, 247, 0.38);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  padding-top: 0.85rem;
  min-width: 9rem;
}
.footer-links a {
  color: rgba(250, 250, 247, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.footer-links a:hover { color: var(--footer-text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top-color: rgba(250, 250, 247, 0.12);
}
.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(250, 250, 247, 0.44);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-bottom div { display: flex; gap: 2.5rem; }

.scroll-top {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 40;
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease,
    box-shadow 0.25s ease;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 36px rgba(155, 125, 58, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroPanelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes emblemFloat {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px));
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .testimonial-grid,
  .insights-grid,
  .hero-grid,
  .why-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-card { grid-template-columns: 1fr; gap: 1.75rem; }
  .process-card.reverse .process-visual,
  .process-card.reverse .process-content { order: initial; }
  .process-visual { justify-self: start; }
  .hub-strip__inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .hub-strip__cta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .container { width: min(var(--container), calc(100% - 32px)); }
  .section { padding: 5rem 0; }
  .hero {
    min-height: auto;
    padding: 4.25rem 0 0;
  }
  .hero-panel { min-height: 24rem; }
  .hero-stats { flex-direction: column; gap: 2rem; }
  .hero-copy { padding-top: 0; }
  .partner-card {
    width: 11.5rem;
    height: 5rem;
    padding: 1rem 1.1rem;
  }
  .partners-track {
    gap: 1rem;
    animation-duration: 24s;
  }
}

@media (max-width: 640px) {
  :root { --header-height: 76px; }
  .site-header { padding: 1rem 0; }
  .site-header.is-scrolled { padding: 1rem 0; }
  .brand-text { font-size: 1.25rem; }
  .brand-logo {
    height: 2.85rem;
    max-width: 7rem;
  }
  .hero h1 { font-size: 3rem; }
  .hero-grid,
  .why-grid,
  .insights-grid,
  .footer-grid { gap: 2.75rem; }
  .hero p,
  .why-copy p,
  .section-heading p,
  .featured-insight p,
  .process-card p,
  .testimonial-card p { font-size: 0.95rem; }
  .why-copy h2,
  .section-heading h2,
  .process-intro h2,
  .hub-strip h2,
  .site-footer h2 { font-size: 2.5rem; }
  .process-intro h2 {
    font-size: 2.1rem !important;
    line-height: 1.08;
  }
  .service-card h3,
  .process-content h3,
  .featured-insight h3 { font-size: 1.75rem; }
  .hub-strip { padding: 3rem 0; }
  .hub-strip h2 { font-size: 2rem; }
  .hub-strip__cta {
    align-items: flex-start;
    gap: 1rem;
  }
  .mobile-menu {
    top: calc(100% + 0.25rem);
    margin: 0 12px 12px;
    padding: 0.85rem;
    border-radius: 1.1rem;
  }
  .mobile-menu a,
  .mobile-menu button {
    min-height: 2.85rem;
    padding: 0.85rem 0.9rem;
    font-size: 0.68rem;
  }
  .hub-strip__cta span {
    font-size: 0.7rem;
    white-space: normal;
  }
  .hub-strip .outline-btn--light {
    min-width: auto;
    width: 100%;
    max-width: 16rem;
  }
  .insights {
    padding-top: 4.5rem;
  }
  .partners-strip { padding-top: 4rem; padding-bottom: 4.5rem; }
  .partners-label { margin-bottom: 2rem; }
  .partner-card {
    width: 9.75rem;
    height: 4.35rem;
    padding: 0.85rem 0.95rem;
  }
  .partners-track {
    gap: 0.8rem;
    animation-duration: 20s;
  }
  .site-footer { padding: 4.5rem 0 2rem; }
  .footer-grid { margin-bottom: 4rem; }
  .footer-brand h2 { font-size: 2.7rem; }
  .footer-brand p { margin-bottom: 2.5rem; }
  .footer-brand small { font-size: 0.82rem; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-insight__media { aspect-ratio: 4 / 3; }
  .mini-insight { grid-template-columns: 1fr; }
  .mini-insight__media { width: 100%; max-width: 10rem; }
  .testimonial-card,
  .service-card { padding: 1.5rem; }
  .testimonial-meta { flex-direction: column; align-items: flex-start; }
  .footer-bottom div { flex-direction: column; gap: 0.75rem; }
  .scroll-top {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
  }
}

.contact-page .site-header {
  background: transparent;
}

.contact-page .contact-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3.5rem) 0 4rem;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 4rem;
}

.contact-hero__eyebrow,
.contact-block-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
}

.contact-hero__eyebrow {
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.contact-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.contact-hero__lead {
  margin: 1.35rem 0 0;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
}

.contact-hero__mark {
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 199, 177, 0.8);
  background: rgba(250, 247, 241, 0.28);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-hero__mark-image {
  width: 100%;
  max-width: 10.5rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(155, 125, 58, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.contact-hero__mark:hover {
  transform: scale(1.03);
  border-color: rgba(190, 168, 126, 0.9);
  box-shadow: 0 22px 45px rgba(155, 125, 58, 0.08);
}

.contact-hero__mark:hover .contact-hero__mark-image {
  transform: scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(155, 125, 58, 0.16));
}

.contact-main {
  padding-top: 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.95fr);
  gap: 4.5rem;
}

.contact-form-panel,
.contact-info-panel {
  min-width: 0;
}

.contact-block-label {
  margin-bottom: 2rem;
}

.contact-success {
  display: none;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: rgba(241, 236, 227, 0.46);
}

.contact-success.is-visible {
  display: block;
}

.contact-success-line {
  width: 2rem;
  height: 1px;
  margin-bottom: 1.5rem;
  background: var(--primary);
}

.contact-success p {
  margin: 0;
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-field,
.contact-select,
.contact-textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(248, 245, 239, 0.88);
  padding: 0.95rem 1rem;
  color: var(--foreground);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-field:focus,
.contact-select:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(155, 125, 58, 0.75);
  box-shadow: 0 0 0 3px rgba(155, 125, 58, 0.08);
  background: #fff;
}

.contact-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-disclaimer {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.contact-info-list {
  display: grid;
  gap: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 0 0 2rem;
}

.contact-info-divider {
  height: 1px;
  margin: 0 0 2rem;
  background: rgba(155, 125, 58, 0.2);
}

.contact-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155, 125, 58, 0.18);
  background: rgba(155, 125, 58, 0.08);
  color: var(--primary);
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-row h3 {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-info-row p,
.contact-info-row a {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-info-row a:hover {
  color: var(--foreground);
}

.contact-quote {
  margin-top: 3rem;
  padding: 2rem 2rem 2rem 1.6rem;
  border-left: 2px solid var(--primary);
  background: rgba(241, 236, 227, 0.5);
}

.contact-quote p {
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.9;
}

.contact-map {
  position: relative;
  min-height: 18.5rem;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: rgba(241, 236, 227, 0.42);
}

.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    radial-gradient(circle at center, rgba(155, 125, 58, 0.08) 2px, transparent 2.5px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.24));
  background-size: 15px 15px, auto;
}

.contact-map__label {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-map__quote {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  padding: 0 1.5rem;
  text-align: center;
}

.contact-map__quote .about-section-label {
  margin-bottom: 1.4rem;
}

.contact-map__quote p {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.faq-section {
  background: rgba(241, 236, 227, 0.3);
  border-bottom: 1px solid var(--border);
}

.faq-wrap {
  max-width: 52rem;
  margin: 0 auto;
}

.faq-heading {
  margin: 0 0 3rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  background: rgba(252, 250, 246, 0.96);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
  border-left: 2px solid var(--primary);
  box-shadow: 0 12px 30px rgba(26, 24, 18, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.6rem;
  text-align: left;
}

.faq-question span {
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-toggle {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--primary);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 1.6rem 1.6rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .contact-layout,
  .contact-hero__grid {
    grid-template-columns: 1fr;
  }
  .contact-hero__mark {
    display: none;
  }
}

@media (max-width: 900px) {
  .contact-page .contact-hero {
    padding-top: 7rem;
  }
  .contact-main {
    padding-top: 2rem;
  }
  .contact-layout {
    gap: 3.25rem;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  .contact-hero h1 {
    font-size: 3.25rem;
  }
  .contact-hero__lead {
    font-size: 1.8rem;
  }
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .contact-quote,
  .contact-success {
    padding: 1.5rem;
  }
  .faq-question {
    padding: 1.2rem 1.25rem;
  }
  .faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
  }
  .contact-map {
    min-height: 14rem;
  }
}

.services-page .services-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 4.5rem;
}

.services-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 4rem;
}

.services-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.services-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.services-hero__lead {
  margin: 1.35rem 0 0;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
}

.services-hero__mark {
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 199, 177, 0.8);
  background: rgba(250, 247, 241, 0.28);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.services-hero__mark-image {
  width: 100%;
  max-width: 10.5rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(155, 125, 58, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.services-hero__mark:hover {
  transform: scale(1.03);
  border-color: rgba(190, 168, 126, 0.9);
  box-shadow: 0 22px 45px rgba(155, 125, 58, 0.08);
}

.services-hero__mark:hover .services-hero__mark-image {
  transform: scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(155, 125, 58, 0.16));
}

.services-intro-strip {
  padding: 4rem 0;
  background: rgba(241, 236, 227, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-intro-wrap {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
}

.services-intro-wrap p {
  margin: 0 0 3rem;
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
}

.services-intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.services-intro-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-intro-divider {
  width: 1px;
  height: 1.5rem;
  background: var(--border);
}

.services-listing {
  background: var(--background);
}

.service-detail {
  position: relative;
  padding: 6.5rem 0;
}

.service-detail__line {
  width: 100%;
  height: 1px;
  margin-bottom: 5rem;
  background: rgba(155, 125, 58, 0.2);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  gap: 4rem 5rem;
  align-items: center;
}

.service-detail__content {
  position: relative;
}

.service-detail--reverse .service-detail__content {
  order: 2;
}

.service-detail--reverse .service-detail__visual {
  order: 1;
}

.service-detail__number {
  position: absolute;
  left: -0.5rem;
  top: -5.4rem;
  color: rgba(155, 125, 58, 0.08);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.service-detail__category {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-detail__title {
  margin: 0 0 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.service-detail__copy {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.service-detail__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.service-detail__bullets {
  display: grid;
  gap: 0.95rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.service-detail__bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.75;
}

.service-detail__bullets li::before {
  content: "\2014";
  color: var(--primary);
}

.service-detail__visual {
  position: relative;
  min-height: 0;
}

.service-detail__visual-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(227, 221, 210, 0.75);
  background: rgba(241, 236, 227, 0.42);
  overflow: hidden;
}

.service-detail__visual-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(155, 125, 58, 0.12);
  transition: transform 0.7s ease;
  z-index: 1;
}

.service-detail__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(155, 125, 58, 0.05) 2px, transparent 2.5px);
  background-size: 15px 15px;
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
}

.service-detail__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-detail__visual-frame--contain {
  background: linear-gradient(180deg, rgba(252, 250, 246, 0.96) 0%, rgba(241, 236, 227, 0.72) 100%);
}

.service-detail__visual-frame--contain img {
  padding: 2rem;
  object-fit: contain;
}

.service-detail__visual-watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6rem, 14vw, 10rem);
  font-style: italic;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 1;
}

.service-detail:hover .service-detail__visual-frame::before {
  transform: scale(0.96);
}

.service-detail:hover .service-detail__visual-frame img {
  transform: scale(1.04);
}

.services-cta-band {
  background: #9b7d3a;
  color: #fff;
  padding: 6rem 0;
}

.services-cta-band__wrap {
  max-width: 54rem;
  margin: 0 auto;
  text-align: center;
}

.services-cta-band h2 {
  margin: 0 0 1.5rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.08;
}

.services-cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.services-cta-band .outline-btn--light,
.services-cta-band .primary-btn {
  margin-top: 2rem;
}

.services-cta-band small {
  display: block;
  max-width: 42rem;
  margin: 2.5rem auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .services-hero__grid,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
  .services-hero__mark {
    display: none;
  }
  .service-detail--reverse .service-detail__content,
  .service-detail--reverse .service-detail__visual {
    order: initial;
  }
}

@media (max-width: 900px) {
  .services-page .services-hero {
    padding-top: 7rem;
  }
  .service-detail {
    padding: 5rem 0;
  }
  .service-detail__line {
    margin-bottom: 3.5rem;
  }
}

@media (max-width: 640px) {
  .services-page .services-hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  .services-hero h1 {
    font-size: 3.25rem;
  }
  .services-hero__lead {
    font-size: 1.8rem;
  }
  .services-intro-strip {
    padding: 3rem 0;
  }
  .services-intro-wrap p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .services-intro-divider {
    display: none;
  }
  .service-detail__number {
    top: -4rem;
    left: 0;
    font-size: 4.8rem;
  }
  .service-detail__title {
    font-size: 2.4rem;
  }
  .service-detail__copy p,
  .service-detail__bullets li {
    font-size: 0.94rem;
  }
  .services-cta-band {
    padding: 4rem 0;
  }
}

.about-page .about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 4rem;
}

.about-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.about-hero__lead {
  margin: 1.35rem 0 0;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.05;
}

.about-hero__mark {
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 199, 177, 0.8);
  background: rgba(250, 247, 241, 0.28);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-hero__mark-image {
  width: 100%;
  max-width: 10.5rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(155, 125, 58, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-hero__mark:hover {
  transform: scale(1.03);
  border-color: rgba(190, 168, 126, 0.9);
  box-shadow: 0 22px 45px rgba(155, 125, 58, 0.08);
}

.about-hero__mark:hover .about-hero__mark-image {
  transform: scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(155, 125, 58, 0.16));
}

.about-mission {
  background: var(--background);
}

.about-mission__wrap {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.about-section-label {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-mission__quote {
  margin: 0 0 2.5rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.about-mission__copy {
  max-width: 44rem;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1.35rem;
  text-align: left;
}

.about-mission__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.about-mission__line {
  width: 6rem;
  height: 1px;
  margin: 0 auto;
  background: var(--primary);
}

.about-stats-band {
  padding: 4rem 0;
  background: rgba(241, 236, 227, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-stat {
  padding: 1rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat strong {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-story {
  background: var(--background);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  gap: 4rem 5rem;
  align-items: center;
}

.about-story__content h2,
.about-values h2,
.about-team__intro h2 {
  margin: 0 0 2rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.about-story__content {
  display: grid;
  gap: 1.35rem;
}

.about-story__content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.about-story__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(227, 221, 210, 0.75);
  background: linear-gradient(180deg, rgba(252, 250, 246, 0.96) 0%, rgba(241, 236, 227, 0.72) 100%);
}

.about-story__visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(155, 125, 58, 0.12);
  transition: transform 0.7s ease;
  z-index: 1;
}

.about-story__visual::after {
  content: none;
}

.about-story__visual img {
  width: 100%;
  height: 100%;
  padding: 2rem;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.about-story__visual:hover::before {
  transform: scale(0.96);
}

.about-story__visual:hover img {
  transform: scale(1.02);
}

.about-values {
  background: rgba(241, 236, 227, 0.3);
}

.about-values h2,
.about-team__intro {
  text-align: center;
}

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

.about-value-card {
  padding: 2.75rem 2rem;
  border: 1px solid var(--border);
  background: rgba(252, 250, 246, 0.95);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 125, 58, 0.3);
  box-shadow: var(--shadow);
}

.about-value-card__line {
  width: 2rem;
  height: 1px;
  margin: 0 auto 1.75rem;
  background: var(--primary);
}

.about-value-card h3 {
  margin: 0 0 1rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-team {
  background: var(--background);
}

.about-team__intro {
  max-width: 44rem;
  margin: 0 auto 4.5rem;
}

.about-team__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.about-team-card {
  text-align: center;
}

.about-team-card__avatar {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155, 125, 58, 0.4);
  background: rgba(241, 236, 227, 0.48);
  color: rgba(155, 125, 58, 0.65);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.about-team-card:hover .about-team-card__avatar {
  transform: scale(1.05);
  color: var(--primary);
  border-color: rgba(155, 125, 58, 0.65);
}

.about-team-card h3 {
  margin: 0 0 0.45rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
}

.about-team-card__title {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 5.5rem 0;
}

.about-cta__wrap {
  max-width: 48rem;
  margin: 0 auto;
}

.about-cta h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.08;
}

.about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-cta .outline-btn--light,
.about-cta .primary-btn {
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .about-hero__grid,
  .about-story__grid,
  .about-values-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-hero__mark {
    display: none;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat:nth-child(2) {
    border-right: 0;
  }
  .about-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
  }
  .about-stat:nth-child(n + 3) {
    padding-top: 2rem;
  }
}

@media (max-width: 900px) {
  .about-page .about-hero {
    padding-top: 7rem;
  }
}

@media (max-width: 640px) {
  .about-page .about-hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  .about-hero h1 {
    font-size: 3.2rem;
  }
  .about-hero__lead {
    font-size: 1.8rem;
  }
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1rem;
  }
  .about-stat:last-child {
    border-bottom: 0;
  }
  .about-stat:nth-child(-n + 2) {
    padding-bottom: 1.5rem;
  }
  .about-stat:nth-child(n + 3) {
    padding-top: 1.5rem;
  }
  .about-mission__quote,
  .about-story__content h2,
  .about-values h2,
  .about-team__intro h2,
  .about-cta h2 {
    font-size: 2.4rem;
  }
}

.insights-page .insights-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
}

.insights-page .insights-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 4rem;
}

.insights-page .insights-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.insights-page .insights-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.insights-page .insights-hero__lead {
  margin: 1.2rem 0 0;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.08;
}

.insights-page .insights-hero__line {
  width: 6rem;
  height: 1px;
  margin-top: 2rem;
  background: var(--primary);
}

.insights-page .insights-hero__mark {
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 199, 177, 0.8);
  background: rgba(250, 247, 241, 0.28);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.insights-page .insights-hero__mark-image {
  width: 100%;
  max-width: 10.5rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(155, 125, 58, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.insights-page .insights-hero__mark:hover {
  transform: scale(1.03);
  border-color: rgba(190, 168, 126, 0.9);
  box-shadow: 0 22px 45px rgba(155, 125, 58, 0.08);
}

.insights-page .insights-hero__mark:hover .insights-hero__mark-image {
  transform: scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(155, 125, 58, 0.16));
}

.insights-page .insights-filter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 30;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(227, 221, 210, 0.6);
  border-bottom: 1px solid var(--border);
  background: rgba(248, 245, 239, 0.95);
  backdrop-filter: blur(12px);
}

.insights-page .insights-filter-scroll {
  overflow-x: auto;
  scrollbar-width: none;
}

.insights-page .insights-filter-scroll::-webkit-scrollbar {
  display: none;
}

.insights-page .insights-filter-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.insights-page .insights-filter-btn {
  padding: 0.72rem 1rem;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.insights-page .insights-filter-btn:hover {
  border-color: rgba(155, 125, 58, 0.4);
  transform: translateY(-1px);
}

.insights-page .insights-filter-btn.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.insights-page .insights-featured {
  padding: 4.5rem 0 2.5rem;
}

.insights-page .insights-featured__card {
  cursor: pointer;
}

.insights-page .insights-featured__media {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: rgba(241, 236, 227, 0.4);
  margin-bottom: 2rem;
}

.insights-page .insights-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 9, 0.02) 22%, rgba(14, 12, 9, 0.58) 100%);
}

.insights-page .insights-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.insights-page .insights-featured__card:hover .insights-featured__media img {
  transform: scale(1.04);
}

.insights-page .insights-meta {
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insights-page .insights-featured__card h2 {
  max-width: 56rem;
  margin: 1rem 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
  transition: color 0.25s ease;
}

.insights-page .insights-featured__card:hover h2 {
  color: var(--primary);
}

.insights-page .insights-featured__card p {
  max-width: 48rem;
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
}

.insights-page .insights-featured__footer,
.insights-page .insight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.insights-page .insights-readtime,
.insights-page .insights-readlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insights-page .insights-readtime {
  color: var(--muted);
}

.insights-page .insights-readtime svg,
.insights-page .insights-readlink svg {
  width: 0.82rem;
  height: 0.82rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights-page .insights-readlink {
  color: var(--primary);
  transition: gap 0.25s ease;
}

.insights-page .insights-featured__card:hover .insights-readlink,
.insights-page .insight-card:hover .insights-readlink {
  gap: 0.75rem;
}

.insights-page .insights-grid-section {
  padding: 2.5rem 0 5rem;
}

.insights-page .insights-grid-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insights-page .insights-grid-label::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: var(--border);
}

.insights-page .insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.insights-page .insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
}

.insights-page .insight-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 1.4rem;
  background: rgba(241, 236, 227, 0.42);
}

.insights-page .insight-card__media::after {
  content: "Read Article";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(155, 125, 58, 0.86);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.insights-page .insight-card:hover .insight-card__media::after {
  opacity: 1;
}

.insights-page .insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.insights-page .insight-card:hover .insight-card__media img {
  transform: scale(1.04);
}

.insights-page .insight-card h3 {
  margin: 0.85rem 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.18;
  transition: color 0.25s ease;
}

.insights-page .insight-card:hover h3 {
  color: var(--primary);
}

.insights-page .insight-card p {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
  flex: 1 1 auto;
}

.insights-page .insights-newsletter {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(241, 236, 227, 0.55);
}

.insights-page .insights-newsletter__wrap {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.insights-page .insights-newsletter__wrap h2 {
  margin: 0 0 1.25rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.insights-page .insights-newsletter__wrap p {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.insights-page .insights-newsletter__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.insights-page .insights-newsletter__form input {
  width: 100%;
  max-width: 18rem;
  min-height: 3.2rem;
  border: 1px solid var(--border);
  background: rgba(248, 245, 239, 0.92);
  padding: 0.9rem 1rem;
  color: var(--foreground);
  font: inherit;
  font-size: 0.95rem;
}

.insights-page .insights-newsletter__form .primary-btn {
  min-height: 3.2rem;
  margin-top: 0;
  padding: 0.9rem 1.8rem;
}

.insights-page .insights-newsletter__form input:focus {
  outline: none;
  border-color: rgba(155, 125, 58, 0.75);
  box-shadow: 0 0 0 3px rgba(155, 125, 58, 0.08);
  background: #fff;
}

.insights-page .insights-newsletter__success {
  display: none;
  margin-top: 1.25rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-page .insights-newsletter__success.is-visible {
  display: block;
}

@media (max-width: 1100px) {
  .insights-page .insights-hero__grid,
  .insights-page .insights-grid {
    grid-template-columns: 1fr;
  }
  .insights-page .insights-hero__mark {
    display: none;
  }
}

@media (max-width: 900px) {
  .insights-page .insights-hero {
    padding-top: 7rem;
  }
  .insights-filter-bar {
    top: 76px;
  }
}

@media (max-width: 640px) {
  .insights-page .insights-hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  .insights-page .insights-hero h1 {
    font-size: 3.1rem;
  }
  .insights-page .insights-hero__lead,
  .insights-page .insights-newsletter__wrap h2 {
    font-size: 1.8rem;
  }
  .insights-page .insights-featured__card h2 {
    font-size: 2.25rem;
  }
  .insights-page .insight-card h3 {
    font-size: 1.5rem;
  }
  .insights-page .insights-newsletter__form {
    flex-direction: column;
  }
  .insights-page .insights-newsletter__form input,
  .insights-page .insights-newsletter__form .primary-btn {
    max-width: none;
    width: 100%;
  }
}

.insights-page .insights-section-label,
.insights-page .insights-grid-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insights-page .insights-section-label div,
.insights-page .insights-grid-label div {
  height: 1px;
  flex: 1 1 auto;
  background: var(--border);
}

.insights-page .insights-grid-count {
  color: var(--muted);
}

.insights-page .insights-featured {
  padding: 4.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.insights-page .insights-featured__card {
  cursor: default;
}

.insights-page .insights-featured__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 3rem;
  align-items: center;
  cursor: pointer;
}

.insights-page .insights-featured__media {
  margin-bottom: 0;
  aspect-ratio: 16 / 10;
}

.insights-page .insights-featured__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(155, 125, 58, 0.08) 25%, transparent 25%, transparent 50%, rgba(155, 125, 58, 0.08) 50%, rgba(155, 125, 58, 0.08) 75%, transparent 75%, transparent);
  background-size: 24px 24px;
  z-index: 1;
}

.insights-page .insights-featured__hover,
.insights-page .insight-card__hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.insights-page .insights-featured__hover {
  background: rgba(155, 125, 58, 0.1);
  backdrop-filter: blur(3px);
}

.insights-page .insights-featured__hover-btn,
.insights-page .insight-card__hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(190, 168, 126, 0.35);
  background: rgba(248, 245, 239, 0.92);
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-page .insights-featured__hover-btn svg,
.insights-page .insight-card__hover-btn svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights-page .insights-featured__time {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(26, 24, 18, 0.6);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insights-page .insights-featured__time svg {
  width: 0.8rem;
  height: 0.8rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights-page .insights-featured__content {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.insights-page .insights-featured__content h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
}

.insights-page .insights-featured__accent {
  width: 2rem;
  height: 1px;
  background: var(--primary);
}

.insights-page .insights-featured__content p {
  margin: 0;
  max-width: none;
}

.insights-page .insights-featured__layout:hover .insights-featured__hover,
.insights-page .insight-card:hover .insight-card__hover {
  opacity: 1;
}

.insights-page .insights-grid-section {
  padding: 3.2rem 0 5rem;
}

.insights-page .insights-empty-state {
  display: none;
  padding: 4rem 0 2rem;
  text-align: center;
}

.insights-page .insights-empty-state.is-visible {
  display: block;
}

.insights-page .insights-empty-state p {
  margin: 0;
  color: rgba(101, 94, 86, 0.5);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-style: italic;
}

.insights-page .insights-grid {
  gap: 3rem 2.5rem;
}

.insights-page .insight-card__media {
  margin-bottom: 1.5rem;
}

.insights-page .insight-card__media::after {
  display: none;
}

.insights-page .insight-card__hover {
  background: rgba(155, 125, 58, 0.08);
  backdrop-filter: blur(2px);
}

.insights-page .insight-card__group {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 3;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(155, 125, 58, 0.78);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-page .insight-card h3 {
  margin-top: 0;
  flex: 1 1 auto;
}

.insights-page .insight-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.insights-page .insights-newsletter__form.is-hidden {
  display: none;
}

.insights-page .insights-newsletter__success {
  margin-top: 0;
}

.insights-page .insights-newsletter__success-line {
  width: 2rem;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--primary);
}

.insights-page .insights-newsletter__success p {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-style: italic;
}

.insights-page .insights-newsletter__success span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
}

body.insights-modal-open {
  overflow: hidden;
}

.insights-page .insights-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
}

.insights-page .insights-modal.is-open {
  pointer-events: auto;
}

.insights-page .insights-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 18, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insights-page .insights-modal.is-open .insights-modal__backdrop {
  opacity: 1;
}

.insights-page .insights-modal__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 52rem);
  background: #fafaf7;
  box-shadow: -24px 0 70px rgba(26, 24, 18, 0.18);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.insights-page .insights-modal.is-open .insights-modal__panel {
  transform: translateX(0);
}

.insights-page .insights-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: #fafaf7;
  flex-shrink: 0;
}

.insights-page .insights-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.insights-page .insights-modal__brand-logo {
  width: 1.7rem;
  height: 1.7rem;
  object-fit: contain;
}

.insights-page .insights-modal__brand span span {
  color: var(--primary);
  font-style: italic;
}

.insights-page .insights-modal__close {
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.insights-page .insights-modal__close:hover {
  border-color: var(--primary);
  color: var(--foreground);
}

.insights-page .insights-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: currentColor;
}

.insights-page .insights-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.insights-page .insights-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.insights-page .insights-modal__body {
  flex: 1 1 auto;
  overflow-y: auto;
}

.insights-page .insights-modal__hero {
  position: relative;
  aspect-ratio: 21 / 8;
  overflow: hidden;
  background: rgba(241, 236, 227, 0.42);
}

.insights-page .insights-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-page .insights-modal__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(155, 125, 58, 0.08) 25%, transparent 25%, transparent 50%, rgba(155, 125, 58, 0.08) 50%, rgba(155, 125, 58, 0.08) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  z-index: 1;
}

.insights-page .insights-modal__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 18, 0.05), rgba(26, 24, 18, 0.58));
  z-index: 2;
}

.insights-page .insights-modal__hero-badge {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 3;
  padding: 0.55rem 0.85rem;
  background: rgba(250, 250, 247, 0.95);
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insights-page .insights-modal__article {
  padding: 2.5rem 3rem 3rem;
}

.insights-page .insights-modal__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-page .insights-modal__meta-dot {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 999px;
  background: var(--border);
}

.insights-page .insights-modal__meta-read {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.insights-page .insights-modal__meta-read svg,
.insights-page .insights-modal__cta svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights-page .insights-modal__article h1 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.insights-page .insights-modal__divider {
  width: 2.5rem;
  height: 1px;
  margin: 1.7rem 0 2rem;
  background: var(--primary);
}

.insights-page .insights-modal__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.insights-page .insights-modal__author-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(190, 168, 126, 0.24);
  background: rgba(155, 125, 58, 0.08);
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.insights-page .insights-modal__author p {
  margin: 0;
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 500;
}

.insights-page .insights-modal__author span {
  display: block;
  margin-top: 0.25rem;
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.insights-page .insights-modal__content {
  display: grid;
  gap: 1.4rem;
}

.insights-page .insights-modal__content p,
.insights-page .insights-modal__content li {
  margin: 0;
  color: rgba(26, 24, 18, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

.insights-page .insights-modal__content h3 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.insights-page .insights-modal__subhead {
  padding-top: 0.35rem;
}

.insights-page .insights-modal__subhead-line {
  width: 1.35rem;
  height: 1px;
  margin-bottom: 0.8rem;
  background: var(--primary);
}

.insights-page .insights-modal__subhead h2 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
}

.insights-page .insights-modal__content ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insights-page .insights-modal__content li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.insights-page .insights-modal__content li span:first-child {
  color: var(--primary);
  flex: 0 0 auto;
}

.insights-page .insights-modal__content blockquote {
  margin: 0.5rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 2px solid var(--primary);
}

.insights-page .insights-modal__content blockquote p {
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1.25;
}

.insights-page .insights-modal__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.insights-page .insights-modal__footer p {
  margin: 0 0 1.5rem;
  color: rgba(101, 94, 86, 0.65);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.8;
}

.insights-page .insights-modal__cta {
  margin-top: 0;
  gap: 0.55rem;
}

@media (max-width: 1100px) {
  .insights-page .insights-featured__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .insights-page .insights-modal__panel {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .insights-page .insights-section-label,
  .insights-page .insights-grid-label {
    gap: 0.75rem;
  }

  .insights-page .insights-featured__content h2 {
    font-size: 2.2rem;
  }

  .insights-page .insights-modal__header {
    padding: 1rem 1rem 0.95rem;
  }

  .insights-page .insights-modal__hero-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .insights-page .insights-modal__article {
    padding: 1.7rem 1.2rem 2rem;
  }

  .insights-page .insights-modal__content blockquote p {
    font-size: 1.4rem;
  }
}

.legal-page .legal-hero {
  padding: 3rem 0 3.5rem;
}

.legal-page .legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 4rem;
}

.legal-page .legal-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legal-page .legal-hero h1 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-page .legal-hero__lead {
  margin: 1rem 0 0;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.12;
}

.legal-page .legal-hero__mark {
  width: 12rem;
  height: 12rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 199, 177, 0.8);
  background: rgba(250, 247, 241, 0.28);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.legal-page .legal-hero__mark-image {
  width: 100%;
  max-width: 10.5rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(155, 125, 58, 0.12));
}

.legal-page .legal-content {
  padding-top: 1rem;
}

.legal-page .legal-content__wrap {
  max-width: 52rem;
}

.legal-page .legal-content__intro {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.legal-page .legal-block + .legal-block {
  margin-top: 2rem;
}

.legal-page .legal-block h2 {
  margin: 0 0 0.9rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
}

.legal-page .legal-block p,
.legal-page .legal-block li {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
}

.legal-page .legal-block p {
  margin: 0;
}

.legal-page .legal-block p + p {
  margin-top: 1rem;
}

.legal-page .legal-block ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-page .legal-block li {
  position: relative;
  padding-left: 1.3rem;
}

.legal-page .legal-block li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.legal-page .legal-block a {
  color: var(--primary);
}

@media (max-width: 1100px) {
  .legal-page .legal-hero__grid {
    grid-template-columns: 1fr;
  }

  .legal-page .legal-hero__mark {
    display: none;
  }
}

@media (max-width: 640px) {
  .legal-page .legal-hero {
    padding: 2.5rem 0 2.5rem;
  }

  .legal-page .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-page .legal-hero__lead {
    font-size: 1.7rem;
  }

  .legal-page .legal-block h2 {
    font-size: 1.7rem;
  }
}

.opportunities-page .opportunities-hero {
  min-height: auto;
  display: block;
  padding: 1rem 0 3rem;
  overflow: hidden;
}

.opportunities-page .opportunities-hero .container {
  margin-top: 0;
  padding-top: 0;
}

.opportunities-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: 4rem;
  align-items: start;
}

.opportunities-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.opportunities-page .about-section-label {
  font-size: 10px;
}

.opportunities-hero h1 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 6.6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.opportunities-hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #9b7d3a, #c9a84c, #9b7d3a);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
}

.opportunities-hero__copy p {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
}

.opportunities-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.opportunities-hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(227, 221, 210, 0.7);
  overflow: hidden;
  background: rgba(241, 236, 227, 0.42);
}

.opportunities-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opportunities-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.18) 0%, rgba(248, 245, 239, 0.08) 100%),
    radial-gradient(circle at 68% 38%, rgba(171, 139, 63, 0.08), transparent 42%);
}

.opportunities-hero__mark {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8rem;
  height: 8rem;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.opportunities-hero__mark-image {
  width: 100%;
  max-width: 7.6rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(155, 125, 58, 0.08));
}

.opportunities-hero__caption {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.8rem;
  z-index: 1;
}

.opportunities-hero__caption-line {
  width: 2rem;
  height: 1px;
  margin-bottom: 0.8rem;
  background: rgba(155, 125, 58, 0.45);
}

.opportunities-hero__caption p {
  margin: 0;
  color: rgba(117, 109, 97, 0.7);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opportunities-stats {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(241, 236, 227, 0.5);
}

.opportunities-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.opportunities-stat {
  padding: 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.opportunities-stat:last-child {
  border-right: 0;
}

.opportunities-stat strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
}

.opportunities-stat span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opportunities-advantage__intro,
.opportunities-profiles__intro,
.opportunities-faq__intro {
  max-width: 42rem;
  margin-bottom: 4.5rem;
}

.opportunities-advantage__intro h2,
.opportunities-benefits__copy h2,
.opportunities-profiles__intro h2,
.opportunities-journey__intro h2,
.opportunities-faq__intro h2,
.opportunities-apply__copy h2 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.opportunities-advantage__intro p,
.opportunities-benefits__copy p,
.opportunities-profiles__intro p,
.opportunities-apply__copy p {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}

.opportunities-advantage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
}

.opportunities-advantage__card {
  position: relative;
  padding: 2.8rem 2.8rem 2.6rem;
  transition: background-color 0.3s ease;
}

.opportunities-advantage__card:hover {
  background: rgba(241, 236, 227, 0.3);
}

.opportunities-advantage__card--right {
  border-left: 1px solid var(--border);
}

.opportunities-advantage__card--top {
  border-bottom: 1px solid var(--border);
}

.opportunities-advantage__number {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  color: rgba(155, 125, 58, 0.08);
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.9;
}

.opportunities-card-line {
  width: 2rem;
  height: 1px;
  margin-bottom: 1.6rem;
  background: var(--primary);
  transition: width 0.3s ease;
}

.opportunities-advantage__card:hover .opportunities-card-line,
.opportunities-profile:hover .opportunities-card-line {
  width: 3.5rem;
}

.opportunities-advantage__card h3,
.opportunities-profile h3 {
  margin: 0 0 1rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
}

.opportunities-advantage__card p,
.opportunities-profile p,
.opportunities-journey__step p,
.opportunities-testimonial__role,
.opportunities-faq__answer,
.opportunities-apply__list span,
.opportunities-form__note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.opportunities-benefits {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(241, 236, 227, 0.3);
}

.opportunities-benefits__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: center;
}

.opportunities-offerings {
  display: grid;
  gap: 0;
}

.opportunities-offering {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(227, 221, 210, 0.6);
}

.opportunities-offering:last-child {
  border-bottom: 0;
}

.opportunities-check {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
  border: 1px solid rgba(155, 125, 58, 0.18);
  background: rgba(155, 125, 58, 0.08);
}

.opportunities-check svg {
  width: 0.8rem;
  height: 0.8rem;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opportunities-check + span {
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}

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

.opportunities-profile {
  padding: 2.6rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.opportunities-profile:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 125, 58, 0.3);
  box-shadow: var(--shadow);
}

.opportunities-profile__number {
  display: block;
  margin-bottom: 1rem;
  color: rgba(155, 125, 58, 0.15);
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.9;
}

.opportunities-journey {
  position: relative;
  overflow: hidden;
  background: #1a1812;
}

.opportunities-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(155, 125, 58, 0.12), transparent 55%);
  pointer-events: none;
}

.opportunities-journey__inner {
  position: relative;
  z-index: 1;
}

.opportunities-journey__intro {
  margin-bottom: 3.5rem;
}

.opportunities-journey__intro h2 {
  color: #fff;
}

.opportunities-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.opportunities-journey__step {
  padding: 2rem 2rem 2.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.opportunities-journey__step:last-child {
  border-right: 0;
}

.opportunities-journey__step strong {
  display: block;
  margin-bottom: 1rem;
  color: rgba(155, 125, 58, 0.4);
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 0.9;
}

.opportunities-journey__step h3 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.opportunities-journey__step p {
  color: rgba(255, 255, 255, 0.52);
}

.opportunities-testimonial {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(241, 236, 227, 0.3);
}

.opportunities-testimonial__wrap {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.opportunities-testimonial__quote-mark {
  color: rgba(155, 125, 58, 0.3);
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
}

.opportunities-testimonial blockquote {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.opportunities-testimonial__line {
  width: 2.5rem;
  height: 1px;
  margin: 2rem auto 1.5rem;
  background: var(--primary);
}

.opportunities-testimonial__name {
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.opportunities-testimonial__role {
  margin-top: 0.4rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.opportunities-faq__list {
  border-top: 1px solid var(--border);
}

.opportunities-faq__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.25s ease, border-left-color 0.25s ease;
}

.opportunities-faq__item.is-open {
  padding-left: 1.25rem;
  border-left: 2px solid var(--primary);
  margin-left: -1.25rem;
}

.opportunities-faq__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.opportunities-faq__question span:first-child {
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.opportunities-faq__toggle {
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}

.opportunities-faq__answer {
  display: none;
  max-width: 42rem;
  margin-top: 1rem;
}

.opportunities-faq__item.is-open .opportunities-faq__answer {
  display: block;
}

.opportunities-apply {
  border-top: 1px solid var(--border);
  background: rgba(241, 236, 227, 0.4);
}

.opportunities-apply__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4.5rem;
  align-items: start;
}

.opportunities-apply__copy {
  position: sticky;
  top: 7rem;
}

.opportunities-apply__quote {
  margin: 1.8rem 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary);
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.opportunities-apply__list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.opportunities-apply__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.opportunities-apply__dot {
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--primary);
}

.opportunities-form {
  padding: 2.8rem 3rem;
  background: #fff;
  border: 1px solid var(--border);
}

.opportunities-form__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.opportunities-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.opportunities-form__field {
  display: grid;
  gap: 0.35rem;
}

.opportunities-form input,
.opportunities-form select,
.opportunities-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(248, 245, 239, 0.92);
  padding: 0.9rem 1rem;
  color: var(--foreground);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.opportunities-form input:focus,
.opportunities-form select:focus,
.opportunities-form textarea:focus {
  outline: none;
  border-color: rgba(155, 125, 58, 0.75);
  box-shadow: 0 0 0 3px rgba(155, 125, 58, 0.08);
}

.opportunities-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.opportunities-form__note {
  margin: 0.8rem 0 0;
  text-align: center;
}

.opportunities-form__success {
  display: none;
  padding: 2.8rem 2.4rem;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
}

.opportunities-form__success.is-visible {
  display: block;
}

.opportunities-form__success-line {
  width: 2.5rem;
  height: 1px;
  margin: 0 auto 1.4rem;
  background: var(--primary);
}

.opportunities-form__success h3 {
  margin: 0 0 1rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.opportunities-form__success p {
  max-width: 24rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .opportunities-hero__grid,
  .opportunities-benefits__grid,
  .opportunities-apply__grid,
  .opportunities-profiles__grid,
  .opportunities-journey__grid {
    grid-template-columns: 1fr;
  }
  .opportunities-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opportunities-stat:nth-child(2) {
    border-right: 0;
  }
  .opportunities-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .opportunities-advantage__grid {
    grid-template-columns: 1fr;
  }
  .opportunities-advantage__card--right {
    border-left: 0;
  }
  .opportunities-advantage__card--top {
    border-bottom: 1px solid var(--border);
  }
  .opportunities-apply__copy {
    position: relative;
    top: auto;
  }
  .opportunities-journey__step {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .opportunities-journey__step:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .opportunities-page .opportunities-hero {
    padding-top: 7rem;
  }
}

@media (max-width: 640px) {
  .opportunities-page .opportunities-hero {
    min-height: auto;
    padding: 6rem 0 2rem;
  }
  .opportunities-hero h1 {
    font-size: 3.2rem;
  }
  .opportunities-hero__copy p,
  .opportunities-advantage__intro p,
  .opportunities-benefits__copy p,
  .opportunities-profiles__intro p,
  .opportunities-apply__copy p {
    font-size: 0.95rem;
  }
  .opportunities-stats__grid,
  .opportunities-form__grid {
    grid-template-columns: 1fr;
  }
  .opportunities-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .opportunities-stat:last-child {
    border-bottom: 0;
  }
  .opportunities-advantage__card,
  .opportunities-profile,
  .opportunities-form {
    padding: 2rem 1.5rem;
  }
}

.financial-hub-page .financial-hub-hero {
  position: relative;
  z-index: 1;
  min-height: 52vh;
  padding: 8rem 0 2rem;
  overflow: hidden;
}

.financial-hub-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 22rem);
  gap: 4rem;
  align-items: center;
}

.financial-hub-hero__copy {
  max-width: 40rem;
}

.financial-hub-hero__eyebrow,
.financial-hub-cta__eyebrow,
.hub-results__eyebrow,
.hub-field-group__title,
.hub-field__label {
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.financial-hub-hero h1 {
  margin: 1rem 0 1.5rem;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
}

.financial-hub-hero h1 span,
.financial-hub-cta h2 span {
  display: block;
  color: var(--primary);
  font-style: italic;
}

.financial-hub-hero__copy p:not(.financial-hub-hero__eyebrow) {
  max-width: 34rem;
  margin: 0 0 2rem;
}

.financial-hub-hero__mark {
  width: 12rem;
  height: 12rem;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 199, 177, 0.8);
  background: rgba(250, 247, 241, 0.28);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.financial-hub-hero__mark-image {
  width: 100%;
  max-width: 10.5rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(155, 125, 58, 0.12));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.financial-hub-hero__mark:hover {
  transform: scale(1.03);
  border-color: rgba(190, 168, 126, 0.9);
  box-shadow: 0 22px 45px rgba(155, 125, 58, 0.08);
}

.financial-hub-hero__mark:hover .financial-hub-hero__mark-image {
  transform: scale(1.02);
  filter: drop-shadow(0 18px 34px rgba(155, 125, 58, 0.16));
}

.financial-hub-strip {
  position: relative;
  z-index: 1;
  padding: 2.8rem 0;
  background: rgba(241, 236, 227, 0.64);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.financial-hub-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.financial-hub-strip__item {
  padding: 0.4rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.financial-hub-strip__item:last-child {
  border-right: 0;
}

.financial-hub-strip__item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.financial-hub-strip__item span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.financial-hub-tools {
  position: relative;
  z-index: 1;
}

.financial-hub-selector {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hub-selector__btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid var(--border);
  background: #fff;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hub-selector__btn:hover {
  border-color: rgba(155, 125, 58, 0.4);
  transform: translateY(-2px);
}

.hub-selector__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
}

.hub-selector__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
}

.hub-selector__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hub-selector__btn.is-active .hub-selector__icon,
.hub-selector__btn.is-active .hub-selector__label {
  color: #fff;
}

.hub-selector__label {
  display: block;
  color: var(--foreground);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.financial-hub-calculator {
  background: #fff;
  border: 1px solid var(--border);
}

.financial-hub-calculator__header {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.financial-hub-calculator__tagline {
  margin: 0 0 0.45rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.financial-hub-calculator__header h2 {
  margin: 0;
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 300;
}

.financial-hub-calculator__body {
  padding: 2.5rem;
}

.hub-calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.95fr);
  gap: 2.5rem;
  align-items: start;
}

.hub-calc-form,
.hub-field-group {
  display: grid;
  gap: 1rem;
}

.hub-field-group + .hub-field-group {
  margin-top: 1rem;
}

.hub-field {
  display: grid;
  gap: 0.35rem;
}

.hub-field__control {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  background: rgba(248, 245, 239, 0.92);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hub-field__control:focus-within,
.hub-field__select:focus {
  border-color: rgba(155, 125, 58, 0.75);
  box-shadow: 0 0 0 3px rgba(155, 125, 58, 0.08);
}

.hub-field__addon {
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  background: rgba(241, 236, 227, 0.72);
  color: var(--muted);
  font-size: 0.88rem;
  border-right: 1px solid var(--border);
}

.hub-field__control .hub-field__addon:last-child {
  border-right: 0;
  border-left: 1px solid var(--border);
}

.hub-field__input,
.hub-field__select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  background: rgba(248, 245, 239, 0.92);
  padding: 0.9rem 1rem;
  color: var(--foreground);
  font: inherit;
  font-size: 0.94rem;
}

.hub-field__input {
  border: 0;
  background: transparent;
}

.hub-field__input:focus,
.hub-field__select:focus {
  outline: none;
}

.hub-field__hint {
  margin: 0;
  color: rgba(114, 101, 81, 0.75);
  font-size: 0.65rem;
  line-height: 1.5;
}

.hub-extra-info {
  margin-top: 0.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(155, 125, 58, 0.2);
  background: rgba(155, 125, 58, 0.05);
}

.hub-extra-info__title {
  margin: 0 0 0.45rem;
  color: var(--primary);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hub-extra-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.hub-calc-results {
  padding: 2rem;
  background: rgba(241, 236, 227, 0.55);
  border: 1px solid var(--border);
}

.hub-results__eyebrow {
  margin: 0 0 1.2rem;
}

.hub-result-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(216, 205, 190, 0.7);
}

.hub-result-line.is-highlight {
  margin: 0 -0.8rem;
  padding: 0.9rem 0.8rem;
  background: rgba(155, 125, 58, 0.06);
  border-radius: 0.15rem;
}

.hub-result-line span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-result-line strong {
  color: var(--foreground);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  text-align: right;
}

.hub-result-line.is-highlight strong {
  color: var(--primary);
}

.hub-results__note {
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(216, 205, 190, 0.7);
}

.hub-results__note p,
.financial-hub-disclaimer {
  margin: 0;
  color: rgba(114, 101, 81, 0.75);
  font-size: 0.68rem;
  line-height: 1.7;
}

.financial-hub-disclaimer {
  max-width: 48rem;
  margin: 2rem auto 0;
  text-align: center;
}

.financial-hub-cta {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
  background: var(--primary);
  text-align: center;
}

.financial-hub-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08), transparent 65%);
  pointer-events: none;
}

.financial-hub-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.financial-hub-cta h2 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
}

.financial-hub-cta h2 span {
  color: rgba(255, 255, 255, 0.9);
}

.financial-hub-cta__inner > p:not(.financial-hub-cta__eyebrow) {
  margin: 1.1rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .financial-hub-hero__grid,
  .hub-calc-layout {
    grid-template-columns: 1fr;
  }

  .financial-hub-selector {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .financial-hub-hero__mark {
    margin: 0 auto;
  }
}

@media (max-width: 800px) {
  .financial-hub-strip__grid {
    grid-template-columns: 1fr;
  }

  .financial-hub-strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .financial-hub-strip__item:last-child {
    border-bottom: 0;
  }

  .financial-hub-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .financial-hub-page .financial-hub-hero {
    min-height: auto;
    padding: 6.5rem 0 2rem;
  }

  .financial-hub-hero h1 {
    font-size: 3.4rem;
  }

  .financial-hub-calculator__header,
  .financial-hub-calculator__body,
  .hub-calc-results {
    padding: 1.6rem;
  }

  .financial-hub-selector {
    grid-template-columns: 1fr 1fr;
  }

  .hub-result-line {
    align-items: flex-start;
    flex-direction: column;
  }
}
