:root {
  --ink: #1f2528;
  --muted: #617071;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #dedbd2;
  --claret: #6f2437;
  --olive: #55624d;
  --gold: #b3925b;
  --charcoal: #15191b;
  --shadow: 0 20px 50px rgba(31, 37, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid rgba(222, 219, 210, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--gold);
  font-family: Georgia, serif;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--claret);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero {
  min-height: 64vh;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  opacity: 0.74;
}

.hero-overlay,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(21, 25, 27, 0.84), rgba(21, 25, 27, 0.28) 62%, rgba(21, 25, 27, 0.08));
}

.hero-content,
.page-hero > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 36px));
  min-height: inherit;
  padding: 58px clamp(18px, 7vw, 96px);
  color: var(--white);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--charcoal);
  background: var(--white);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.split,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 82px);
  align-items: start;
}

.cta-section {
  align-items: center;
}

h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--claret);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.value-strip div {
  min-height: 220px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.value-strip span,
.service-list span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.95rem;
}

.value-strip strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.feature-band,
.image-band,
.team-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
  background: var(--white);
}

.feature-copy,
.image-band div,
.team-section div {
  align-self: center;
  padding: clamp(38px, 7vw, 86px);
}

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

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

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--olive);
  content: "✓";
}

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

.card-grid,
.blog-grid,
.reviews-grid,
.location-grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.blog-card,
.reviews-grid article,
.location-grid article,
.principles article {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(31, 37, 40, 0.07);
}

.service-card img,
.blog-card img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.service-card h3,
.service-card p,
.blog-card h2,
.blog-card p,
.blog-card span {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card h3,
.blog-card h2 {
  margin-top: 22px;
}

.service-card p,
.blog-card p {
  margin-bottom: 24px;
}

.testimonial-band {
  display: grid;
  place-items: center;
  padding: clamp(70px, 10vw, 130px) 24px;
  color: var(--white);
  text-align: center;
  background: var(--charcoal);
}

.quote {
  max-width: 940px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.quote-meta {
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-list article {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
}

.process-band {
  padding: clamp(62px, 9vw, 112px) clamp(18px, 6vw, 82px);
  background: #ece8df;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.process-list span {
  color: var(--muted);
}

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

.location-grid article,
.reviews-grid article,
.principles article {
  padding: 28px;
}

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

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(62px, 9vw, 112px);
}

.team-section {
  width: min(1180px, calc(100% - 36px));
  min-height: 520px;
  padding: 0;
}

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

.blog-card span {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.blog-card .text-link {
  margin: 0 24px 28px;
}

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

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.reviews-grid p {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 112px) 0;
}

.contact-panel,
.contact-details {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fbfaf7;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-details a {
  color: var(--claret);
  text-decoration: none;
}

.small-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.site-footer strong {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-content: start;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .value-strip,
  .three,
  .process-list,
  .location-grid,
  .principles,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-band,
  .image-band,
  .team-section,
  .split,
  .cta-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .image-band > img,
  .team-section > img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 190px;
    font-size: 0.9rem;
  }

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

  .site-nav {
    top: 68px;
  }

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

  .hero-content,
  .page-hero > div {
    width: 100%;
    padding: 42px 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.3rem);
  }

  .value-strip,
  .three,
  .service-list,
  .process-list,
  .location-grid,
  .principles,
  .blog-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .value-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
