:root {
  --ink: #f8fafc;
  --muted: #aeb7c2;
  --paper: #ffffff;
  --coal: #080a0d;
  --panel: #111821;
  --panel-2: #17212b;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #d7af58;
  --gold-bright: #f7cf73;
  --blue: #5db9ff;
  --red: #f05252;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.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;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(8, 10, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: #dce4ed;
  text-decoration: none;
  font-size: 0.95rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 4vw, 54px) 32px;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.96) 0%, rgba(8, 10, 13, 0.74) 42%, rgba(8, 10, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.86) 0%, rgba(8, 10, 13, 0.06) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding-bottom: 84px;
}

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

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 9vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #d8e1ea;
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold-bright);
  color: #101010;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #ffe18d;
}

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

.btn.secondary:hover,
.btn.secondary:focus-visible {
  border-color: rgba(247, 207, 115, 0.62);
}

.hero-actions {
  margin-top: 30px;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(840px, 100%);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  background: rgba(10, 14, 19, 0.82);
}

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

.hero-stats strong {
  color: var(--gold-bright);
  font-size: 1.1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
}

.band {
  background: #10161d;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 8vw, 110px);
  align-items: start;
}

.intro p:last-child {
  margin: 28px 0 0;
  color: #d2dbe4;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.service-grid,
.review-grid,
.steps {
  display: grid;
  gap: 16px;
}

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

.service-card,
.steps article,
.review-grid figure,
.instagram-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  padding: 24px;
}

.service-card p,
.steps p,
.review-grid blockquote,
.instagram-panel p,
.quote-copy p,
.site-footer p {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.process {
  background:
    linear-gradient(90deg, rgba(93, 185, 255, 0.13), transparent 36%),
    #0b1117;
}

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

.steps strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  border: 1px solid rgba(247, 207, 115, 0.44);
  color: var(--gold-bright);
}

.work-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.text-link {
  color: var(--gold-bright);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

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

.work-item,
.instagram-panel {
  position: relative;
  overflow: hidden;
}

.work-item {
  display: flex;
  align-items: end;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(247, 207, 115, 0.42), transparent 46%),
    linear-gradient(25deg, #151f28, #040609);
  min-height: 190px;
}

.work-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: 1.08rem;
}

.shine {
  position: absolute;
  inset: -80px;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 62%),
    radial-gradient(circle at 80% 20%, rgba(93, 185, 255, 0.42), transparent 30%);
  transform: rotate(8deg);
}

.instagram-panel {
  grid-column: span 2;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
}

.reviews {
  background: #0f151b;
}

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

.review-grid figure {
  margin: 0;
}

.review-grid blockquote {
  margin: 0 0 20px;
  font-size: 1.03rem;
}

.review-grid figcaption {
  color: var(--gold-bright);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 108px;
}

.quote-copy p {
  font-size: 1.06rem;
}

.contact-strip {
  margin-top: 26px;
}

.contact-strip a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: #eaf2fa;
  text-decoration: none;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #e5edf5;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #0a0f15;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: 2px solid rgba(247, 207, 115, 0.56);
  outline-offset: 2px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 54px);
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-bright);
}

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

  .site-nav {
    position: fixed;
    top: 79px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(8, 10, 13, 0.96);
    border: 1px solid var(--line);
  }

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

  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

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

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

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

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 18px 24px;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-stats,
  .service-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item.large,
  .instagram-panel {
    grid-column: auto;
    grid-row: auto;
  }

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