:root {
  --bg: #0d0d0f;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: #17181c;
  --ink: #f5f1e8;
  --muted: #b8b0a4;
  --line: rgba(255, 255, 255, 0.1);
  --brand: #e1a12c;
  --brand-deep: #f1c15a;
  --accent: #111318;
  --accent-soft: #1c1f26;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(225, 161, 44, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #050506 0%, #111216 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background: #f7f1e6;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  padding: clamp(3rem, 6vw, 4.75rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}

.hero-copy,
.hero-card,
.section-copy,
.service-card,
.team-card,
.project-list,
.footer-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

.hero h1,
.section-title h2,
.section-heading h2,
.project-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-copy {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button-primary {
  background: var(--brand);
  color: #111;
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.hero-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-card::before,
.hero-card::after {
  content: "";
  display: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: white;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-panel p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.hero-panel li {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.05rem;
  font-weight: 600;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.stat-band div {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
}

.stat-band strong {
  display: block;
  color: white;
  font-size: 1.1rem;
}

.stat-band span {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.trust-strip {
  padding-bottom: 1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.stats-section {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.section-title h2,
.section-heading h2,
.project-copy h2,
.site-footer h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

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

.section-copy p,
.project-copy p,
.footer-card p {
  margin: 0 0 1.2rem;
  line-height: 1.8;
  color: var(--muted);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.98), rgba(8, 9, 12, 0.98)),
    var(--accent);
  color: white;
}

.section-dark .eyebrow {
  color: #ffb581;
}

.section-dark .section-heading h2 {
  max-width: 14ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-card {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.service-card h3,
.team-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.team-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.team-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.role-tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(225, 161, 44, 0.12);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-accent {
  background: linear-gradient(180deg, rgba(28, 31, 38, 0.85), rgba(13, 13, 15, 0));
}

.project-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.project-list {
  display: grid;
  gap: 0.9rem;
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.project-feature,
.process-list {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.project-feature {
  padding: 1.5rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  color: white;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.08), rgba(15, 15, 15, 0.8)),
    linear-gradient(135deg, rgba(184, 92, 30, 0.9), rgba(32, 50, 63, 0.95));
  box-shadow: var(--shadow);
}

.project-feature-image {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.project-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.08), rgba(15, 15, 15, 0.82));
}

.project-feature h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.project-feature p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.project-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 0.9rem;
}

.process-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.process-item strong {
  font-size: 1rem;
}

.process-item span {
  color: var(--muted);
  line-height: 1.6;
}

.project-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.project-item strong {
  font-size: 1rem;
}

.project-item span {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.site-footer {
  padding: 2rem 0 4rem;
}

.footer-shell {
  padding: 2.4rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #0f1014 0%, #15171d 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr) minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-mark {
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand-copy strong,
.footer-column h3 {
  font-size: 1.05rem;
}

.footer-brand-copy small {
  color: var(--muted);
}

.footer-description {
  max-width: 34ch;
  margin: 1.4rem 0 1.6rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.footer-input span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.footer-input a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: #111;
  font-weight: 700;
}

.footer-column {
  display: grid;
  gap: 0.9rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  color: #ffffff;
}

.footer-column a,
.footer-column span,
.footer-contact-item p {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: var(--brand-deep);
}

.footer-contact-item {
  display: grid;
  gap: 0.25rem;
}

.footer-contact-item label {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-contact-item a {
  color: var(--ink);
  font-weight: 700;
}

.footer-contact-item p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-bottom strong {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #ffffff;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 1.4rem;
}

.contact-list-large {
  max-width: 820px;
  margin-top: 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 960px;
  margin-top: 2rem;
}

.contact-list-large a,
.contact-list-large p {
  padding: 1.1rem 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.form-field input::placeholder {
  color: var(--muted);
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(241, 193, 90, 0.55);
  box-shadow: 0 0 0 3px rgba(225, 161, 44, 0.12);
}

.contact-form .button {
  justify-self: start;
  min-width: 180px;
}

.contact-list a,
.contact-list p {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.6;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .process-layout,
  .project-layout,
  .footer-grid,
  .project-showcase,
  .gallery-grid,
  .stats-grid,
  .service-grid,
  .team-grid,
  .trust-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

  .stat-band {
    grid-template-columns: 1fr;
  }

  .footer-input {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-input a,
  .contact-form .button {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 25;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 76px 1rem auto 1rem;
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(19, 20, 25, 0.96);
    box-shadow: var(--shadow);
    transform: scale(0.98);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .site-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .section,
  .site-footer {
    padding-top: 4rem;
  }

  .hero-panel,
  .contact-form,
  .team-card,
  .service-card,
  .stat-card {
    padding: 1.1rem;
  }

  .footer-shell {
    padding: 1.4rem;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .footer-socials a {
    min-width: 46px;
    height: 46px;
  }
}

@media (max-width: 560px) {
  .trust-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.25rem);
  }

  .section-title h2,
  .section-heading h2,
  .project-copy h2,
  .site-footer h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .footer-logo-row {
    align-items: flex-start;
  }

  .footer-brand-mark {
    width: 72px;
    height: 72px;
  }
}
