/* Revive IT Solutions FZE - LLC — dark luxury / gold accent */

:root {
  --bg: #0b0b0c;
  --bg-elevated: #121214;
  --surface: #161618;
  --surface-2: #1a1a1d;
  --gold: #c9a96e;
  --gold-soft: #d4bc8a;
  --gold-dim: rgba(201, 169, 110, 0.35);
  --gold-line: rgba(201, 169, 110, 0.22);
  --gold-glow: rgba(201, 169, 110, 0.14);
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --border: rgba(255, 255, 255, 0.06);
  --glass: rgba(18, 18, 20, 0.86);
  --shadow-elevated: 0 32px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 169, 110, 0.1);
  --shadow-card-hover: 0 28px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.35);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
  /* Legacy aliases */
  --primary: var(--bg);
  --primary-soft: var(--surface);
  --secondary: var(--gold);
  --accent: var(--gold);
  --light: var(--bg-elevated);
  --text-on-dark: var(--text);
  --text-muted-dark: var(--text-muted);
  --text-on-light: var(--text);
  --text-muted-light: var(--text-muted);
  --border-dark: var(--border);
  --gradient-cta: linear-gradient(135deg, #d4bc8a 0%, var(--gold) 40%, #9e8354 100%);
  --shadow-soft: var(--shadow-elevated);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-on-dark);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* Elevated section shells */
.container--card {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.75rem);
  box-shadow: var(--shadow-card);
  transition: border-color 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.container--card:hover {
  border-color: rgba(201, 169, 110, 0.32);
}

.section-intro {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-intro--center {
  text-align: center;
}

.section-intro--center .section__eyebrow {
  justify-content: center;
}

.section-intro--center .section__title {
  margin-left: auto;
  margin-right: auto;
  max-width: min(28ch, 100%);
}

.section-intro--center .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.section-intro .section__lead {
  margin-bottom: 0;
}

.section {
  padding: clamp(4.5rem, 11vw, 8.5rem) 0;
  position: relative;
}

/* Former .section--light: unified dark luxury */
.section--light {
  background: transparent;
  color: var(--text);
}

.section--light .section__eyebrow {
  color: var(--gold);
}

.section--light .text-muted {
  color: var(--text-muted);
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  margin: 0 0 1rem;
  max-width: min(22ch, 100%);
  color: var(--text);
}

.section__lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.section--light .section__lead {
  color: var(--text-muted);
}

.text-muted {
  color: var(--text-muted);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gold-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  color: #fff;
  transition: opacity 0.25s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo span {
  color: var(--gold);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s var(--ease-out-expo);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.btn--primary {
  background: var(--gradient-cta);
  color: #0b0b0c;
  box-shadow: 0 10px 36px rgba(201, 169, 110, 0.28);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.38);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--gold-line);
}

.btn--ghost:hover {
  background: var(--gold-glow);
  border-color: rgba(201, 169, 110, 0.45);
}

.btn--outline-light {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold-line);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s ease;
}

/* Hero — full viewport, cinematic media */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) contrast(1.1) saturate(0.88);
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero:hover .hero__video-wrap video {
  transform: scale(1.07);
}

.hero__video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.75) 0%, transparent 28%, transparent 72%, rgba(11, 11, 12, 0.75) 100%),
    radial-gradient(ellipse 90% 60% at 50% 18%, rgba(201, 169, 110, 0.12), transparent 55%);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 12, 0.25) 0%,
    rgba(11, 11, 12, 0.55) 42%,
    rgba(11, 11, 12, 0.88) 78%,
    rgba(11, 11, 12, 0.97) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.hero__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: min(calc(100vh - var(--header-h)), calc(100dvh - var(--header-h)));
  justify-content: center;
  width: min(920px, 92vw);
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.35rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.12s forwards;
}

.hero__title {
  font-size: clamp(2.35rem, 6.2vw, 4rem);
  max-width: min(20ch, 100%);
  margin: 0 0 1.35rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.28s forwards;
  text-wrap: balance;
}

.hero__content--center .hero__title {
  max-width: min(24ch, 100%);
}

.hero__subtitle {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 0 2.25rem;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.44s forwards;
}

.hero__content--center .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.58s forwards;
}

.hero__scope {
  max-width: min(48ch, 100%);
  margin-inline: auto;
  padding: 1.35rem 1.65rem;
  background: rgba(18, 18, 20, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-line);
  font-size: 0.88rem;
  color: var(--text-muted);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out-expo) 0.74s forwards;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero__scope:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

.hero__scope-title {
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.55rem;
}

.hero__scope p {
  margin: 0;
  line-height: 1.6;
}

/* About */
.about-subsection {
  margin-top: 2rem;
}

.about-subsection h3 {
  font-size: 1.12rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.container--card--about .section__title {
  max-width: min(30ch, 100%);
}

.container--card--about > .about-split > .reveal > p:not(.section__eyebrow) {
  color: var(--text-muted);
}

.location-card {
  margin-top: 1.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-line);
  background: var(--surface);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.location-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.location-card strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
}

/* Cinematic framed media (about image — same URL) */
.about-split__visual.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--gold-line);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 30%, rgba(11, 11, 12, 0.82) 100%),
    linear-gradient(135deg, rgba(11, 11, 12, 0.45) 0%, transparent 50%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.08) saturate(0.9);
  transform: scale(1.03);
  transition: transform 0.9s var(--ease-out-expo), filter 0.6s ease;
}

.media-frame:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) contrast(1.06) saturate(0.92);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.25rem, 5vw, 4.25rem);
  align-items: center;
}

.about-split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-split__visual img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.about-split__content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.35rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  transition: transform 0.45s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.45s var(--ease-out-expo), background 0.4s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  background: var(--surface-2);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.05));
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.35s ease;
}

.service-card:hover .service-card__icon {
  transform: scale(1.06);
  border-color: rgba(201, 169, 110, 0.45);
}

.service-card h3 {
  font-size: 1.12rem;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  line-height: 1.58;
}

.service-card__link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s var(--ease-out-expo), color 0.25s ease;
}

.service-card__link:hover {
  gap: 0.6rem;
  color: var(--gold-soft);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.why-item {
  padding: 1.85rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.4s ease, background 0.35s ease;
}

.why-item:hover {
  border-color: rgba(201, 169, 110, 0.35);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.why-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.why-item p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Stats (legacy) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--gold-glow) 0%, transparent 100%);
  border: 1px solid var(--gold-line);
}

.stat-card__value {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Work / process / testimonials (legacy) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.work-card {
  grid-column: span 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--gold-line);
  transition: transform 0.45s var(--ease-out-expo);
}

.work-card--large {
  grid-column: span 8;
  grid-row: span 2;
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.06);
  transition: transform 0.75s var(--ease-out-expo);
}

.work-card:hover .work-card__media img {
  transform: scale(1.05);
}

.work-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.work-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--gold-line);
}

.intro__visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.intro__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(18, 18, 20, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.intro__badge strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 2.5rem;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0.8;
  z-index: 0;
}

.process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  box-shadow: 0 0 0 8px rgba(11, 11, 12, 0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.testimonial__quote {
  color: var(--text-muted);
}

.cta-banner {
  text-align: center;
  padding: clamp(4rem, 10vw, 5.5rem) 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #121214 0%, #1a1814 50%, rgba(201, 169, 110, 0.15) 100%);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-elevated);
}

.cta-banner h2 {
  color: var(--text);
}

.cta-banner .btn--primary {
  background: var(--gradient-cta);
  color: #0b0b0c;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info--card {
  padding: 1.75rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-info--card:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

.contact-card-title {
  font-family: "Syne", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text);
  line-height: 1.25;
}

.contact-info__k {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 1.15rem 0 0.4rem;
}

.contact-info__k:first-of-type {
  margin-top: 0;
}

.contact-info p,
.contact-info a {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.contact-info a {
  color: var(--gold-soft);
  transition: color 0.25s ease;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-form--card {
  padding: 1.75rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.35s ease;
}

.contact-form--card:focus-within {
  border-color: rgba(201, 169, 110, 0.25);
}

.contact-info h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 0.94rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a96e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Contact card title was p — keep h3 rule from legacy if any */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.28s;
}

/* Footer */
.site-footer {
  background: #060607;
  padding: 4.5rem 0 2.25rem;
  border-top: 1px solid var(--gold-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.75rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 34ch;
  margin-top: 1.1rem;
  line-height: 1.65;
}

.footer-brand a {
  color: var(--gold-soft);
  transition: color 0.25s ease;
}

.footer-brand a:hover {
  color: var(--gold);
}

.footer-col h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.35rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-muted);
  margin-left: 1.25rem;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* Mobile */
@media (max-width: 1024px) {
  .about-split,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card,
  .work-card--large {
    grid-column: span 12;
  }

  .work-card--large {
    grid-row: auto;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-track::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__content--center {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 12, 0.97);
    backdrop-filter: blur(16px);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 999;
    border-top: 1px solid var(--gold-line);
  }

  .nav.is-open .nav__links a {
    font-size: 1.2rem;
    color: var(--text);
  }

  .nav .btn--primary {
    padding: 0.7rem 1.2rem;
    font-size: 0.82rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container--card {
    padding: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero:hover .hero__video-wrap video {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero:hover .hero__video-wrap video,
  .media-frame:hover img {
    transform: none;
  }
}
