:root {
  --ink: #161616;
  --muted: #66615b;
  --paper: #f8f6f1;
  --surface: #ffffff;
  --line: #ddd5c7;
  --gold: #bc9350;
  --gold-dark: #8b6731;
  --green: #203d36;
  --blue: #26364f;
  --shadow: 0 22px 55px rgba(22, 22, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(18, 18, 18, 0.94);
  border-bottom: 1px solid rgba(188, 147, 80, 0.5);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(168px, 20vw, 260px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--gold);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding-top: 76px;
  isolation: isolate;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(22, 22, 22, 0.2), rgba(22, 22, 22, 0.1));
}

.hero-copy {
  align-self: center;
  width: min(710px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 110px);
  padding: 72px 0 110px;
  color: white;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.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 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: white;
}

.section-pad {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(940px, 100%);
  margin: 0 auto 38px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.intro-grid article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
}

.intro-grid span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.intro-grid h3,
.service-list h3 {
  margin-top: 18px;
}

.intro-grid p,
.split-copy p,
.service-list p,
.contact-card p,
.person-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  background: var(--surface);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-copy {
  max-width: 620px;
}

.split-copy p {
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.team {
  background: #efebe2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.person-card {
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(22, 22, 22, 0.08);
}

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

.person-card div {
  padding: 24px;
}

.person-card p {
  margin-bottom: 0;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.services-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.service-list article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--surface);
}

.contact {
  background: var(--green);
  color: white;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-card h2 {
  max-width: 780px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.contact-actions a {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 32px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer img {
  width: 70px;
  height: auto;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(188, 147, 80, 0.72);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--gold);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(188, 147, 80, 0.4);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-media {
    background: #171717;
  }

  .hero-media img {
    height: min(58vh, 520px);
    object-fit: contain;
    object-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88) 54%, rgba(0, 0, 0, 0.94)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.18));
  }

  .intro-grid,
  .team-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .split,
  .services-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    min-width: 0;
  }
}

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

  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-left: 14px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .button {
    width: 100%;
  }

  .section-pad {
    padding-left: 14px;
    padding-right: 14px;
  }
}
