:root {
  --black: #050505;
  --ink: #171717;
  --white: #ffffff;
  --soft: #f6f2ea;
  --muted: #6f6a62;
  --gold: #c49a49;
  --gold-dark: #8f6a26;
  --line: rgba(196, 154, 73, 0.28);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 58px);
  background: rgba(5, 5, 5, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(196, 154, 73, 0.35);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(196, 154, 73, 0.08);
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

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

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 6px;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.68) 48%, rgba(5, 5, 5, 0.24)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.22));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(900px, 100%);
  padding: clamp(42px, 7vw, 86px) clamp(24px, 7vw, 96px);
}

.hero-logo {
  width: min(210px, 52vw);
  margin-bottom: 28px;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.42));
}

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.55vw, 3.95rem);
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy > p:not(.eyebrow),
.split-copy > p,
.contact-copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

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

.button:hover {
  transform: translateY(-2px);
}

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

.button.secondary {
  border-color: var(--line);
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--soft);
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
}

.intro-band div {
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid rgba(5, 5, 5, 0.08);
}

.intro-band strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.intro-band span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section,
.split-section,
.contact-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 76px);
}

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

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

.service-card,
.client-list article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.service-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold-dark);
  font-weight: 800;
}

.service-card p,
.client-list p,
.timeline p {
  color: var(--muted);
}

.video-story {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.video-story video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.video-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.84)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.22));
}

.video-story-copy {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 76px);
}

.video-story-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(34px, 7vw, 86px);
  background: var(--black);
  color: var(--white);
}

.split-copy {
  align-self: center;
}

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

.timeline div {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.timeline h3,
.timeline p {
  grid-column: 2;
}

.clients {
  background:
    linear-gradient(135deg, rgba(196, 154, 73, 0.12), transparent 38%),
    var(--soft);
}

.emotional-heading {
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.emotional-note {
  max-width: 560px;
  margin: 0;
  padding: 28px 30px 28px 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 20px 70px rgba(5, 5, 5, 0.07);
  font-size: 1.05rem;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  padding-bottom: clamp(44px, 7vw, 84px);
  background: var(--black);
  color: var(--white);
}

.contact-brandline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
}

.contact-brandline img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(196, 154, 73, 0.08);
}

.contact-brandline span {
  display: grid;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-brandline small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(196, 154, 73, 0.08);
  color: var(--gold);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(196, 154, 73, 0.16);
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px) clamp(20px, 5vw, 76px) 18px;
  background:
    linear-gradient(135deg, rgba(196, 154, 73, 0.14), transparent 34%),
    var(--black);
  color: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(196, 154, 73, 0.08);
}

.footer-brand span {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
}

.footer-brand p {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(196, 154, 73, 0.22);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.92)),
    var(--black);
  color: var(--white);
}

.thanks-panel {
  width: min(680px, 100%);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.thanks-panel img {
  width: 74px;
  height: 74px;
  margin-bottom: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.thanks-panel h1 {
  max-width: 620px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.58) 44%, rgba(5, 5, 5, 0.92)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.2));
  }

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

  .service-card,
  .client-list article {
    min-height: auto;
  }

  .section-heading {
    display: block;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

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

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

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

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

  h1 {
    font-size: clamp(1.9rem, 9.4vw, 2.85rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 28px;
  }

  .footer-brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-copy {
    justify-content: center;
    min-height: 600px;
    padding-top: 38px;
    padding-bottom: 28px;
  }

  .hero-logo {
    width: 164px;
    margin: 0 auto 14px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 8px;
  }

  .button {
    min-height: 46px;
    padding: 11px 18px;
  }

  .video-story {
    min-height: 640px;
  }

  .button {
    width: 100%;
  }

  .timeline div {
    grid-template-columns: 44px 1fr;
  }
}
