@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #1d2822;
  --ink-soft: #435047;
  --forest: #173428;
  --forest-light: #25543f;
  --gold: #d9cb72;
  --gold-deep: #b7a84d;
  --cream: #f6f3e9;
  --paper: #fffdf8;
  --line: rgba(29, 40, 34, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 52, 40, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -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,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.5rem);
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 112px 0;
}

.section-sm {
  padding: 76px 0;
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: '';
}

.section-dark .eyebrow {
  color: var(--gold);
}

.lead {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.68);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: #e6da88;
}

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

.button-dark:hover {
  background: var(--forest-light);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.scrolled,
.site-header.inner-header {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 40px rgba(23, 52, 40, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
}

.scrolled .brand,
.inner-header .brand {
  color: var(--ink);
}

.brand-mark {
  width: 58px;
  height: 34px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-header:not(.scrolled):not(.inner-header) .brand-mark {
  padding: 3px;
  background: rgba(255,255,255,.95);
  border-radius: 6px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.03rem;
  letter-spacing: 0.2em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.52rem;
  letter-spacing: 0.52em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
}

.scrolled .nav-link,
.inner-header .nav-link {
  color: var(--ink-soft);
}

.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 2px;
  background: var(--gold-deep);
  content: '';
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 8px;
  padding: 12px 18px;
  color: var(--forest);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.scrolled .menu-toggle,
.inner-header .menu-toggle {
  color: var(--forest);
  border-color: var(--line);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: '';
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before { top: 15px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 27px; }
.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 31, 23, 0.93) 0%, rgba(12, 31, 23, 0.75) 39%, rgba(12, 31, 23, 0.12) 72%),
    linear-gradient(0deg, rgba(12, 31, 23, 0.25), transparent 38%),
    url('../images/hero-residences.png') center / cover;
  content: '';
  transform: scale(1.015);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(217, 203, 114, 0.28);
  border-radius: 50%;
  content: '';
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  padding-top: 78px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 24px;
}

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

.hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  color: rgba(255,255,255,.7);
  font-size: .83rem;
}

.hero-note span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
}

.hero-note svg {
  width: 17px;
}

.stats-wrap {
  position: relative;
  z-index: 4;
  margin-top: -50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 8px 28px;
  border-right: 1px solid var(--line);
}

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

.stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--forest);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.stat span {
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split.reverse .media-panel {
  order: 2;
}

.media-panel {
  position: relative;
}

.media-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-badge {
  position: absolute;
  right: -28px;
  bottom: -28px;
  display: grid;
  width: 152px;
  height: 152px;
  padding: 22px;
  place-content: center;
  color: var(--forest);
  background: var(--gold);
  border: 8px solid var(--paper);
  border-radius: 50%;
  text-align: center;
}

.media-badge strong {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.media-badge span {
  margin-top: 6px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.content-panel h2 {
  margin-bottom: 24px;
}

.content-panel p {
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 34px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  display: grid;
  flex: 0 0 36px;
  height: 36px;
  place-items: center;
  color: var(--forest);
  background: rgba(217,203,114,.34);
  border-radius: 50%;
}

.feature-icon svg {
  width: 17px;
  height: 17px;
}

.feature-item strong {
  display: block;
  margin-bottom: 2px;
}

.feature-item span {
  color: var(--ink-soft);
  font-size: .9rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.service-card::after {
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(217, 203, 114, 0.25);
  border-radius: 50%;
  content: '';
}

.service-card:nth-child(2) {
  color: var(--forest);
  background: var(--gold);
}

.service-card:nth-child(2)::after {
  border-color: rgba(23,52,40,.2);
}

.service-card:nth-child(3) {
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
}

.service-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 84px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-card:nth-child(2) .service-number,
.service-card:nth-child(3) .service-number {
  color: var(--forest);
}

.service-number svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin-bottom: 16px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.service-card:nth-child(2) p,
.service-card:nth-child(3) p {
  color: rgba(29,40,34,.68);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.process-step {
  position: relative;
  padding: 0 30px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.process-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-step strong {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
}

.quote-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius);
}

.quote-visual {
  min-height: 480px;
  background:
    linear-gradient(rgba(23,52,40,.16), rgba(23,52,40,.16)),
    url('../images/premium-interior.png') center / cover;
}

.quote-content {
  display: grid;
  padding: clamp(42px, 7vw, 90px);
  align-content: center;
}

.quote-mark {
  color: var(--gold-deep);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 5rem;
  line-height: .65;
}

.quote-content blockquote {
  margin: 28px 0;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
  line-height: 1.25;
}

.quote-content cite {
  color: var(--ink-soft);
  font-size: .85rem;
  font-style: normal;
  font-weight: 700;
}

.cta-section {
  padding: 36px 0 90px;
  background: var(--forest);
}

.cta-card {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(42px, 7vw, 88px);
  overflow: hidden;
  color: var(--forest);
  background: var(--gold);
  border-radius: var(--radius);
}

.cta-card::before {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(23,52,40,.2);
  border-radius: 50%;
  content: '';
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-copy h2 {
  margin-bottom: 14px;
}

.cta-copy p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(23,52,40,.68);
}

.cta-card .button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  padding-top: 88px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,31,23,.94), rgba(12,31,23,.72) 48%, rgba(12,31,23,.22)),
    var(--page-image, url('../images/hero-residences.png')) center / cover;
  content: '';
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
  font-size: 1.06rem;
}

.page-hero.compact {
  min-height: 430px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.62);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 48px;
}

.value-card {
  padding: 34px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.value-card span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  place-items: center;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
}

.value-card svg {
  width: 20px;
  height: 20px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.founder-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  min-height: 430px;
  overflow: hidden;
  background: var(--forest);
  border-radius: var(--radius);
}

.founder-visual {
  position: relative;
  display: grid;
  padding: 44px;
  place-items: center;
  background: var(--gold);
}

.founder-visual::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(23,52,40,.22);
  border-radius: 50%;
  content: '';
}

.founder-visual img {
  position: relative;
  z-index: 1;
  width: min(320px, 82%);
  mix-blend-mode: multiply;
}

.founder-copy {
  display: grid;
  padding: clamp(44px,7vw,88px);
  align-content: center;
  color: var(--white);
}

.founder-copy h2 {
  margin-bottom: 12px;
}

.founder-copy .role {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.founder-copy p {
  color: rgba(255,255,255,.68);
}

.service-detail-grid {
  display: grid;
  gap: 20px;
}

.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr .42fr;
  align-items: center;
  gap: 36px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.service-detail:hover {
  background: var(--cream);
  transform: translateX(6px);
}

.service-detail > span {
  color: var(--gold-deep);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
}

.service-detail h3 {
  margin-bottom: 8px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.service-detail p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.service-detail ul {
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: .84rem;
  list-style: none;
}

.service-detail li + li {
  margin-top: 7px;
}

.service-detail li::before {
  margin-right: 8px;
  color: var(--gold-deep);
  content: '•';
}

.contact-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 24px;
}

.contact-panel,
.form-panel {
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius);
}

.contact-panel {
  color: var(--white);
  background: var(--forest);
}

.contact-panel h2,
.form-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem,4vw,3.5rem);
}

.contact-panel > p {
  color: rgba(255,255,255,.64);
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
}

.contact-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--forest);
  background: var(--gold);
  border-radius: 50%;
}

.contact-item svg {
  width: 18px;
  height: 18px;
}

.contact-item small {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  color: rgba(255,255,255,.84);
  font-size: .9rem;
  font-style: normal;
}

.form-panel {
  background: var(--cream);
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
  background: var(--paper);
  border-radius: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-group input,
.form-group select {
  height: 54px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(217,203,114,.25);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: .75rem;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--forest);
}

.form-status {
  display: none;
  color: var(--forest);
  font-weight: 700;
}

.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  filter: saturate(.65) contrast(.92);
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: start;
  gap: 70px;
}

.legal-nav {
  position: sticky;
  top: 118px;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: .82rem;
}

.legal-nav a:hover {
  color: var(--gold-deep);
}

.legal-content {
  max-width: 800px;
}

.legal-content .updated {
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: .82rem;
}

.legal-content section {
  scroll-margin-top: 120px;
}

.legal-content section + section {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: .94rem;
}

.site-footer {
  color: var(--white);
  background: var(--forest);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr 1fr;
  gap: 60px;
  padding: 82px 0 58px;
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255,255,255,.56);
  font-size: .86rem;
}

.footer-column h3 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  font-style: normal;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: .73rem;
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a:hover {
  color: var(--white);
}

.designer-credit a {
  color: rgba(255,255,255,.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.designer-credit a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    color: var(--white);
    background: var(--forest);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 200ms ease, transform 200ms ease;
  }
  .menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-link,
  .scrolled .nav-link,
  .inner-header .nav-link {
    color: var(--white);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
  }
  .nav-cta { margin: 14px 0 0; }
  .hero { min-height: 730px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat { padding: 20px 26px; }
  .split { grid-template-columns: 1fr; gap: 54px; }
  .split.reverse .media-panel { order: initial; }
  .media-panel img { min-height: 420px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 280px; }
  .service-number { margin-bottom: 54px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process-step:nth-child(3) { padding-left: 0; border-left: 0; }
  .quote-card { grid-template-columns: 1fr; }
  .quote-visual { min-height: 380px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-visual { min-height: 340px; }
  .service-detail { grid-template-columns: 60px 1fr; }
  .service-detail ul { grid-column: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-nav { position: static; display: none; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 60px 0; }
  .nav-wrap { height: 76px; }
  .brand-mark { width: 48px; height: 28px; }
  .brand-logo { width: 132px; max-height: 58px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy small { font-size: .45rem; }
  .hero { min-height: 700px; }
  .hero-content { width: min(100% - 28px, var(--container)); padding-top: 66px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .hero-note { margin-top: 34px; }
  .stats-wrap { margin-top: -26px; }
  .stats-grid { padding: 12px; border-radius: 18px; }
  .stat { padding: 16px 12px; }
  .stat strong { font-size: 1.6rem; }
  .stat span { font-size: .68rem; }
  .media-panel img { min-height: 330px; }
  .media-badge { right: -4px; bottom: -22px; width: 126px; height: 126px; border-width: 6px; }
  .media-badge strong { font-size: 1.7rem; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-heading .text-link { margin-top: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:last-child { grid-column: auto; min-height: 320px; padding: 28px; }
  .service-number { margin-bottom: 50px; }
  .process-grid { grid-template-columns: 1fr; gap: 34px; }
  .process-step,
  .process-step:nth-child(3) { padding: 0 0 28px; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .process-step:last-child { border-bottom: 0; }
  .process-step strong { margin-bottom: 18px; }
  .quote-visual { min-height: 300px; }
  .cta-card { display: block; padding: 42px 28px; }
  .cta-card .button { margin-top: 28px; }
  .page-hero { min-height: 460px; padding-top: 76px; }
  .page-hero.compact { min-height: 380px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px; }
  .service-detail { grid-template-columns: 1fr; gap: 14px; padding: 28px; }
  .service-detail ul { grid-column: auto; margin-top: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .map-frame { height: 340px; }
  .legal-content section + section { margin-top: 34px; padding-top: 34px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding: 62px 0 42px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
