:root {
  --ink: #070707;
  --black: #0d0d0d;
  --charcoal: #181818;
  --graphite: #2a2a2a;
  --paper: #f5f1e8;
  --white: #ffffff;
  --muted: #b9b1a2;
  --muted-dark: #6f685d;
  --gold: #d7b56d;
  --gold-dark: #a77d32;
  --red: #aa1622;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(7, 7, 7, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

p {
  color: rgba(245, 241, 232, 0.78);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.92);
  border-bottom-color: var(--line);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

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

.site-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(245, 241, 232, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-menu a {
  transition: color 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(215, 181, 109, 0.6);
  border-radius: 6px;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
  border-radius: 999px;
}

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

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

.hero-media {
  background-image: url("assets/images/IMG_20240721_203207.jpg.jpeg");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.01);
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.84) 0%, rgba(7, 7, 7, 0.52) 33%, rgba(7, 7, 7, 0.16) 62%, rgba(7, 7, 7, 0.02) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.52) 0%, rgba(7, 7, 7, 0.12) 38%, rgba(7, 7, 7, 0) 72%);
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 184px;
}

.hero-brand-row {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-bottom: 16px;
  text-align: left;
}

.hero-mark {
  width: min(360px, 56vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.hero-line {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4.1vw, 4.25rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  align-self: flex-start;
  text-align: left;
}

.hero-accent {
  color: var(--red);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(245, 241, 232, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #e6c77f;
}

.button-ghost {
  border-color: rgba(245, 241, 232, 0.44);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.button-ghost-dark {
  border-color: rgba(7, 7, 7, 0.22);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.2);
}

.button-ghost-dark:hover,
.button-ghost-dark:focus-visible {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: min(calc(100% - 40px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-strip div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-strip div:last-child {
  border-right: 0;
}

.hero-strip strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.hero-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 108px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 72px;
  align-items: start;
}

.intro-copy {
  padding-top: 8px;
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-note {
  max-width: 360px;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

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

.service-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.service-card {
  min-height: 250px;
  padding: 26px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.process-band {
  background: var(--paper);
  color: var(--ink);
}

.process-band p,
.process-band h2,
.process-band h3 {
  color: var(--ink);
}

.process-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 94px 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 40px;
  align-items: stretch;
}

.process-inner .section-kicker {
  color: var(--red);
}

.process-copy {
  align-self: start;
  padding-top: 6px;
}

.process-copy h2 {
  max-width: 320px;
}

.process-media-shell {
  min-width: 0;
  display: grid;
  gap: 14px;
  align-content: end;
}

.process-visual {
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(188, 168, 95, 0.08), rgba(255, 255, 255, 0.55)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.3));
}

.process-slot {
  position: relative;
  display: grid;
  grid-template-rows: 220px auto;
  border-right: 1px solid var(--line-dark);
  overflow: hidden;
  background: rgba(247, 245, 242, 0.52);
}

.process-slot:last-child {
  border-right: 0;
}

.process-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(24, 19, 21, 0.14);
  border-radius: 6px;
  pointer-events: none;
}

.process-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--charcoal);
}

.process-slot-copy {
  position: relative;
  z-index: 1;
  padding: 20px 24px 24px;
  background: linear-gradient(180deg, rgba(247, 245, 242, 0.82) 0%, rgba(247, 245, 242, 0.96) 100%);
}

.process-slot-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.9);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-slot-copy p {
  margin-bottom: 0;
  max-width: 220px;
  color: rgba(24, 19, 21, 0.72);
}

.process-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.process-list li {
  min-height: 144px;
  padding: 20px 22px;
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.54);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(7, 7, 7, 0.68);
}

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

.build-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.build-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.build-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--charcoal);
}

.build-card-large img {
  aspect-ratio: 3 / 2;
}

.build-card div {
  padding: 20px;
}

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

.team-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 92px 0 120px;
}

.team-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--charcoal);
}

.team-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  background: var(--paper);
  color: var(--ink);
  padding: 100px 0;
}

.contact-section p,
.contact-section h2,
.contact-section h3,
.contact-section a {
  color: var(--ink);
}

.contact-section .section-kicker,
.contact-section .text-link {
  color: var(--red);
}

.contact-panel,
.contact-grid {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 26px;
  padding: 36px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
}

.contact-panel-copy {
  align-self: start;
}

.contact-panel-copy h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.contact-panel-cta {
  justify-self: end;
  max-width: 380px;
  display: grid;
  gap: 20px;
  align-content: center;
}

.contact-panel-cta p {
  margin-bottom: 0;
  color: rgba(7, 7, 7, 0.72);
  font-size: 1.05rem;
}

.contact-panel .section-kicker {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "location phone review"
    "hours hours hours";
  gap: 16px;
  align-items: start;
}

.contact-card {
  min-height: 210px;
  padding: 24px;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.64);
}

.contact-grid .contact-card:nth-of-type(1) {
  grid-area: location;
}

.contact-grid .contact-card:nth-of-type(2) {
  grid-area: phone;
}

.contact-grid .contact-card:nth-of-type(3) {
  grid-area: hours;
  min-height: 320px;
}

.contact-grid .review-card {
  grid-area: review;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.hours-list span {
  display: block;
  color: rgba(7, 7, 7, 0.72);
  font-size: 0.95rem;
  line-height: 1.35;
}

.hours-list strong {
  display: inline-block;
  min-width: 54px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.contact-card p {
  color: rgba(7, 7, 7, 0.68);
}

.contact-card span {
  color: var(--muted-dark);
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 16px;
  align-items: center;
  height: 210px;
  padding: 22px;
  overflow: hidden;
}

.review-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.site-footer img {
  width: 250px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--gold);
  font-weight: 900;
}

.legal {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: rgba(245, 241, 232, 0.56);
}

@media (max-width: 1000px) {
  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-inner,
  .team-section,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .process-copy h2 {
    max-width: none;
  }

  .process-visual {
    min-height: 260px;
  }

  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel-copy h2,
  .contact-panel-cta {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
    min-height: 68px;
  }

  .brand img {
    width: 178px;
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(7, 7, 7, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-menu a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .site-menu a:hover,
  .site-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.64) 44%, rgba(7, 7, 7, 0.96) 100%);
  }

  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
    padding: 118px 0 310px;
  }

  .hero-brand-row {
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    flex-direction: column;
  }

  .hero-mark {
    width: min(280px, 64vw);
  }

  .hero-line {
    white-space: normal;
    max-width: 100%;
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    width: min(calc(100% - 28px), var(--max));
    grid-template-columns: 1fr;
    bottom: 20px;
  }

  .hero-strip div {
    min-height: 78px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .process-inner,
  .team-section,
  .contact-panel,
  .contact-grid,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link,
  .section-note {
    margin-top: 20px;
  }

  .service-grid,
  .build-grid,
  .contact-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-grid .contact-card,
  .contact-grid .review-card {
    grid-area: auto;
    grid-column: auto;
    width: 100%;
    min-height: 0;
  }

  .process-media-shell {
    gap: 12px;
  }

  .process-visual {
    min-height: 300px;
    grid-template-columns: 1fr;
  }

  .process-slot {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    grid-template-rows: 200px auto;
  }

  .process-slot:last-child {
    border-bottom: 0;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .build-card-large,
  .review-card {
    grid-column: auto;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-grid .contact-card:nth-of-type(3) {
    min-height: 0;
  }

  .review-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    height: auto;
  }

  .review-card img {
    width: 112px;
    height: 112px;
    align-self: flex-start;
  }

  .contact-panel-cta {
    gap: 16px;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero-inner {
    padding-bottom: 330px;
  }

  .hero-actions {
    gap: 10px;
  }

  .service-card,
  .contact-card,
  .build-card div {
    padding: 20px;
  }
}
