:root {
  --bg: #f6f1e8;
  --bg-alt: #ede5d7;
  --surface: #ffffff;
  --surface-strong: #f7f4ef;
  --surface-dark: #15362d;
  --text: #1d2b24;
  --muted: #5d6a63;
  --brand: #1b4a3a;
  --brand-strong: #123428;
  --brand-soft: #d8e5df;
  --accent: #bf7b4b;
  --accent-soft: #f2e2d2;
  --line: #d9d1c3;
  --line-strong: #c6bba8;
  --success: #2d7858;
  --danger: #b74d3b;
  --shadow-sm: 0 14px 30px rgba(16, 32, 27, 0.08);
  --shadow-md: 0 24px 60px rgba(16, 32, 27, 0.12);
  --shadow-lg: 0 36px 80px rgba(16, 32, 27, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 123, 75, 0.1), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.85rem 1rem;
  color: var(--surface);
  background: var(--brand);
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3.2rem 0;
}

.section--tinted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(237, 229, 215, 0.55) 100%);
}

.section--dark {
  color: var(--surface);
  background:
    linear-gradient(140deg, rgba(12, 34, 27, 0.96), rgba(28, 74, 58, 0.95)),
    radial-gradient(circle at top right, rgba(191, 123, 75, 0.28), transparent 28%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: currentColor;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-header--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header h1,
.section-header h2,
.hero__content h1,
.page-hero__copy h1,
.thanks-card h1,
.legal__content h1 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--brand-strong);
}

.section-header h2,
.section-header h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-header p,
.hero__content p,
.page-hero__copy p,
.thanks-card p,
.legal__content p,
.legal__content li,
.card p,
.benefit-card p,
.type-card p,
.reference-card p,
.process-step p,
.faq details,
.contact-panel p,
.contact-form__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn,
.btn-accent,
.btn-secondary,
.btn-text,
.nav-cta,
.type-card__link,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.3rem;
  padding: 0.95rem 1.4rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.btn,
.nav-cta {
  color: var(--surface);
  background: linear-gradient(135deg, var(--brand) 0%, #245844 100%);
  box-shadow: 0 16px 32px rgba(27, 74, 58, 0.18);
}

.btn:hover,
.btn-accent:hover,
.btn:focus-visible,
.btn-accent:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #154031 0%, #1f5140 100%);
}

.btn-secondary {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 52, 40, 0.14);
  box-shadow: 0 16px 28px rgba(16, 32, 27, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
  background: var(--surface);
  border-color: rgba(18, 52, 40, 0.22);
}

.btn-accent {
  color: var(--surface);
  background: linear-gradient(135deg, var(--accent) 0%, #d09263 100%);
  box-shadow: 0 16px 30px rgba(191, 123, 75, 0.24);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #ad6d41 0%, #c68756 100%);
}

.btn-text,
.type-card__link,
.card-link {
  min-height: auto;
  padding: 0;
  color: var(--brand);
  background: transparent;
  border-radius: 0;
}

.btn-text::after,
.type-card__link::after,
.card-link::after {
  content: "→";
}

.btn-text:hover,
.btn-text:focus-visible,
.type-card__link:hover,
.type-card__link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateX(2px);
}

.hero__content h1,
.page-hero__copy h1,
.section-header h1,
.section-header h2 {
  text-wrap: balance;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 248, 243, 0.82);
  border-bottom: 1px solid rgba(217, 209, 195, 0.6);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.scrolled {
  background: rgba(251, 248, 243, 0.95);
  box-shadow: 0 10px 30px rgba(16, 32, 27, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.42rem 0.8rem 0.42rem 0.42rem;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(246, 241, 232, 0.76) 100%);
  border: 1px solid rgba(18, 52, 40, 0.08);
  border-radius: 28px;
  box-shadow:
    0 18px 38px rgba(16, 32, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 52, 40, 0.12);
  box-shadow:
    0 22px 42px rgba(16, 32, 27, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -12px;
  left: 18%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(18, 52, 40, 0.18) 0%, transparent 74%);
  filter: blur(10px);
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  padding: 0.8rem;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0%, rgba(237, 229, 215, 0.94) 100%);
  border: 1px solid rgba(18, 52, 40, 0.1);
  border-radius: 24px;
  box-shadow:
    0 18px 32px rgba(16, 32, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  isolation: isolate;
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(242, 226, 210, 0.38) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -10px 18px rgba(18, 52, 40, 0.05);
  z-index: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 16px rgba(18, 52, 40, 0.14));
  position: relative;
  z-index: 1;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--brand-strong);
  line-height: 1.1;
}

.brand__subline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.25;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 52, 40, 0.12);
  border-radius: 16px;
}

.menu-toggle svg {
  width: 1.4rem;
  height: 1.4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  color: var(--text);
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-content {
  display: block;
}

.hero {
  position: relative;
  padding: 2.2rem 0 4rem;
  overflow: clip;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(191, 123, 75, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(27, 74, 58, 0.08), transparent 24%);
  pointer-events: none;
}

.hero__layout,
.page-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.6rem;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__content h1,
.page-hero__copy h1,
.thanks-card h1,
.legal__content h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.hero__content p {
  margin-bottom: 1.6rem;
  font-size: 1.1rem;
}

.person-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding: 0.65rem 0.78rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 52, 40, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.person-badge img {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 12px 26px rgba(16, 32, 27, 0.14);
}

.person-badge strong,
.person-badge span {
  display: block;
}

.person-badge strong {
  margin-bottom: 0.15rem;
  color: var(--brand-strong);
}

.person-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.meta-list {
  display: grid;
  gap: 0.55rem;
}

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

.chip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  min-height: auto;
  padding: 0.82rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--brand-strong);
  background: linear-gradient(180deg, rgba(216, 229, 223, 0.48) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(27, 74, 58, 0.1);
  border-radius: 18px;
  box-shadow: none;
  cursor: default;
}

.chip::before {
  content: "";
  width: 0.68rem;
  height: 0.68rem;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 4px rgba(27, 74, 58, 0.08);
}

.meta-list .chip,
.contact-badges .chip {
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.hero__media,
.page-hero__media {
  position: relative;
  min-height: 520px;
}

.hero__frame,
.page-hero__frame,
.type-card__media,
.reference-card__media,
.spotlight__media,
.quote-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero__frame {
  position: absolute;
  inset: 0 4rem 3.5rem 0;
}

.hero__frame img,
.page-hero__frame img,
.type-card__media img,
.reference-card__media img,
.spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame::after,
.page-hero__frame::after,
.type-card__media::after,
.spotlight__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 20, 0) 44%, rgba(10, 25, 20, 0.22) 100%);
  pointer-events: none;
}

.hero__stack {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(58%, 320px);
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 74, 58, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.hero__stack p,
.contact-form__intro p {
  margin-bottom: 0.8rem;
}

.hero__stack strong,
.stat-card strong,
.mini-stat strong,
.process-step strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  color: var(--brand-strong);
}

.hero__secondary {
  position: absolute;
  right: 4.5rem;
  bottom: -2.1rem;
  width: min(42%, 220px);
  aspect-ratio: 1 / 1.16;
  overflow: hidden;
  border-radius: 28px;
  border: 6px solid rgba(251, 248, 243, 0.92);
  box-shadow: var(--shadow-md);
}

.hero__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__floating {
  position: absolute;
  top: 2rem;
  left: -0.9rem;
  max-width: 260px;
  padding: 1rem 1.1rem;
  color: var(--surface);
  background: rgba(18, 52, 40, 0.94);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.hero__floating p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero__floating strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--surface);
}

.trust-strip {
  position: relative;
  margin-top: -1rem;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 74, 58, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.trust-item,
.mini-stat {
  padding: 1.3rem 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
}

.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: 16px;
}

.trust-item__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.trust-item h3,
.type-card h3,
.benefit-card h3,
.reference-card h3,
.service-card h3,
.process-step h3,
.quote-card h3,
.stat-card h3,
.contact-point h3,
.legal__content h2,
.legal__content h3 {
  margin: 0 0 0.6rem;
  font-size: 1.18rem;
  color: var(--brand-strong);
}

.trust-item p,
.mini-stat p,
.service-card p,
.quote-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.grid-3,
.grid-4,
.grid-2,
.reference-grid,
.contact-grid,
.info-grid,
.service-grid,
.process-grid,
.benefit-grid {
  display: grid;
  gap: 1.4rem;
}

.grid-3,
.reference-grid,
.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2,
.service-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.type-card,
.benefit-card,
.reference-card,
.service-card,
.quote-card,
.stat-card,
.contact-point,
.contact-panel,
.contact-form,
.thanks-card,
.legal__content,
.faq details,
.advisor,
.mini-stat {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 74, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.type-card,
.benefit-card,
.reference-card,
.service-card,
.quote-card,
.stat-card,
.contact-point,
.contact-panel,
.contact-form,
.thanks-card,
.legal__content,
.advisor {
  border-radius: 28px;
}

.type-card,
.reference-card {
  overflow: hidden;
}

.type-card__media,
.reference-card__media,
.spotlight__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.type-card__body,
.reference-card__body,
.service-card,
.benefit-card,
.quote-card,
.stat-card,
.contact-point,
.contact-panel,
.contact-form,
.thanks-card,
.advisor,
.legal__content {
  padding: 1.65rem;
}

.type-card__meta,
.reference-card__meta,
.contact-detail,
.advisor__meta {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.type-card__list,
.service-card ul,
.reference-card__list,
.contact-point ul,
.contact-panel ul,
.thanks-card ul,
.legal__content ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.type-card__list li,
.service-card li,
.reference-card__list li,
.contact-point li,
.contact-panel li,
.thanks-card li,
.legal__content li {
  line-height: 1.6;
}

.type-card__link,
.card-link {
  margin-top: 0.25rem;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: stretch;
}

.spotlight__media {
  min-height: 100%;
}

.advisor {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1.36fr);
  gap: 1.6rem;
  align-items: center;
}

.advisor__content {
  display: grid;
  gap: 1.15rem;
}

.advisor__visual {
  position: relative;
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.advisor__logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 2.3rem;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 236, 227, 0.96) 62%, rgba(216, 229, 223, 0.72) 100%);
  border: 1px solid rgba(18, 52, 40, 0.1);
  border-radius: 30px;
  box-shadow:
    0 26px 55px rgba(16, 32, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  isolation: isolate;
}

.advisor__logo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 24px rgba(18, 52, 40, 0.06);
  z-index: 0;
}

.advisor__logo::after {
  content: "";
  position: absolute;
  right: 14%;
  bottom: -16px;
  left: 14%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(18, 52, 40, 0.22) 0%, transparent 72%);
  filter: blur(12px);
  z-index: -1;
}

.advisor__logo img {
  width: min(100%, 280px);
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 22px rgba(18, 52, 40, 0.18));
}

.advisor__visual--portrait {
  min-height: auto;
}

.advisor__portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 4 / 4.9;
  background: linear-gradient(180deg, #f6f0e7 0%, #ece1d3 100%);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.advisor__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 25, 20, 0) 44%, rgba(10, 25, 20, 0.16) 100%);
  pointer-events: none;
}

.advisor__portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.advisor--portrait .advisor__quote {
  left: 1rem;
  right: auto;
  bottom: 1rem;
  max-width: 220px;
  padding: 0.78rem 0.9rem;
}

.advisor--portrait .advisor__quote p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.advisor--portrait {
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(1.5rem, 2.4vw, 2.4rem);
  align-items: start;
}

.advisor--portrait .advisor__visual {
  align-self: start;
  justify-self: start;
  width: 100%;
  max-width: 380px;
}

.advisor--portrait .advisor__portrait-frame {
  max-width: 380px;
  max-height: 520px;
}

.advisor--portrait .advisor__content {
  min-width: 0;
  padding-top: 0.35rem;
}

.advisor--portrait .metric-band {
  margin-top: 0.6rem;
}

.advisor__quote {
  position: absolute;
  right: -0.8rem;
  bottom: 1.2rem;
  max-width: 250px;
  padding: 1rem 1.1rem;
  color: var(--surface);
  background: rgba(18, 52, 40, 0.94);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.advisor__quote p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.advisor__quote strong {
  display: block;
  margin-bottom: 0.4rem;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.process-step {
  position: relative;
  padding: 1.7rem 1.35rem 1.35rem 4.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(27, 74, 58, 0.08);
  box-shadow: var(--shadow-sm);
}

.process-step__number {
  position: absolute;
  top: 1.4rem;
  left: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  font-weight: 800;
  color: var(--surface);
  background: linear-gradient(135deg, var(--accent), #d19366);
  border-radius: 999px;
}

.quote-card {
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  color: rgba(191, 123, 75, 0.18);
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq details {
  overflow: hidden;
}

.faq summary {
  list-style: none;
  padding: 1.3rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-strong);
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq__body {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.75;
}

.contact-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1.4rem;
  align-items: stretch;
}

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

.contact-panel__header h2,
.contact-form__intro h2,
.thanks-card h2,
.legal__content h2,
.legal__content h3 {
  margin-top: 0;
}

.contact-points {
  display: grid;
  gap: 1rem;
}

.contact-point a,
.site-footer a,
.legal__content a {
  color: var(--brand);
}

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

.contact-highlight {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  color: var(--brand-strong);
  background: linear-gradient(180deg, rgba(216, 229, 223, 0.8) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(27, 74, 58, 0.12);
}

.contact-highlight strong {
  display: block;
  font-size: 1rem;
}

.contact-highlight p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--muted);
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-weight: 800;
  color: var(--brand-strong);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  color: var(--text);
  background: #fffdfa;
  border: 1px solid rgba(18, 52, 40, 0.14);
  border-radius: 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.menu-toggle:focus-visible,
.site-nav__links a:focus-visible,
.btn:focus-visible,
.btn-secondary:focus-visible,
.btn-text:focus-visible,
.type-card__link:focus-visible,
.card-link:focus-visible {
  outline: none;
  border-color: rgba(27, 74, 58, 0.34);
  box-shadow: 0 0 0 4px rgba(27, 74, 58, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.checkbox-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.93rem;
}

.hidden-honeypot {
  position: absolute;
  inset: auto auto auto -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-hero {
  position: relative;
  padding: 2rem 0 3rem;
}

.page-hero__copy {
  max-width: 620px;
}

.page-hero__copy p {
  margin-bottom: 1.5rem;
}

.page-hero__media {
  min-height: 420px;
}

.page-hero__frame {
  position: absolute;
  inset: 0;
}

.page-hero__overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 250px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.page-hero__overlay strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-strong);
}

.page-hero__overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.reference-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.reference-mosaic__col {
  display: grid;
  gap: 1rem;
}

.reference-mosaic .reference-card__media {
  min-height: 220px;
}

.thanks-wrap {
  padding: 5rem 0;
}

.thanks-card {
  max-width: 780px;
  margin: 0 auto;
}

.legal-wrap {
  padding: 4rem 0 5rem;
}

.legal__content {
  max-width: 900px;
  margin: 0 auto;
}

.legal__content + .legal__content {
  margin-top: 1.2rem;
}

.legal__content h2,
.legal__content h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--brand-strong);
}

.divider {
  height: 1px;
  margin: 1.4rem 0;
  background: rgba(217, 209, 195, 0.82);
}

.site-footer {
  padding: 1.5rem 0 calc(2rem + env(safe-area-inset-bottom));
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, #122e25 0%, #1a4335 100%);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.95fr 0.9fr 1.05fr;
  gap: 1.4rem;
  padding: 1.4rem 0 1.2rem;
}

.site-footer__brand h2,
.site-footer__nav h3,
.site-footer__seo h3,
.site-footer__contact h3,
.site-footer__service h3 {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  color: var(--surface);
}

.site-footer__brand p,
.site-footer__contact p,
.site-footer__service p {
  margin: 0;
  line-height: 1.7;
}

.site-footer__nav ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__seo ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-mobile-cta {
  position: fixed;
  right: 0.75rem;
  bottom: 1rem;
  left: 0.75rem;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-mobile-cta a {
  min-height: 3.4rem;
  padding: 0.95rem 1rem;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(16, 32, 27, 0.18);
}

.sticky-mobile-cta a:first-child {
  color: var(--surface);
  background: linear-gradient(135deg, var(--brand) 0%, #245844 100%);
}

.sticky-mobile-cta a:last-child {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 52, 40, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .grid-4,
  .info-grid,
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .reference-grid,
  .benefit-grid,
  .process-grid,
  .trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__layout,
  .page-hero__layout,
  .spotlight,
  .advisor,
  .contact-slab {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .page-hero__media {
    min-height: 480px;
  }

  .hero__frame {
    inset: 0 3.5rem 3rem 0;
  }

  .hero__secondary {
    right: 2.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 82px;
  }

  .section {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    background: rgba(251, 248, 243, 0.98);
    border: 1px solid rgba(27, 74, 58, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav__links a {
    min-height: 3rem;
    padding: 0.2rem 0;
  }

  .site-nav__links a::after {
    bottom: 0;
    transform-origin: left;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 1.3rem;
  }

  .hero__content h1,
  .page-hero__copy h1,
  .thanks-card h1,
  .legal__content h1 {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero__content p,
  .page-hero__copy p {
    font-size: 1rem;
  }

  .person-badge {
    max-width: 100%;
  }

  .hero__media {
    min-height: 440px;
  }

  .hero__frame {
    inset: 0 2.1rem 2.8rem 0;
  }

  .hero__secondary {
    width: 42%;
    right: 1.5rem;
    bottom: -1rem;
  }

  .hero__floating {
    top: 1rem;
    left: 0.8rem;
    max-width: 220px;
  }

  .hero__stack {
    width: min(66%, 310px);
  }

  .reference-mosaic {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .grid-2,
  .service-grid,
  .contact-grid,
  .grid-3,
  .reference-grid,
  .benefit-grid,
  .process-grid,
  .grid-4,
  .info-grid,
  .trust-strip__grid,
  .metric-band,
  .form-grid--two,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .advisor__visual {
    min-height: 280px;
  }

  .advisor__quote {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

  .advisor--portrait {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .advisor--portrait .advisor__visual {
    justify-self: center;
    width: min(100%, 320px);
    max-width: 320px;
  }

  .advisor--portrait .advisor__portrait-frame {
    max-width: 320px;
    max-height: none;
  }

  .advisor--portrait .advisor__quote {
    display: none;
  }

  .hero__layout,
  .page-hero__layout,
  .contact-slab {
    gap: 1.6rem;
  }

  .hero__chips,
  .contact-badges,
  .metric-band {
    grid-template-columns: 1fr;
  }

  .hero__media,
  .page-hero__media {
    min-height: 380px;
  }

  .hero__frame {
    inset: 0 1.3rem 2rem 0;
  }

  .hero__stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 1rem 0 0 1.2rem;
  }

  .hero__secondary {
    display: none;
  }

  .type-card__body,
  .reference-card__body,
  .service-card,
  .benefit-card,
  .quote-card,
  .stat-card,
  .contact-point,
  .contact-panel,
  .contact-form,
  .thanks-card,
  .advisor,
  .legal__content {
    padding: 1.35rem;
  }

  .trust-item,
  .mini-stat {
    padding: 1.1rem;
  }

  .process-step {
    padding-left: 4rem;
  }

  .sticky-mobile-cta {
    display: grid;
  }

  .sticky-mobile-cta a {
    padding: 0.9rem 0.65rem;
    font-size: 0.82rem;
  }

  .site-footer {
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.6rem;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.65rem;
    padding: 0.34rem 0.55rem 0.34rem 0.34rem;
  }

  .brand__mark {
    width: 56px;
    height: 56px;
    padding: 0.55rem;
    border-radius: 18px;
  }

  .brand__title {
    font-size: 0.96rem;
  }

  .brand__subline {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 2.85rem;
    height: 2.85rem;
  }

  .actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .person-badge {
    width: 100%;
    align-items: flex-start;
  }

  .advisor--portrait .advisor__visual {
    width: min(100%, 280px);
    max-width: 280px;
  }

  .advisor--portrait .advisor__portrait-frame {
    max-width: 280px;
    border-radius: 24px;
  }

  .actions .btn,
  .actions .btn-accent,
  .actions .btn-secondary,
  .contact-actions .btn,
  .contact-actions .btn-accent,
  .contact-actions .btn-secondary {
    width: 100%;
  }

  .hero__chips,
  .contact-badges,
  .meta-list {
    grid-template-columns: 1fr;
  }

  .chip {
    width: 100%;
  }

  .hero__frame {
    inset: 0;
  }

  .hero__floating {
    position: relative;
    top: auto;
    left: auto;
    max-width: none;
    margin-top: 1rem;
  }

  .hero__media {
    min-height: 320px;
  }

  .page-hero__media {
    min-height: 300px;
  }

  .hero__content h1,
  .page-hero__copy h1,
  .thanks-card h1,
  .legal__content h1 {
    font-size: clamp(1.58rem, 8vw, 2.15rem);
    line-height: 1;
    letter-spacing: -0.02em;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .hero__content p,
  .page-hero__copy p {
    font-size: 0.98rem;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .sticky-mobile-cta {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .sticky-mobile-cta a {
    font-size: 0.88rem;
  }

  .site-footer {
    padding-bottom: calc(9.4rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
