:root {
  --navy: #0F1D2D;
  --brown: #8C5A2B;
  --stone: #D6D2C4;
  --slate: #6B6F76;
  --cream: #F6F4EF;
  --white: #FFFEFB;
  --ink: #171B20;
  --border: rgba(15, 29, 45, 0.16);
  --shadow: 0 24px 70px rgba(15, 29, 45, 0.12);
  --serif: "Lora", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

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

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

.skip-link {
  position: fixed;
  left: 16px; top: 12px;
  transform: translateY(-150%);
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  z-index: 200;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.92);
  border-bottom: 1px solid rgba(15,29,45,.08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand-link { display: inline-flex; align-items: center; }
.nav-logo {
  width: 205px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav > a:not(.button) {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
  font-weight: 600;
}
.site-nav > a:not(.button):hover { color: var(--brown); }

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 9px;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
}

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% 36%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(140,90,43,.10), transparent 68%);
  pointer-events: none;
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(15,29,45,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,29,45,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  padding: 92px 0 110px;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--brown);
  font-size: .72rem;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background: var(--brown);
  margin-top: 13px;
}
.eyebrow.light { color: #e9d8c8; }
.eyebrow.light::after { background: #e9d8c8; }

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}
h1 {
  max-width: 700px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}
h2 { font-size: clamp(2.15rem, 4.2vw, 4.25rem); }
h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  line-height: 1.25;
}

.hero-lede {
  max-width: 680px;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: #394452;
}
.hero-actions {
  margin-top: 38px;
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .13em;
  font-weight: 700;
  transition: .2s ease;
}
.button:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .66rem; }
.text-link {
  font-weight: 600;
  text-decoration: none;
  font-size: .84rem;
}
.text-link span { color: var(--brown); margin-left: 6px; }
.text-link:hover { color: var(--brown); }

.hero-mark {
  justify-self: end;
  width: min(100%, 500px);
}
.hero-logo-card {
  position: relative;
  padding: 44px 26px;
  background: rgba(255,254,251,.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(140,90,43,.22);
  pointer-events: none;
}
.hero-logo-card img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}
.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 24px 0 0 28px;
}
.hero-note .line {
  width: 54px;
  height: 1px;
  margin-top: 10px;
  background: var(--brown);
  flex: 0 0 auto;
}
.hero-note p {
  margin: 0;
  text-transform: uppercase;
  font-size: .72rem;
  line-height: 1.7;
  letter-spacing: .12em;
  font-weight: 600;
}

.principles { padding: 110px 0 118px; }
.section-heading {
  max-width: 800px;
  margin-bottom: 64px;
}
.section-heading h2 { max-width: 720px; }
.section-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #4e5762;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principle-card {
  padding: 38px 28px 42px;
  border-right: 1px solid var(--border);
}
.principle-card:last-child { border-right: 0; }
.principle-card p {
  margin: 14px 0 0;
  color: #535c66;
  font-size: .91rem;
}
.icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--brown);
}
.icon-wrap svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services {
  padding: 118px 0;
  background: var(--navy);
  color: white;
}
.services-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}
.services-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}
.services-intro p:last-child {
  margin: 28px 0 0;
  color: #cfd5da;
  max-width: 510px;
}
.service-list { border-top: 1px solid rgba(255,255,255,.18); }
.service-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.service-row > span {
  color: #d7b697;
  font-size: .72rem;
  letter-spacing: .12em;
  font-weight: 700;
}
.service-row h3 { color: #fff; }
.service-row p {
  margin: 12px 0 0;
  color: #cfd5da;
  max-width: 580px;
}

.story { padding: 120px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}
.story-visual {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(15,29,45,.80), rgba(15,29,45,.08)),
    linear-gradient(145deg, #c8b79f 0%, #92795d 42%, #545c60 100%);
}
.horizon {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(15,29,45,.86), rgba(15,29,45,.14));
}
.mountains {
  position: absolute;
  width: 100%;
  height: 68%;
  left: 0;
  bottom: 24%;
}
.mountains path {
  fill: none;
  stroke: rgba(246,244,239,.78);
  stroke-width: 2.1;
  vector-effect: non-scaling-stroke;
}
.mountains path:last-child { opacity: .36; }
.story-quote {
  position: absolute;
  left: 36px; bottom: 34px;
  color: white;
}
.story-quote span {
  display: block;
  width: 58px;
  height: 2px;
  background: #d4a675;
  margin-bottom: 16px;
}
.story-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
}
.story-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #4d5660;
}

.contact-section {
  padding: 118px 0;
  background: #ebe7dd;
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 86px;
  align-items: start;
}
.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #4d5660;
}
.contact-card {
  background: var(--white);
  padding: 42px;
  border: 1px solid rgba(15,29,45,.12);
  box-shadow: 0 20px 60px rgba(15,29,45,.08);
}
.contact-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-size: .68rem;
  font-weight: 700;
}
.contact-email {
  display: inline-block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
  text-decoration-color: var(--brown);
  text-underline-offset: 7px;
  overflow-wrap: anywhere;
}
.contact-email:hover,
.contact-email:focus-visible { color: var(--brown); }
.contact-note {
  margin: 30px 0 0;
  max-width: 520px;
  color: #676f76;
  font-size: .76rem;
  line-height: 1.65;
}

.site-footer {
  background: #0b1622;
  color: #ced5da;
  padding: 44px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.footer-logo {
  width: 170px;
  height: 56px;
  object-fit: contain;
  object-position: left;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.site-footer p {
  margin: 0;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .12em;
}
.copyright { justify-self: end; text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0; right: 0;
    padding: 26px 20px 30px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .site-nav.open { display: flex; }
  .menu-button { display: block; }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 54px; }
  .hero-mark { justify-self: stretch; width: 100%; max-width: 620px; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
  .principle-card:nth-child(2) { border-right: 0; }
  .principle-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .services-grid { gap: 60px; }
  .services-intro { position: static; }
  .story-grid, .contact-grid { gap: 54px; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 76px; }
  .nav-logo { width: 170px; height: 55px; }
  .site-nav { top: 76px; }

  .hero { min-height: auto; }
  .hero-grid { padding: 72px 0 82px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-logo-card { padding: 32px 18px; }
  .hero-note { margin-left: 0; }

  .principles, .services, .story, .contact-section { padding: 82px 0; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .principle-card:last-child { border-bottom: 0; }

  .story-visual { min-height: 390px; }
  .contact-card { padding: 27px 20px; }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .copyright { justify-self: start; text-align: left; }
}
