:root {
  --paper: #f6f1e7;
  --paper-deep: #ece4d5;
  --white: #fffdf8;
  --ink: #15231e;
  --muted: #66716b;
  --forest: #143f34;
  --forest-deep: #0c2e27;
  --archive-blue: #17395f;
  --sage: #afc3b1;
  --gold: #a87c3f;
  --gold-light: #d5bb8d;
  --line: rgba(21, 35, 30, 0.14);
  --shadow: 0 24px 70px rgba(25, 35, 29, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 3%, rgba(168, 124, 63, 0.08), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
  line-height: 1.02;
}

h3 {
  letter-spacing: -0.025em;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), 1380px);
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(21, 35, 30, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 35px rgba(24, 37, 30, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand strong {
  font-size: 0.94rem;
  font-weight: 700;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 19px;
  border-radius: 12px;
  background: var(--forest);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 5vw, 84px);
  width: min(calc(100% - 48px), 1320px);
  min-height: 760px;
  margin: 0 auto;
  padding: 78px 0 62px;
}

.eyebrow {
  margin-bottom: 21px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(3.6rem, 6.4vw, 6.9rem);
  line-height: 0.95;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: #47554e;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 21px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--forest);
  color: white;
}

.button-quiet {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.button-quiet:hover {
  border-color: var(--gold);
  background: var(--white);
}

.microcopy {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 580px);
}

.hero-visual::after {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: -2;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: rgba(20, 63, 52, 0.14);
  content: "";
  filter: blur(52px);
}

.portrait-halo {
  position: absolute;
  top: 8%;
  right: 7%;
  bottom: 8%;
  left: 7%;
  z-index: -1;
  border: 1px solid rgba(168, 124, 63, 0.35);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(168, 124, 63, 0.16);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -12px;
  bottom: 8%;
  display: flex;
  min-width: 205px;
  flex-direction: column;
  padding: 17px 21px;
  border: 1px solid rgba(168, 124, 63, 0.28);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 42px rgba(25, 35, 29, 0.16);
  backdrop-filter: blur(12px);
}

.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.hero-badge span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 48px), 1320px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.77rem;
}

.section {
  width: min(calc(100% - 48px), 1320px);
  margin: 0 auto;
  padding: 135px 0;
}

.section-heading {
  margin-bottom: 66px;
}

.narrow-heading {
  max-width: 850px;
}

.section-intro {
  padding-bottom: 72px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.problem-grid article {
  min-height: 240px;
  padding: 30px 34px 32px 0;
  border-right: 1px solid var(--line);
}

.problem-grid article + article {
  padding-left: 34px;
}

.problem-grid article:last-child {
  border-right: 0;
}

.problem-grid article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.problem-grid h3 {
  margin: 30px 0 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.problem-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.services {
  padding-top: 82px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.62fr;
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
}

.split-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.64);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.service-card:hover {
  box-shadow: 0 20px 55px rgba(26, 43, 35, 0.09);
  transform: translateY(-5px);
}

.service-card-featured {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.service-card-featured::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(213, 187, 141, 0.36);
  border-radius: 50%;
  content: "";
}

.popular-label {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 13px;
  border-radius: 0 0 9px 9px;
  background: var(--gold-light);
  color: var(--forest-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-topline strong {
  color: var(--ink);
  font-size: 0.74rem;
}

.service-card-featured .card-topline {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
}

.service-card-featured .card-topline strong {
  color: var(--gold-light);
}

.service-card h3 {
  max-width: 300px;
  margin: 38px 0 15px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.08;
}

.service-card > p {
  min-height: 82px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.service-card-featured > p {
  color: rgba(255, 255, 255, 0.67);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 34px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: #4e5d55;
  font-size: 0.85rem;
  list-style: none;
}

.service-card-featured ul {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.service-card li::before {
  margin-right: 10px;
  color: var(--gold);
  content: "✓";
}

.service-card > a {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-card-featured > a {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--gold-light);
}

.pricing-note {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.pricing-note a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 4px;
}

.process-section {
  position: relative;
  padding: 128px max(24px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}

.process-section::before {
  position: absolute;
  top: -390px;
  right: -250px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(213, 187, 141, 0.18);
  border-radius: 50%;
  content: "";
}

.light-heading {
  position: relative;
  z-index: 1;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article {
  min-height: 255px;
  padding: 30px 30px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-grid article + article {
  padding-left: 30px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
}

.process-grid h3 {
  margin: 51px 0 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.process-grid p {
  max-width: 245px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.84rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  cursor: zoom-in;
  text-align: left;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.gallery-image-wrap {
  position: relative;
  display: block;
  height: 330px;
  overflow: hidden;
  background: white;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 350ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.zoom-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(20, 63, 52, 0.92);
  color: white;
  font-size: 0.67rem;
  font-weight: 700;
}

.gallery-copy {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  padding: 22px;
  border-top: 1px solid var(--line);
}

.gallery-copy strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.gallery-copy small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.deliverables {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 50px;
  margin-top: 46px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverables p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.deliverables > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.deliverables span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.5);
  font-size: 0.76rem;
  font-weight: 600;
}

.materials {
  padding-top: 80px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.resource-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 22px 60px rgba(25, 35, 29, 0.08);
}

.document-preview {
  position: relative;
  display: grid;
  min-height: 100%;
  padding: 40px 22px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(21, 35, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 35, 30, 0.035) 1px, transparent 1px),
    var(--paper-deep);
  background-size: 22px 22px;
}

.document-preview::before {
  position: absolute;
  width: 68%;
  aspect-ratio: 0.707;
  border: 1px solid rgba(21, 35, 30, 0.13);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: 0 14px 34px rgba(25, 35, 29, 0.09);
  content: "";
  transform: rotate(4deg) translate(10px, 4px);
}

.document-preview img {
  position: relative;
  z-index: 1;
  width: 76%;
  max-height: 420px;
  aspect-ratio: 0.707;
  border: 1px solid rgba(21, 35, 30, 0.1);
  background: white;
  box-shadow: 0 18px 42px rgba(25, 35, 29, 0.18);
  object-fit: cover;
  object-position: top center;
  transform: rotate(-2deg);
}

.document-preview > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(12, 46, 39, 0.9);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
}

.resource-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
}

.resource-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resource-copy h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.resource-copy > p:not(.resource-kicker) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 30px;
}

.resource-meta span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
}

.resource-download {
  align-self: flex-start;
  width: 100%;
  margin-top: auto;
}

.resource-card-featured {
  border-color: transparent;
  background: var(--archive-blue);
  color: white;
}

.resource-card-featured .document-preview {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #102f51;
  background-size: 22px 22px;
}

.resource-card-featured .document-preview::before {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.resource-card-featured .document-preview > span {
  background: rgba(168, 124, 63, 0.95);
}

.resource-card-featured .resource-kicker {
  color: var(--gold-light);
}

.resource-card-featured .resource-copy > p:not(.resource-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.resource-card-featured .resource-meta span {
  border-color: rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.7);
}

.download-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.source-band {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 0.75fr;
  min-height: 580px;
  margin: 0 auto;
  background: var(--paper-deep);
}

.source-band > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.85);
}

.source-band > img:first-child {
  object-position: 47% center;
}

.source-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(35px, 5vw, 80px);
  border-right: 1px solid rgba(21, 35, 30, 0.12);
  border-left: 1px solid rgba(21, 35, 30, 0.12);
}

.source-band h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 3.7vw, 3.85rem);
}

.source-band div > p:not(.eyebrow) {
  color: #4f5b55;
  line-height: 1.82;
}

.source-note {
  margin: 15px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 35, 30, 0.15);
  font-size: 0.8rem;
}

.about {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.about-copy h2 {
  margin-bottom: 35px;
}

.about-lead {
  color: #34463e;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  color: var(--muted);
  line-height: 1.8;
}

.qualification-list {
  display: grid;
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.qualification-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.qualification-list span::before {
  margin-right: 12px;
  color: var(--gold);
  content: "✦";
}

.about-media {
  position: relative;
}

.family-photo {
  width: 78%;
  margin-left: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.diploma-row {
  position: absolute;
  bottom: -38px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 65%;
}

.diploma-row a {
  position: relative;
  overflow: hidden;
  border: 5px solid var(--white);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(25, 35, 29, 0.18);
}

.diploma-row img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.diploma-row span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 7px 8px;
  border-radius: 6px;
  background: rgba(12, 46, 39, 0.9);
  color: white;
  font-size: 0.63rem;
  font-weight: 700;
  text-align: center;
}

.reviews-section {
  position: relative;
  padding: 130px max(24px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  background: var(--forest-deep);
  color: white;
}

.reviews-section::before {
  position: absolute;
  top: -320px;
  left: -250px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(213, 187, 141, 0.16);
  border-radius: 50%;
  content: "";
}

.reviews-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.reviews-heading > p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.065);
}

.review-card-featured {
  grid-column: span 2;
  border-color: rgba(213, 187, 141, 0.28);
  background: rgba(213, 187, 141, 0.1);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.review-card-top strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.review-card-top span {
  flex: 0 0 auto;
  color: #f2bb43;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.review-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.78;
}

.review-card blockquote p {
  margin-bottom: 14px;
}

.review-card blockquote p:last-child {
  margin-bottom: 0;
}

.review-card > small {
  display: block;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 0.68rem;
}

.review-cta-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 19px;
  background: var(--gold);
}

.review-cta-card > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-cta-card strong {
  max-width: 260px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.review-cta-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
}

.button-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--forest);
}

.button-light:hover {
  background: var(--gold-light);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  margin-bottom: 25px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.faq-heading > a {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.4rem;
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 5px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.26rem;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 52px 28px 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 135px);
  padding: 120px max(24px, calc((100vw - 1320px) / 2));
  background: var(--forest);
  color: white;
}

.contact-intro h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-direct {
  display: grid;
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct small {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  font-size: 0.91rem;
  overflow-wrap: anywhere;
}

.brief-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.brief-form label {
  display: grid;
  gap: 8px;
}

.brief-form label > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
}

.brief-form input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);
  color: white;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.brief-form input::placeholder {
  color: rgba(255, 255, 255, 0.37);
}

.brief-form input:focus {
  border-color: var(--gold-light);
  background: rgba(0, 0, 0, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 13px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--gold-light);
  color: var(--forest-deep);
}

.form-submit:hover {
  background: white;
  color: var(--forest-deep);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 46px max(24px, calc((100vw - 1320px) / 2)) 32px;
  background: #09231e;
  color: white;
}

.footer-brand .brand-mark {
  border-color: var(--gold-light);
  color: white;
}

.footer-brand small,
footer > p,
footer > small {
  color: rgba(255, 255, 255, 0.52);
}

footer > p {
  margin: 0;
  font-size: 0.76rem;
  text-align: center;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.75rem;
  font-weight: 700;
}

footer > small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.66rem;
}

.mobile-cta {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 28px;
  overflow: auto;
  place-items: center;
  background: rgba(5, 20, 17, 0.86);
  backdrop-filter: blur(10px);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  width: min(100%, 900px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-card img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: white;
}

.modal-card div {
  padding: 20px 24px;
}

.modal-card strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.modal-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  z-index: 2;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 670px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.7vw, 5.9rem);
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card > p {
    min-height: 0;
  }

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

  .process-grid article:nth-child(2) {
    border-right: 0;
  }

  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card:first-child {
    grid-column: 1 / -1;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  }

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

  .source-band {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .source-band > img:last-child {
    display: none;
  }

  .about {
    gap: 65px;
  }

  .family-photo {
    width: 88%;
  }

  .diploma-row {
    width: 75%;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 9px 10px 9px 12px;
    border-radius: 14px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .brand strong {
    font-size: 0.84rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(calc(100% - 30px), 640px);
    min-height: 0;
    padding: 65px 0 56px;
  }

  .hero-copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.65rem;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    width: min(100%, 470px);
    margin: 20px auto 0;
  }

  .hero-badge {
    right: 0;
    min-width: 180px;
    padding: 13px 16px;
  }

  .trust-strip,
  .section {
    width: calc(100% - 30px);
  }

  .trust-strip div {
    min-height: 95px;
    padding: 20px 14px;
  }

  .trust-strip strong {
    font-size: 1rem;
  }

  .trust-strip span {
    font-size: 0.65rem;
  }

  .section {
    padding: 90px 0;
  }

  .section-intro {
    padding-bottom: 35px;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article + article {
    min-height: 0;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-grid h3 {
    margin-top: 20px;
  }

  .services {
    padding-top: 72px;
  }

  .service-card {
    padding: 26px;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

  .process-section {
    padding: 90px 15px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .process-grid article + article {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-grid h3 {
    margin-top: 24px;
  }

  .process-grid p {
    max-width: none;
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card:first-child {
    grid-column: auto;
  }

  .gallery-image-wrap {
    height: 300px;
  }

  .deliverables {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .source-band {
    grid-template-columns: 1fr;
  }

  .source-band > img:first-child {
    height: 360px;
  }

  .source-band > div {
    padding: 65px 24px;
    border: 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .family-photo {
    width: 100%;
  }

  .diploma-row {
    position: relative;
    bottom: auto;
    width: 90%;
    margin: -25px auto 0;
  }

  .resource-card {
    grid-template-columns: 1fr;
  }

  .document-preview {
    min-height: 420px;
  }

  .document-preview::before {
    width: min(54%, 240px);
  }

  .document-preview img {
    width: min(60%, 260px);
  }

  .resource-copy {
    padding: 32px 24px;
  }

  .reviews-section {
    padding: 90px 15px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card-featured {
    grid-column: auto;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    font-size: 1.08rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 85px 15px;
  }

  .contact-intro h2 {
    font-size: clamp(3.1rem, 14vw, 4.7rem);
  }

  .contact-direct a {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .brief-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 45px 15px 28px;
  }

  footer > p,
  footer > div {
    justify-content: flex-start;
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 50;
    display: grid;
    min-height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: var(--forest);
    box-shadow: 0 14px 40px rgba(8, 35, 28, 0.28);
    color: white;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .modal {
    padding: 14px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }
}

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

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