:root {
  --paper: #f3f0ea;
  --paper-light: #faf9f6;
  --ink: #474741;
  --charcoal: #555650;
  --bronze: #946d50;
  --bronze-light: #d1aa89;
  --line: rgba(58, 58, 53, 0.11);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Aptos, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(235px, 300px) repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  padding: 22px clamp(30px, 4.5vw, 72px);
  background: var(--paper);
}

.brand {
  display: block;
  width: clamp(235px, 21vw, 300px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: contents;
}

nav a {
  justify-self: center;
  padding: 12px 0;
  font-size: clamp(1.4rem, 1.6vw, 1.56rem);
  font-weight: 450;
  letter-spacing: 0.01em;
}

nav a:hover,
nav a:focus-visible {
  color: var(--bronze);
}

.header-contact,
.primary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(71, 71, 65, 0.38);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.header-contact {
  width: 100%;
  max-width: 210px;
  justify-self: center;
  min-height: 56px;
  padding: 0 22px;
  font-size: clamp(1.4rem, 1.6vw, 1.56rem);
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.hero {
  display: grid;
  min-height: min(720px, 100svh);
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  padding-top: 140px;
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(68px, 7vw, 112px) clamp(34px, 5.6vw, 86px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.section-label {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.section-label::before {
  display: none;
  content: none;
}

.eyebrow::before,
.eyebrow::after {
  display: none !important;
  content: none;
}

.hero h1,
.section-heading h2,
.areas h2,
.contact h2 {
  margin: 0;
  font-family: "Segoe UI", Aptos, Arial, Helvetica, sans-serif;
  font-weight: 450;
  letter-spacing: -0.024em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.5rem, 3.35vw, 3.75rem);
  line-height: 1.1;
}

.hero-intro {
  max-width: 600px;
  margin: 26px 0 0;
  color: #696862;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.primary-button {
  gap: 24px;
  margin-top: 32px;
  padding: 0 23px;
  border-color: rgba(148, 109, 80, 0.55);
  background: rgba(255, 255, 255, 0.22);
  color: var(--ink);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: rgba(148, 109, 80, 0.1);
  border-color: var(--bronze);
  transform: translateY(-1px);
}

.hero-image {
  position: relative;
  display: grid;
  width: calc(100% - clamp(28px, 4vw, 72px));
  max-width: 960px;
  min-height: 0;
  aspect-ratio: 1.52 / 1;
  align-self: center;
  justify-self: center;
  place-items: center;
  overflow: hidden;
  background: #d9dddf;
}

.hero-image > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: left 84%;
}

.section-shell {
  padding: clamp(82px, 9vw, 132px) clamp(24px, 6.5vw, 102px);
}

.services {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(540px, 1.34fr);
  gap: clamp(54px, 8vw, 132px);
  background: var(--paper-light);
}

.section-heading {
  position: sticky;
  top: 124px;
  align-self: start;
}

.section-heading h2,
.areas h2,
.contact h2 {
  font-size: clamp(2.15rem, 3vw, 3.3rem);
  line-height: 1.1;
}

.section-heading > p:last-child,
.areas-copy > p:last-child,
.contact-copy > p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: #66645e;
  font-size: 1rem;
  line-height: 1.65;
}

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

.service-item {
  min-height: 124px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.service-item h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.35;
}

.service-item p {
  margin: 9px 0 0;
  color: #706e68;
  font-size: 0.94rem;
  line-height: 1.6;
}

.areas {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
  padding: clamp(84px, 9vw, 132px) clamp(24px, 6.5vw, 102px);
  background: var(--charcoal);
  color: var(--white);
}

.section-label-light {
  color: var(--bronze-light);
}

.areas-copy > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.area-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.area-list > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.area-list strong {
  font-family: "Segoe UI", Aptos, Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.012em;
}

.area-list .home-area strong {
  color: var(--bronze-light);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  position: relative;
  display: grid;
  min-height: 128px;
  grid-template-columns: 92px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-links a::before {
  position: absolute;
  inset: 0;
  background: rgba(154, 103, 60, 0.08);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.contact-links a:hover::before,
.contact-links a:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-links span,
.contact-links strong,
.contact-links i {
  position: relative;
  z-index: 1;
}

.contact-links span {
  color: #69665f;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.contact-links strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.12rem, 1.65vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.018em;
}

.contact-links i {
  font-size: 1.35rem;
  font-style: normal;
}

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

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

footer {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 6.5vw, 102px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

a:focus-visible {
  outline: 3px solid rgba(193, 122, 57, 0.52);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(205px, 235px) repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding-right: 28px;
    padding-left: 28px;
  }

  nav a {
    font-size: 1.22rem;
  }

  .header-contact {
    min-height: 52px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 1.22rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 0.9fr 1.1fr;
    padding-top: 124px;
  }

  .hero-copy {
    padding-right: 50px;
    padding-left: 50px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6.2vw, 3.65rem);
  }

  .hero-image {
    width: calc(100% - 32px);
    aspect-ratio: 1.42 / 1;
  }

  .services,
  .areas,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }
}

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

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    padding: 15px 20px;
  }

  .brand {
    width: 215px;
  }

  nav {
    display: none;
  }

  .header-contact {
    width: auto;
    min-height: 48px;
    padding: 0 17px;
    font-size: 1.08rem;
  }

  .hero {
    display: flex;
    padding-top: 0;
    flex-direction: column;
  }

  .hero-copy {
    padding: 68px 24px 58px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.65rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .hero-image > img {
    object-position: left 84%;
  }

  .section-shell,
  .areas {
    padding: 76px 24px;
  }

  .services,
  .areas,
  .contact {
    gap: 52px;
  }

  .section-heading h2,
  .areas h2,
  .contact h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .service-item {
    min-height: 0;
    padding: 26px 0;
  }

  .area-list > div {
    min-height: 92px;
  }

  .area-list strong {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .contact-links a {
    min-height: 108px;
    grid-template-columns: 1fr auto;
    gap: 9px 16px;
  }

  .contact-links span {
    grid-column: 1 / -1;
  }

  .contact-links strong {
    font-size: clamp(1.05rem, 5.6vw, 1.5rem);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

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

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