:root {
  --ink: #171d18;
  --muted: #5d665c;
  --paper: #f3efe6;
  --white: #fffaf0;
  --green: #123529;
  --green-2: #254c3e;
  --gold: #a7834a;
  --clay: #74604e;
  --stone: #e8dfd0;
  --charcoal: #141612;
  --line: rgba(23, 29, 24, 0.12);
  --shadow: 0 24px 70px rgba(18, 29, 23, 0.14);
  --serif: "Cormorant Garamond", "IvyPresto Display", "Canela", Georgia, "Times New Roman", serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

.home-page {
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 112px;
  padding: 20px clamp(24px, 4.8vw, 72px);
  background: rgba(243, 239, 230, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: min-height 260ms ease, padding 260ms ease, background 260ms ease, border-color 260ms ease, color 260ms ease, backdrop-filter 260ms ease;
}

.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(9, 13, 10, 0.38), rgba(9, 13, 10, 0));
  border-bottom-color: transparent;
  backdrop-filter: blur(0);
  color: var(--white);
}

.home-page .site-header.is-scrolled,
.home-page .site-header.nav-open {
  min-height: 96px;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(243, 239, 230, 0.94);
  border-bottom-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: auto;
  min-height: 58px;
  padding: 8px 0;
  transition: opacity 180ms ease, color 180ms ease;
}

.brand-wordmark {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand:hover {
  opacity: 0.78;
}

.home-page .site-header:not(.is-scrolled):not(.nav-open) .brand-wordmark {
  color: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: clamp(18px, 2vw, 36px);
}

.site-nav a,
.nav-visit {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: rgba(25, 33, 28, 0.74);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-nav a::after,
.nav-visit::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  opacity: 0.68;
  transition: left 220ms ease, right 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.nav-visit:hover,
.nav-visit:focus-visible {
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.nav-visit:hover,
.nav-visit:focus-visible {
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.nav-visit:hover::after,
.nav-visit:focus-visible::after {
  left: 0;
  right: 0;
}

.nav-visit {
  justify-self: end;
  gap: 10px;
  color: rgba(25, 33, 28, 0.82);
}

.nav-visit::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.nav-visit::after {
  bottom: 2px;
}

.site-nav .mobile-visit-link {
  display: none;
}

.home-page .site-header:not(.is-scrolled):not(.nav-open) .site-nav a,
.home-page .site-header:not(.is-scrolled):not(.nav-open) .nav-visit {
  color: rgba(255, 250, 240, 0.88);
}

.home-page .site-header:not(.is-scrolled):not(.nav-open) .site-nav a:hover,
.home-page .site-header:not(.is-scrolled):not(.nav-open) .site-nav a:focus-visible,
.home-page .site-header:not(.is-scrolled):not(.nav-open) .site-nav a[aria-current="page"],
.home-page .site-header:not(.is-scrolled):not(.nav-open) .nav-visit:hover,
.home-page .site-header:not(.is-scrolled):not(.nav-open) .nav-visit:focus-visible {
  color: var(--white);
}

.nav-toggle {
  position: relative;
  z-index: 22;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: currentColor;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.home-page .nav-toggle {
  border-color: rgba(255, 250, 240, 0.32);
}

.home-page .site-header.is-scrolled .nav-toggle,
.home-page .site-header.nav-open .nav-toggle {
  border-color: var(--line);
}

.site-header.nav-open .nav-toggle span:not(.sr-only):nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero,
.page-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  min-height: min(760px, calc(86vh - 78px));
  max-height: 820px;
}

.estate-hero {
  min-height: 100svh;
  max-height: none;
}

.hero img,
.hero video,
.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  background: var(--green);
}

.estate-hero .hero-video {
  transform: scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 21, 17, 0.78), rgba(12, 21, 17, 0.42) 48%, rgba(12, 21, 17, 0.12)),
    linear-gradient(0deg, rgba(12, 21, 17, 0.62), rgba(12, 21, 17, 0.08) 45%);
}

.estate-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 12, 0.72), rgba(10, 16, 12, 0.32) 46%, rgba(10, 16, 12, 0.1)),
    linear-gradient(0deg, rgba(10, 16, 12, 0.7), rgba(10, 16, 12, 0.05) 56%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 0 clamp(44px, 7vw, 86px);
  color: var(--white);
}

.estate-hero-content {
  padding-top: clamp(150px, 18vh, 210px);
  padding-bottom: clamp(70px, 12vh, 132px);
}

.estate-hero-content h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 11vw, 10.5rem);
  line-height: 0.82;
}

.estate-hero-content p:not(.eyebrow) {
  max-width: 610px;
}

.hero-meta {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content.narrow {
  max-width: 860px;
}

.hero-content h1,
.price-copy h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 6.7rem);
  line-height: 0.95;
  font-weight: 500;
}

.page-hero .hero-content h1,
.price-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.hero-content p:not(.eyebrow),
.price-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-usps {
  display: grid;
  gap: 10px;
  max-width: 690px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-usps li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 720;
}

.hero-usps li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 22px;
  height: 22px;
  background: url("assets/horseshoe.svg") center / contain no-repeat;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-weight: 760;
  transition: transform 190ms ease, background-color 190ms ease, border-color 190ms ease, color 190ms ease, box-shadow 190ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 29, 23, 0.2);
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #141713;
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: #d4b56d;
  background: #d4b56d;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 253, 248, 0.12);
}

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

.button.dark:hover,
.button.dark:focus-visible {
  border-color: var(--green-2);
  background: var(--green-2);
}

.home-trust {
  padding: clamp(38px, 6vw, 76px) clamp(20px, 4vw, 54px);
}

.trust-line {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-line span,
.home-gallery figcaption,
.text-link {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-editorial,
.home-story,
.home-gallery,
.home-pullquote {
  padding: clamp(86px, 12vw, 160px) clamp(20px, 4vw, 54px);
}

.home-editorial {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 8vw, 118px);
  align-items: center;
}

.home-editorial-copy {
  max-width: 680px;
}

.home-editorial-copy h2,
.home-story .section-heading h2,
.home-pullquote h2,
.home-visit h2 {
  font-size: clamp(3rem, 6vw, 7.2rem);
  line-height: 0.88;
}

.home-editorial-copy h2 {
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.home-editorial-copy p:not(.eyebrow),
.home-pullquote p,
.home-visit p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.home-editorial figure,
.home-gallery figure {
  margin: 0;
}

.home-editorial img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-story {
  background: var(--stone);
}

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

.home-story-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 5vw, 84px);
  padding: clamp(30px, 5vw, 58px) 0;
  border-top: 1px solid rgba(23, 29, 24, 0.16);
}

.home-story-list article:last-child {
  border-bottom: 1px solid rgba(23, 29, 24, 0.16);
}

.home-story-list h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.home-story-list p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.18rem);
}

.home-gallery {
  width: min(1380px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 36px);
  align-items: end;
}

.home-gallery figure {
  grid-column: span 4;
}

.home-gallery .gallery-large {
  grid-column: span 7;
}

.home-gallery .gallery-tall {
  grid-column: span 5;
  align-self: start;
}

.home-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-gallery .gallery-large img {
  aspect-ratio: 16 / 10;
}

.home-gallery .gallery-tall img {
  aspect-ratio: 3 / 4;
}

.home-gallery figcaption {
  margin-top: 14px;
}

.home-pullquote {
  display: grid;
  justify-items: center;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.home-pullquote > * {
  width: min(980px, calc(100% - 40px));
}

.home-pullquote h2 {
  margin: 0;
  max-width: 1120px;
}

.home-pullquote p {
  max-width: 720px;
  color: rgba(255, 250, 240, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 14px;
  color: var(--gold);
}

.home-visit {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.home-visit img,
.home-visit-overlay {
  position: absolute;
  inset: 0;
}

.home-visit img {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-visit-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 16, 12, 0.76), rgba(10, 16, 12, 0.34) 54%, rgba(10, 16, 12, 0.1)),
    linear-gradient(0deg, rgba(10, 16, 12, 0.72), rgba(10, 16, 12, 0.04) 58%);
}

.home-visit-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 12vw, 140px) 0;
  color: var(--white);
}

.home-visit h2 {
  max-width: 820px;
  margin: 0;
  line-height: 0.96;
}

.home-visit .button {
  margin-top: clamp(26px, 4vw, 42px);
}

.intro-band,
.story-section,
.services-preview,
.service-detail,
.seo-comparison,
.care-included,
.cost-detail,
.process-section,
.faq-section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 4vw, 54px);
}

.section-grid,
.section-heading,
.cards,
.timeline,
.faq-list,
.pricing-section,
.feature-layout,
.split-band,
.owner-section,
.proof-feature,
.quote-band,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

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

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 500;
}

.section-grid p,
.intro-copy,
.rich-copy p,
.feature-copy p,
.split-band p,
.section-heading p,
.pricing-note p,
.faq-list p,
.timeline p,
.card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-layout,
.split-band,
.owner-section,
.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) 0;
}

.intro-copy {
  max-width: 540px;
  margin: 22px 0 0;
}

.feature-copy {
  padding-left: clamp(20px, 4vw, 54px);
}

.feature-image,
.split-band figure,
.owner-section figure,
.proof-feature figure,
.price-hero figure {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img,
.split-band img,
.owner-section img,
.proof-feature img,
.price-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 700ms ease;
}

.feature-image:hover img,
.split-band figure:hover img,
.owner-section figure:hover img,
.proof-feature figure:hover img,
.price-hero figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.proof-stack {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 4px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-stack div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.proof-stack div:first-child {
  border-top: 0;
}

.proof-stack strong,
.proof-stack span {
  display: block;
}

.proof-stack strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.proof-stack span {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 21px;
  height: 21px;
  background: url("assets/horseshoe.svg") center / contain no-repeat;
}

.services-preview,
.process-section {
  background: var(--green);
  color: var(--white);
}

.services-preview .card,
.process-section article {
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.16);
}

.services-preview p,
.process-section p {
  color: rgba(255, 253, 248, 0.76);
}

.care-included,
.cost-detail,
.soft-section {
  background: #efe7db;
}

.seo-comparison {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading .button {
  margin-top: 18px;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 148, 77, 0.42);
  box-shadow: 0 18px 48px rgba(18, 29, 23, 0.1);
}

.card a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.split-band {
  border-top: 1px solid var(--line);
}

.split-band.reverse figure {
  order: 2;
}

.owner-section {
  padding: clamp(62px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.owner-section figure {
  background: var(--green);
}

.owner-section img {
  aspect-ratio: 1 / 1;
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.proof-feature p:not(.eyebrow) {
  color: var(--muted);
}

.proof-feature figure {
  box-shadow: none;
}

.proof-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-feature .button {
  margin-top: 24px;
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.quote-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

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

.timeline article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.price-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: clamp(48px, 7vw, 92px) 0;
}

.price-copy {
  padding: 22px 0;
}

.pricing-section {
  align-items: stretch;
}

.pricing-card,
.pricing-note {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 48px);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.pricing-card h2 {
  color: var(--green);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.pricing-card h2 span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card .button {
  margin-top: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

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

.site-footer {
  margin-top: clamp(34px, 7vw, 80px);
  background: var(--green);
  color: var(--white);
  border-top: 1px solid rgba(184, 148, 77, 0.5);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(160px, 0.6fr) minmax(120px, 0.4fr);
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(44px, 7vw, 78px) 0 28px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.site-footer p {
  max-width: 440px;
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.74);
}

.footer-contact {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-style: normal;
}

.footer-contact span,
.footer-links::before {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-links a {
  color: var(--white);
}

.footer-contact a {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links::before {
  content: "Pages";
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  color: rgba(255, 253, 248, 0.86);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateX(3px);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.58);
}

@media (max-width: 1080px) and (min-width: 861px) {
  .site-header {
    gap: 20px;
    padding-inline: 24px;
  }

  .brand {
    width: auto;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a,
  .nav-visit {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .nav-visit::before {
    width: 24px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
    min-height: 82px;
    padding: 14px 20px;
  }

  .home-page .site-header.is-scrolled,
  .home-page .site-header.nav-open {
    min-height: 82px;
    padding: 14px 20px;
  }

  .brand {
    grid-column: 2;
    width: auto;
    min-height: 46px;
    padding: 4px 0;
  }

  .brand-wordmark {
    font-size: clamp(0.6rem, 2.6vw, 0.74rem);
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  .nav-toggle {
    display: flex;
    grid-column: 3;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
  }

  .nav-visit {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    width: 100vw;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 4vh, 34px);
    padding: 120px 28px 54px;
    background: rgba(243, 239, 230, 0.98);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 240ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 240ms;
  }

  .site-nav::before {
    content: "Heritage Horse Livery";
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .site-nav a,
  .mobile-visit-link {
    min-height: 48px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.05rem, 10.4vw, 4rem);
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
  }

  .site-nav a::after,
  .mobile-visit-link::after {
    bottom: 3px;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav .mobile-visit-link {
    display: inline-flex;
    margin-top: clamp(8px, 3vh, 26px);
    color: var(--green);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .home-hero,
  .page-hero {
    min-height: 72vh;
  }

  .estate-hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: clamp(46px, 8vh, 78px);
    padding-bottom: clamp(36px, 7vh, 58px);
  }

  .hero-usps {
    gap: 9px;
    margin-top: 22px;
  }

  .section-grid,
  .home-editorial,
  .feature-layout,
  .split-band,
  .owner-section,
  .pricing-section,
  .price-hero,
  .cards.three,
  .cards.four,
  .proof-feature,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .home-editorial,
  .home-story,
  .home-gallery,
  .home-pullquote {
    padding-top: clamp(72px, 18vw, 108px);
    padding-bottom: clamp(72px, 18vw, 108px);
  }

  .home-editorial {
    width: min(var(--max), calc(100% - 40px));
  }

  .home-editorial-copy h2,
  .home-story .section-heading h2,
  .home-pullquote h2,
  .home-visit h2 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  .home-story-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .home-gallery figure,
  .home-gallery .gallery-large,
  .home-gallery .gallery-tall {
    grid-column: 1;
  }

  .feature-copy {
    padding: 0 20px;
  }

  .proof-stack {
    margin-top: 8px;
  }

  .proof-stack div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .split-band.reverse figure {
    order: 0;
  }

  .quote-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    padding-top: 20px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .home-page .site-header.is-scrolled,
  .home-page .site-header.nav-open {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand {
    width: auto;
  }

  .site-nav {
    padding: 112px 24px 44px;
    gap: clamp(18px, 4.6vh, 34px);
  }

  .hero-content h1,
  .price-copy h1 {
    font-size: 2.35rem;
  }

  .estate-hero-content h1 {
    font-size: clamp(3.8rem, 17vw, 5.2rem);
  }

  .page-hero .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-content p:not(.eyebrow),
  .hero-usps li,
  .price-copy p {
    font-size: 1rem;
  }

  .estate-hero-content p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .hero-meta {
    font-size: 0.72rem;
    line-height: 1.7;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .card,
  .timeline article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

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

  .hero-content > * {
    animation: heroLift 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-content > *:nth-child(2) {
    animation-delay: 90ms;
  }

  .hero-content > *:nth-child(3) {
    animation-delay: 180ms;
  }

  .hero-content > *:nth-child(4) {
    animation-delay: 270ms;
  }

  @keyframes heroLift {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
