:root {
  --charcoal: #10100f;
  --ink: #1e1d1a;
  --gold: #b6aa65;
  --gold-bright: #d2c678;
  --plaster: #f4f0e6;
  --paper: #fffaf0;
  --sage: #637064;
  --clay: #9b6249;
  --line: rgba(30, 29, 26, 0.14);
  --shadow: 0 24px 70px rgba(12, 12, 10, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 16, 15, 0.88), rgba(16, 16, 15, 0.42));
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-bright);
  background: transparent;
}

.brand-mark img {
  width: 45px;
  height: 39px;
  display: block;
}

.brand-name {
  display: block;
  font-family: UnifrakturCook, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 0.9;
  color: var(--gold-bright);
  white-space: nowrap;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 0.86;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
  color: var(--gold-bright);
}

.header-call {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(210, 198, 120, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.92) 0%, rgba(16, 16, 15, 0.68) 42%, rgba(16, 16, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 16, 15, 0.82) 0%, rgba(16, 16, 15, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(790px, 100%);
  padding: 148px clamp(22px, 5vw, 72px) 92px;
  color: #fff;
}

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

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

h1 {
  margin-bottom: 8px;
  font-family: UnifrakturCook, Georgia, serif;
  font-size: clamp(4.1rem, 10vw, 8.6rem);
  line-height: 0.82;
  color: var(--gold-bright);
  text-wrap: balance;
}

.tagline {
  margin-bottom: 24px;
  font-family: UnifrakturCook, Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.03rem, 2vw, 1.24rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--charcoal);
  color: #fff;
}

.quick-facts div {
  min-height: 108px;
  padding: 24px clamp(20px, 4vw, 48px);
  background: #191816;
}

.quick-facts span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.quick-facts strong {
  font-size: clamp(1.05rem, 2.1vw, 1.34rem);
}

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

.intro,
.services {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.intro > p,
.work-band > p,
.contact p {
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
  color: rgba(30, 29, 26, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--plaster);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  place-items: center;
  background: var(--charcoal);
  color: var(--gold-bright);
  font-size: 1.45rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.service-grid p {
  margin: 0;
  line-height: 1.62;
  color: rgba(30, 29, 26, 0.72);
}

.work-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  padding: clamp(66px, 8vw, 96px) clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(99, 112, 100, 0.86), rgba(155, 98, 73, 0.64)),
    var(--charcoal);
}

.work-band h2 {
  font-family: UnifrakturCook, Georgia, serif;
  color: var(--gold-bright);
}

.work-band p {
  color: rgba(255, 255, 255, 0.84);
}

.contact {
  padding-bottom: clamp(52px, 7vw, 84px);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.contact h2 {
  color: var(--gold-bright);
}

.contact p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.phone {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 800;
  color: var(--gold-bright);
  white-space: nowrap;
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(30, 29, 26, 0.64);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    position: absolute;
  }

  .desktop-nav {
    display: none;
  }

  .header-call {
    justify-self: start;
  }

  .brand-name {
    white-space: normal;
  }

  .hero {
    min-height: 940px;
  }

  .hero-content {
    padding-top: 184px;
    padding-bottom: 62px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 16, 15, 0.9), rgba(16, 16, 15, 0.52)),
      linear-gradient(0deg, rgba(16, 16, 15, 0.88) 0%, rgba(16, 16, 15, 0.16) 60%);
  }

  .quick-facts,
  .intro,
  .services,
  .work-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .service-grid article {
    min-height: 0;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .contact-actions {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .brand {
    align-items: flex-start;
  }

  .brand-mark {
    width: 43px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 880px;
  }

  h1 {
    font-size: clamp(3.2rem, 20vw, 4.6rem);
  }

  .tagline {
    font-size: clamp(2rem, 12vw, 2.9rem);
  }

  .button {
    width: 100%;
  }

  .quick-facts div {
    min-height: 92px;
  }

  footer {
    flex-direction: column;
  }
}
