:root {
  --ink: #141414;
  --muted: #66615c;
  --paper: #fffdf8;
  --soft: #f4f0e8;
  --line: #ded6c9;
  --gold: #c9932f;
  --rose: #b94d55;
  --green: #245d52;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(330px, 54vw);
  min-width: 0;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 76px;
  border-radius: 4px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav-social {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

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

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 44%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  max-width: calc(100vw - 36px);
  margin: 0 auto;
  padding: 150px 0 96px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(62px, 10vw, 118px);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 21px;
}

.hero-copy {
  max-width: 620px;
  width: 100%;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-subtitle {
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(27px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  background: var(--gold);
  color: #17100a;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(66px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.muted {
  background: var(--soft);
}

.intro-grid,
.about-grid,
.contact-grid,
.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro p,
.section-heading p,
.about-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

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

.service-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.03);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.sticky-heading {
  position: sticky;
  top: 118px;
  margin-bottom: 0;
}

.highlight-list {
  display: grid;
  gap: 14px;
}

.highlight {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.highlight strong {
  color: var(--green);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.highlight span {
  color: var(--muted);
  font-size: 17px;
}

.about-panel {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-panel .eyebrow {
  color: #e7bf72;
}

.about-copy {
  display: grid;
  gap: 28px;
}

.stats {
  display: grid;
  gap: 12px;
}

.stats div {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 18px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 18px;
}

.stats span {
  margin-top: 4px;
  color: var(--muted);
}

.contact {
  background: #17120e;
  color: var(--white);
}

.contact p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-row {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin: 0;
  padding: 12px 0 18px;
  font-style: normal;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: clamp(17px, 2vw, 22px);
}

.contact-row small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #0f0c09;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

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

  .site-nav {
    position: absolute;
    inset: 100% 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-social {
    border-color: var(--line);
    border-radius: 6px;
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .work-layout {
    grid-template-columns: 1fr;
  }

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

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    width: min(218px, 58vw);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(calc(100vw - 36px), 354px);
    min-width: 0;
    margin-right: 18px;
    margin-left: 18px;
    padding-bottom: 58px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 18px;
  }

  h1 {
    font-size: clamp(62px, 20vw, 86px);
  }

  .hero-subtitle {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: 0;
  }

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

  .about-panel {
    min-height: 320px;
  }

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