:root {
  --ink: #f7f7f2;
  --muted: #b8b8ad;
  --dark: #050505;
  --panel: #111111;
  --panel-2: #191919;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #d7b46a;
  --accent-strong: #f0d18a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.brand {
  display: inline-grid;
  gap: 2px;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-word {
  position: relative;
  display: inline-block;
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-word::before,
.brand-word::after {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 34px;
  height: 2px;
  background: currentColor;
}

.brand-word::before {
  left: 0;
}

.brand-word::after {
  right: 0;
}

.brand-sub {
  margin-top: 4px;
  text-align: center;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #ededdf;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(18px, 6vw, 84px) 72px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 40%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.08) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  color: #ddd9cc;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn.primary {
  color: #090909;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.quick-info div {
  min-height: 112px;
  padding: 24px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  text-transform: uppercase;
}

.section {
  padding: clamp(68px, 10vw, 128px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

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

.service-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-grid span {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin: 44px 0 12px;
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-grid p,
.review-copy p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.prices {
  background: #ededdf;
  color: #080808;
}

.prices .eyebrow {
  color: #7a5a16;
}

.price-list {
  display: grid;
  max-width: 860px;
  border-top: 3px solid #080808;
  border-bottom: 3px solid #080808;
}

.price-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 900;
  text-transform: uppercase;
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list small {
  font-size: 0.68em;
}

.review {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.review-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--accent-strong);
  font-size: 1.5rem;
}

blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1fr);
  gap: 18px;
  background: #0d0d0d;
}

.contact-panel,
.map-panel {
  min-height: 420px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel {
  background: var(--panel);
}

address {
  margin: 26px 0 14px;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.hours {
  margin-bottom: 0;
}

.map-panel {
  display: grid;
  align-content: end;
  background:
    linear-gradient(135deg, rgba(240, 209, 138, 0.18), rgba(255, 255, 255, 0.02)),
    #161616;
}

.map-panel span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.map-panel strong {
  margin-top: 12px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
  transform: scale(0.82);
  transform-origin: left center;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 116px;
  }

  .quick-info,
  .service-grid,
  .review,
  .contact {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .service-grid article,
  .contact-panel,
  .map-panel {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-word {
    font-size: 1.35rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .price-list div {
    gap: 12px;
  }
}
