:root {
  --gold: #c39b47;
  --gold-deep: #9b7427;
  --ink: #14213d;
  --charcoal: #554a45;
  --rose: #a85f5d;
  --rose-deep: #8d4d4b;
  --blush: #ecc8bd;
  --blush-soft: #f4dfd8;
  --blue-soft: #eef0f5;
  --cream: #fbf4e9;
  --paper: #ffffff;
  --linen: #f8eee4;
  --line: #e6d6c5;
  --shadow-sm: 0 12px 32px rgba(20, 33, 61, 0.08);
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
  --radius-sm: 10px;
  --radius: 18px;
  --max-width: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.2, 0.9, 0.25, 1.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(195, 155, 71, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 72px;
}

.section-sm {
  padding-block: 42px;
}

.warm-band {
  background: linear-gradient(180deg, var(--blush-soft), rgba(251, 244, 233, 0.7));
}

.cream-band {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.blue-band {
  background: linear-gradient(180deg, var(--blue-soft), var(--paper));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
span {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.85rem, 13vw, 4.5rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 8.5vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.24;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.lead {
  font-size: 1.08rem;
  line-height: 1.72;
}

.center {
  text-align: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  max-width: 670px;
}

.section-heading.center p:not(.eyebrow) {
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  background: rgba(251, 244, 233, 0.94);
  border-bottom: 1px solid rgba(230, 214, 197, 0.9);
  backdrop-filter: blur(16px);
  transition: background-color 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(195, 155, 71, 0.35);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 72px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  position: relative;
  z-index: 52;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 50px;
  transition: transform 420ms var(--spring), filter 280ms ease;
}

.brand:hover img {
  filter: contrast(1.06) saturate(1.1);
  transform: rotate(-1deg) scale(1.03);
}

.menu-button {
  position: relative;
  z-index: 52;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms var(--spring);
}

.menu-button:hover {
  border-color: var(--gold);
  transform: scale(1.04);
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  transition: transform 260ms var(--ease), opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  position: static;
  z-index: 51;
  display: grid;
  width: 100%;
  flex: none;
  gap: 4px;
  max-height: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background: rgba(251, 244, 233, 0.98);
  border: 0;
  box-shadow: none;
  pointer-events: none;
  transform: translateY(-14px);
  transition: visibility 0s linear 260ms, max-height 320ms var(--ease), padding 320ms var(--ease),
    opacity 220ms ease, transform 300ms var(--ease);
}

.site-nav.is-open {
  max-height: 360px;
  padding: 4px 0 18px;
  visibility: visible;
  opacity: 1;
  border-top: 1px solid var(--line);
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.site-nav a {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 14px;
  color: var(--charcoal);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 750;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms var(--spring);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(236, 200, 189, 0.58);
  transform: translateX(3px);
}

.site-nav .nav-cta {
  justify-content: center;
  margin-top: 4px;
  color: var(--paper);
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  color: var(--paper);
  background: var(--rose-deep);
  transform: translateY(-2px);
}

/* Buttons and utility surfaces */
.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(20, 33, 61, 0.11);
  font-weight: 800;
  line-height: 1.2;
  isolation: isolate;
  cursor: pointer;
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease,
    box-shadow 240ms ease, transform 240ms var(--spring);
}

.button::before {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -45%;
  z-index: -1;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: translateX(-230%) rotate(16deg);
  transition: transform 650ms var(--ease);
}

.button:hover {
  box-shadow: 0 15px 32px rgba(20, 33, 61, 0.17);
  transform: translateY(-3px);
}

.button:hover::before {
  transform: translateX(560%) rotate(16deg);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button.primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(20, 33, 61, 0.2);
}

.button.secondary:hover {
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-deep);
  font-weight: 800;
  transition: color 220ms ease, gap 220ms var(--spring);
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  gap: 13px;
  color: var(--rose-deep);
}

.glass-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(230, 214, 197, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Home hero */
.home-hero {
  position: relative;
  padding: 58px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 14%, rgba(195, 155, 71, 0.16), transparent 28%),
    linear-gradient(145deg, var(--cream), var(--paper) 55%, var(--blush-soft));
  isolation: isolate;
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  top: 18%;
  right: -25%;
  z-index: -1;
  width: min(76vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(195, 155, 71, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(195, 155, 71, 0.045), 0 0 0 78px rgba(168, 95, 93, 0.035);
  content: "";
  animation: ambient-drift 11s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
}

.hero-copy-block h1 span {
  color: var(--rose);
}

.hero-copy {
  max-width: 600px;
  font-size: 1.08rem;
}

.hero-script {
  margin: 4px 0 20px;
  color: var(--rose);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  line-height: 1.25;
  transform: rotate(-1.4deg);
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.credential-row span {
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-portrait-wrap {
  position: relative;
  width: min(100%, 470px);
  margin-inline: auto;
  padding: 12px 12px 0;
  animation: portrait-float 7s ease-in-out 1.2s infinite;
}

.hero-portrait-frame {
  position: relative;
  height: min(118vw, 580px);
  overflow: hidden;
  background: linear-gradient(155deg, var(--blush), var(--cream));
  border: 1px solid rgba(195, 155, 71, 0.55);
  border-radius: 48% 48% 18px 18px;
  box-shadow: var(--shadow);
  animation: portrait-arrive 900ms var(--ease) 180ms both;
}

.hero-portrait-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(20, 33, 61, 0.15));
  content: "";
  pointer-events: none;
}

.hero-portrait {
  --parallax-shift: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: translate3d(0, var(--parallax-shift), 0) scale(1.045);
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-note {
  position: relative;
  z-index: 2;
  width: calc(100% - 30px);
  margin: -34px auto 0;
  padding: 18px 20px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--ink), #293b62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow);
  animation: note-arrive 760ms var(--spring) 620ms both;
}

.hero-note span {
  display: block;
  margin-bottom: 4px;
  color: #efd38e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.promise-bar {
  position: relative;
  padding-block: 24px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.promise-bar::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(239, 211, 142, 0.13) 48%, transparent 66%);
  content: "";
  pointer-events: none;
  transform: translateX(-100%);
  animation: promise-sheen 7s ease-in-out infinite;
}

.promise-grid {
  display: grid;
  gap: 12px;
}

.promise-grid p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 700;
}

.promise-grid span {
  color: #efd38e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

/* Cards and content sections */
.principle-grid,
.service-grid,
.factor-grid,
.process-grid,
.values-grid {
  display: grid;
  gap: 16px;
}

.principle-card,
.factor-card,
.process-card,
.value-card {
  position: relative;
  padding: 25px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--paper), var(--linen));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.principle-card::before,
.factor-card::before,
.process-card::before,
.value-card::before,
.service-card::before,
.feature-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle 220px at var(--spot-x, 50%) var(--spot-y, 50%), rgba(239, 211, 142, 0.25), transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.is-pointer-active::before {
  opacity: 1;
}

.principle-card,
.factor-card,
.process-card,
.value-card,
.service-card,
.feature-panel {
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms var(--spring);
}

.principle-card:hover,
.factor-card:hover,
.process-card:hover,
.value-card:hover,
.service-card:hover,
.feature-panel:hover {
  border-color: rgba(195, 155, 71, 0.72);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--rose-deep);
  background: var(--blush-soft);
  border: 1px solid rgba(168, 95, 93, 0.2);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.principle-card p,
.factor-card p,
.process-card p,
.value-card p {
  margin-bottom: 0;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 12px 12px 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border-radius: 12px;
  object-fit: cover;
  transition: filter 420ms ease, transform 620ms var(--ease);
}

.service-card:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.025);
}

.service-card > :not(img) {
  margin-inline: 12px;
}

.service-card .eyebrow {
  margin-bottom: 9px;
}

.service-card p {
  margin-bottom: 0;
}

.content-split {
  display: grid;
  gap: 38px;
  align-items: center;
}

.content-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-photo img {
  --parallax-shift: 0px;
  width: 100%;
  height: clamp(330px, 100vw, 520px);
  object-fit: cover;
  transform: translate3d(0, var(--parallax-shift), 0) scale(1.045);
  transition: filter 420ms ease, transform 120ms linear;
}

.content-photo:hover img {
  filter: saturate(1.05);
}

.quote-panel {
  position: relative;
  margin-top: 26px;
  padding: 25px 25px 25px 30px;
  background: linear-gradient(135deg, var(--ink), #26395f);
  border-radius: 4px var(--radius) var(--radius) 4px;
  box-shadow: var(--shadow-sm);
}

.quote-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(var(--gold), #efd38e);
  content: "";
}

.quote-panel p {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.5;
}

.specialty-stack {
  display: grid;
  gap: 12px;
}

.specialty-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.specialty-item h3 {
  margin-bottom: 7px;
}

.specialty-item p {
  margin-bottom: 0;
}

/* Testimonials and embedded videos */
.testimonials-section {
  background: linear-gradient(180deg, var(--paper), rgba(248, 238, 228, 0.62));
}

.testimonial-grid,
.video-grid {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 32px 28px 26px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  position: absolute;
  top: 15px;
  left: 22px;
  color: rgba(195, 155, 71, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: 1;
  content: "“";
}

.testimonial-card blockquote {
  position: relative;
  margin: 20px 0 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.62;
}

.testimonial-card figcaption {
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-card {
  min-width: 0;
  padding: 12px 12px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.video-frame {
  position: relative;
  width: 100%;
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 260ms ease, transform 420ms var(--ease);
}

.video-fallback:hover img {
  opacity: 0.9;
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  padding: 11px 18px;
  color: var(--paper);
  background: rgba(20, 33, 61, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 800;
}

.video-frame.is-embedded .video-fallback {
  display: none;
}

.video-card h3,
.video-card p {
  margin-inline: 12px;
}

.video-card p {
  margin-bottom: 0;
}

.video-grid.is-single {
  max-width: 780px;
  margin-inline: auto;
}

/* Inner-page heroes */
.page-hero {
  position: relative;
  padding: 58px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(195, 155, 71, 0.17), transparent 28%),
    linear-gradient(145deg, var(--cream), var(--paper) 58%, var(--blush-soft));
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.page-hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
}

.page-hero-copy h1 {
  max-width: 780px;
}

.page-hero-copy .lead {
  max-width: 680px;
}

.page-hero-art {
  position: relative;
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(195, 155, 71, 0.45);
  border-radius: 50% 50% 18px 18px;
  box-shadow: var(--shadow);
}

.page-hero-art img {
  --parallax-shift: 0px;
  width: 100%;
  height: min(78vw, 430px);
  border-radius: inherit;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-shift), 0) scale(1.02);
  transition: transform 120ms linear;
}

.page-hero-badge {
  position: absolute;
  right: 0;
  bottom: 22px;
  max-width: 200px;
  padding: 15px 18px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.35;
}

.content-grid {
  display: grid;
  gap: 38px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--charcoal);
}

.check-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--paper);
  background: var(--rose);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 24px;
  width: 1px;
  background: linear-gradient(var(--gold), var(--rose));
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.timeline-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border: 4px solid var(--cream);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.timeline-step h3 {
  margin-bottom: 5px;
}

.timeline-step p {
  margin-bottom: 0;
}

.factor-card .card-number,
.process-card .card-number {
  display: block;
  margin-bottom: 28px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.consider-card {
  padding: 28px;
}

.consider-card h3 {
  font-size: 1.65rem;
}

.feature-panel-grid {
  display: grid;
  gap: 18px;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.feature-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: filter 420ms ease, transform 620ms var(--ease);
}

.feature-panel:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.feature-panel-copy {
  padding: 26px;
}

.feature-panel-copy .check-list {
  margin-top: 20px;
}

/* About and contact */
.profile-hero .page-hero-art img {
  object-position: center 22%;
}

.profile-card {
  display: grid;
  gap: 24px;
  padding: 12px;
}

.profile-card img {
  width: 100%;
  height: min(118vw, 520px);
  border-radius: 13px;
  object-fit: cover;
  object-position: center 22%;
}

.profile-card-copy {
  padding: 8px 14px 18px;
}

.focus-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 11px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700;
}

.value-card .value-word {
  display: block;
  margin-bottom: 18px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.contact-section {
  scroll-margin-top: 88px;
}

.contact-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  color: var(--paper);
  background: linear-gradient(145deg, var(--ink), #26395f);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card .eyebrow {
  color: #efd38e;
}

.contact-card h2,
.contact-card p,
.contact-card a {
  color: var(--paper);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-person {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-person strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-weight: 700;
  transition: background-color 220ms ease, transform 220ms var(--spring);
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.contact-legal {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--spring);
}

.contact-form:focus-within {
  border-color: rgba(195, 155, 71, 0.65);
  box-shadow: 0 28px 74px rgba(20, 33, 61, 0.15);
  transform: translateY(-2px);
}

.form-heading {
  margin-bottom: 2px;
}

.form-heading p {
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field > span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--paper);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.07);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--charcoal);
  font-size: 0.84rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--rose);
}

.form-status {
  min-height: 1.5em;
  margin: -6px 0 0;
  color: var(--rose-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

/* CTA and footer */
.cta-strip {
  position: relative;
  padding-block: 52px;
  overflow: hidden;
  color: var(--paper);
  background: linear-gradient(125deg, var(--gold-deep), var(--rose-deep), var(--ink));
  background-size: 180% 180%;
  isolation: isolate;
  animation: cta-gradient 12s ease infinite;
}

.cta-strip::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--pointer-x, 75%) var(--pointer-y, 20%), rgba(255, 255, 255, 0.25), transparent 27%);
  content: "";
  pointer-events: none;
}

.cta-inner {
  display: grid;
  gap: 26px;
  align-items: center;
}

.cta-inner .eyebrow,
.cta-inner h2,
.cta-inner p {
  color: var(--paper);
}

.cta-inner h2 {
  max-width: 780px;
  margin-bottom: 10px;
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-inner .button {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.cta-inner .button:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.site-footer {
  padding: 58px 0 28px;
  color: var(--paper);
  background: #101a31;
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-logo {
  width: auto;
  height: 64px;
  margin-bottom: 18px;
  filter: none;
}

.footer-intro {
  max-width: 440px;
}

.site-footer h3,
.site-footer p,
.site-footer a {
  color: var(--paper);
}

.site-footer h3 {
  margin-bottom: 16px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  transition: color 220ms ease, transform 220ms var(--spring);
}

.footer-links a:hover {
  color: #efd38e;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--paper);
  background: #237d5a;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: background-color 220ms ease, transform 260ms var(--spring);
}

.floating-wa:hover {
  background: #176846;
  transform: translateY(-4px) scale(1.04);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold), #efd38e);
  box-shadow: 0 1px 10px rgba(195, 155, 71, 0.38);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Motion */
.hero-copy-block > *,
.page-hero-copy > * {
  animation: hero-rise 760ms var(--ease) both;
}

.hero-copy-block > :nth-child(1),
.page-hero-copy > :nth-child(1) {
  animation-delay: 60ms;
}

.hero-copy-block > :nth-child(2),
.page-hero-copy > :nth-child(2) {
  animation-delay: 140ms;
}

.hero-copy-block > :nth-child(3),
.page-hero-copy > :nth-child(3) {
  animation-delay: 220ms;
}

.hero-copy-block > :nth-child(4),
.page-hero-copy > :nth-child(4) {
  animation-delay: 300ms;
}

.hero-copy-block > :nth-child(5) {
  animation-delay: 380ms;
}

.hero-copy-block > :nth-child(6) {
  animation-delay: 460ms;
}

.motion-ready [data-reveal] {
  opacity: 0;
  scale: 0.985;
  translate: 0 28px;
  transition: opacity 720ms var(--ease) var(--reveal-delay, 0ms),
    scale 720ms var(--ease) var(--reveal-delay, 0ms),
    translate 720ms var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, scale, translate;
}

.motion-ready [data-reveal="left"] {
  scale: 1;
  translate: -30px 0;
}

.motion-ready [data-reveal="right"] {
  scale: 1;
  translate: 30px 0;
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portrait-arrive {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes note-arrive {
  from {
    opacity: 0;
    transform: translateX(28px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

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

@keyframes ambient-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  to {
    transform: translate3d(-28px, 24px, 0) rotate(7deg);
  }
}

@keyframes promise-sheen {
  0%,
  22% {
    transform: translateX(-100%);
  }
  54%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes cta-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Larger phones and tablets */
@media (min-width: 560px) {
  .section-inner {
    width: min(var(--max-width), calc(100% - 56px));
  }

  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button-row .button {
    width: auto;
  }

  .promise-grid,
  .principle-grid,
  .factor-grid,
  .process-grid,
  .values-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  .section {
    padding-block: 88px;
  }

  .section-sm {
    padding-block: 52px;
  }

  .home-hero,
  .page-hero {
    padding-block: 82px;
  }

  .service-grid,
  .feature-panel-grid,
  .video-grid:not(.is-single) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-split,
  .content-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 54px;
  }

  .content-split.reverse .content-photo {
    order: 2;
  }

  .content-split.reverse .content-copy {
    order: 1;
  }

  .content-photo img {
    height: 520px;
  }

  .profile-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .profile-card img {
    height: 570px;
  }

  .contact-form,
  .contact-card {
    padding: 34px;
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 52px;
  }
}

@media (min-width: 980px) {
  body.menu-open {
    overflow: visible;
  }

  .site-header,
  .nav-shell {
    min-height: 82px;
  }

  .brand img {
    height: 60px;
  }

  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    width: auto;
    flex: 0 1 auto;
    max-height: none;
    align-items: center;
    gap: 2px;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-shell {
    flex-wrap: nowrap;
  }

  .site-nav a {
    min-height: 40px;
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    transform: translateY(-2px);
  }

  .site-nav .nav-cta {
    min-height: 44px;
    margin: 0 0 0 8px;
    padding-inline: 16px;
  }

  .home-hero {
    min-height: calc(100svh - 82px);
    display: grid;
    align-items: center;
    padding-block: 64px;
  }

  .home-hero::before,
  .page-hero::before {
    right: 2%;
    width: min(34vw, 480px);
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 62px;
  }

  h1 {
    font-size: clamp(4rem, 6.1vw, 5.7rem);
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .hero-portrait-frame {
    height: min(68vh, 620px);
  }

  .hero-note {
    position: absolute;
    right: -24px;
    bottom: 28px;
    width: 245px;
    margin: 0;
  }

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

  .promise-grid p {
    justify-content: center;
  }

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

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

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

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

  .page-hero-art img {
    height: 430px;
  }

  .page-hero-badge {
    right: -20px;
  }

  .floating-wa {
    right: 26px;
    bottom: 24px;
  }
}

@media (min-width: 1180px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding-inline: 12px;
    font-size: 0.91rem;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal="left"],
  .motion-ready [data-reveal="right"] {
    opacity: 1;
    scale: 1;
    translate: none;
  }

  .hero-portrait,
  .content-photo img,
  .page-hero-art img {
    transform: none;
  }
}
