:root {
  --font-display: "Cormorant Garamond";
  --font-sans: "Manrope";
  --ink: #17211c;
  --forest: #183f31;
  --forest-deep: #0f2b22;
  --sage: #93a88f;
  --cream: #f3efe5;
  --paper: #f1eee6;
  --surface: #faf8f2;
  --surface-warm: #e9e3d7;
  --gold: #c6a765;
  --line: rgba(23, 33, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
}

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

.site-header {
  align-items: center;
  background: rgba(241, 238, 230, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 82px;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 96px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
}

.brand-logo {
  display: block;
  height: 54px;
  object-fit: contain;
  width: 34px;
}

.brand-logo + span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: var(--font-display), serif;
  font-size: 25px;
  letter-spacing: 0.14em;
  line-height: 0.9;
}

.brand small {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 3vw, 44px);
}

nav a {
  border-bottom: 2px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 10px 0 8px;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

nav a:hover,
nav a.nav-active {
  border-bottom-color: var(--gold);
  color: #9a742f;
}

.nav-cta {
  border: 0;
  padding: 10px 0 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 670px;
}

.hero-copy {
  align-self: center;
  max-width: 780px;
  padding: 68px clamp(32px, 7vw, 105px);
}

.eyebrow {
  align-items: center;
  color: var(--forest);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.2em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--gold);
  content: "";
  height: 1px;
  width: 36px;
}

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

h1 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(54px, 5.8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
  margin-bottom: 34px;
}

.hero-lead {
  color: #536059;
  font-size: 17px;
  line-height: 1.8;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 18px 25px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--forest-deep);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 6px;
}

.hero-visual {
  background:
    radial-gradient(circle at 70% 15%, rgba(255,255,255,0.2), transparent 24%),
    linear-gradient(145deg, #b7c2b1 0%, #6f8678 48%, #173c2f 100%);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.architectural-lines {
  border: 1px solid rgba(255,255,255,0.42);
  height: 62%;
  left: 18%;
  position: absolute;
  top: 12%;
  transform: skewY(-9deg);
  width: 58%;
}

.architectural-lines::before,
.architectural-lines::after {
  border: 1px solid rgba(255,255,255,0.28);
  content: "";
  position: absolute;
}

.architectural-lines::before {
  inset: 12% -26% -22% 18%;
}

.architectural-lines::after {
  inset: 27% 15% -40% -35%;
}

.hero-card {
  background: var(--cream);
  bottom: 0;
  display: grid;
  gap: 12px;
  left: 0;
  padding: 34px 42px 40px;
  position: absolute;
  width: min(76%, 460px);
}

.hero-card span {
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: var(--font-display), serif;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.06;
}

.principles {
  background: var(--surface-warm);
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  min-height: 74px;
  padding: 20px clamp(25px, 7vw, 110px);
}

.principles p {
  font-family: var(--font-display), serif;
  font-size: 20px;
  margin: 0;
}

.principles span {
  background: var(--gold);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.section {
  padding: 92px clamp(24px, 7vw, 110px);
}

.section-heading {
  display: grid;
  gap: 20px 70px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

h2 {
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  align-self: end;
  color: #5a645e;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 4px;
}

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

.service-card {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 335px;
  padding: 32px 34px;
  transition: background 180ms ease, transform 180ms ease;
}

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

.service-number {
  color: var(--gold);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 44px;
}

.service-card h3 {
  font-family: var(--font-display), serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  min-height: 68px;
  text-transform: none;
}

.service-card p {
  color: #59625d;
  font-size: 13px;
  line-height: 1.75;
  min-height: 72px;
}

.service-card a {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  margin-top: 26px;
  text-transform: uppercase;
}

.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}

.about-panel {
  padding: 92px clamp(35px, 8vw, 115px);
}

.about-panel > p:not(.eyebrow) {
  color: #56615a;
  line-height: 1.85;
  margin: 35px 0 55px;
  max-width: 650px;
}

.about-stats {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 70px;
  padding-top: 34px;
}

.about-stats div {
  display: grid;
}

.about-stats strong {
  color: var(--forest);
  font-family: var(--font-display), serif;
  font-size: 50px;
  font-weight: 500;
}

.about-stats span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

blockquote {
  align-content: center;
  background: var(--forest);
  color: white;
  display: grid;
  font-family: var(--font-display), serif;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.08;
  margin: 0;
  padding: 72px clamp(45px, 7vw, 95px);
}

blockquote cite {
  color: #bbcabf;
  font-family: var(--font-sans), sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-top: 34px;
  text-transform: uppercase;
}

.contact {
  background: var(--forest-deep);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 88px clamp(24px, 7vw, 110px);
}

.contact .eyebrow {
  color: #c6d2ca;
}

.contact-intro {
  border-right: 1px solid rgba(255,255,255,0.17);
  padding-right: clamp(35px, 8vw, 125px);
}

.contact-intro > p:not(.eyebrow) {
  color: #b8c4bc;
  line-height: 1.8;
  margin: 30px 0 40px;
  max-width: 540px;
}

.button-light {
  background: var(--cream);
  color: var(--forest-deep);
}

.contact-details {
  display: grid;
  gap: 35px;
  padding-left: clamp(35px, 8vw, 125px);
}

.contact-details > div {
  display: grid;
  gap: 8px;
}

.contact-details span {
  color: #8fa097;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  font-family: var(--font-display), serif;
  font-size: 25px;
  font-style: normal;
  line-height: 1.3;
}

.contact-details p {
  color: #8fa097;
  font-size: 11px;
  margin: 2px 0 0;
}

footer {
  align-items: center;
  background: #0a211a;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 35px clamp(24px, 7vw, 110px);
}

.brand-footer .brand-logo {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

footer p {
  color: #839188;
  font-size: 10px;
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    height: auto;
    padding: 15px 24px 0;
  }

  .site-header .brand {
    margin-bottom: 12px;
  }

  .site-header nav {
    border-top: 1px solid var(--line);
    gap: 0;
    justify-content: space-between;
    overflow-x: auto;
  }

  .site-header nav a {
    flex: 0 0 auto;
    font-size: 9px;
    padding: 12px 7px 10px;
  }

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

  .hero-copy {
    padding-block: 70px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .section-heading,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .service-number {
    margin-bottom: 40px;
  }

  .contact-intro {
    border-bottom: 1px solid rgba(255,255,255,0.17);
    border-right: 0;
    padding-bottom: 70px;
    padding-right: 0;
  }

  .contact-details {
    padding-left: 0;
    padding-top: 70px;
  }
}

@media (max-width: 600px) {
  .brand strong {
    font-size: 21px;
  }

  .brand small {
    display: none;
  }

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

  h1 {
    font-size: clamp(53px, 17vw, 72px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-card {
    padding: 26px;
    width: 88%;
  }

  .principles {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .principles p {
    font-size: 17px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .about-panel,
  blockquote,
  .contact {
    padding: 68px 24px;
  }

  .about-stats {
    gap: 28px;
  }

  .about-stats strong {
    font-size: 42px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
}

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

  * {
    transition: none !important;
  }
}
