@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #061c38;
  --navy-2: #0b2d55;
  --gold: #c99a3b;
  --gold-light: #e8c878;
  --ink: #152235;
  --muted: #667085;
  --cream: #f8f5ee;
  --white: #ffffff;
  --line: rgba(6, 28, 56, 0.12);
  --shadow: 0 18px 50px rgba(6, 28, 56, 0.1);
  --radius: 8px;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-soft {
  background: var(--cream);
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: '';
  height: 2px;
  width: 34px;
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.center .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  margin: 13px 0 18px;
}

h3 {
  font-size: 1.55rem;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 680px;
}

.section-heading.center p {
  margin: 0 auto;
}

.gold-text {
  color: var(--gold-light);
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 52px;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.btn-primary:hover {
  box-shadow: 0 12px 34px rgba(201, 154, 59, 0.34);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-2);
}

.skip-link {
  background: var(--gold);
  color: var(--navy);
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 2000;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 28, 56, 0.08);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  z-index: 1000;
}

.site-header::before {
  display: none;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(6, 28, 56, 0.1);
  backdrop-filter: blur(14px);
}

.site-header.scrolled::before {
  opacity: 0;
}

.nav-wrap {
  align-items: center;
  display: flex;
  min-height: 92px;
  position: relative;
  z-index: 2;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  height: 74px;
  overflow: hidden;
  width: 235px;
}

.brand img {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: transform 420ms ease, filter 420ms ease;
  width: 100%;
}

.brand:hover img {
  filter: drop-shadow(0 7px 20px rgba(0, 0, 0, 0.14));
  transform: scale(1.025);
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.3vw, 34px);
  list-style: none;
  margin-left: clamp(54px, 5.5vw, 92px);
}

.mobile-nav-cta {
  display: none;
}

.nav-link {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  position: relative;
  text-transform: uppercase;
}

.site-header.scrolled .nav-link {
  color: var(--navy);
}

.nav-link::after {
  background: var(--gold);
  bottom: -8px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  width: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin-left: auto;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 46px;
  margin-left: auto;
  position: relative;
  width: 46px;
}

.menu-toggle span {
  background: var(--navy);
  height: 2px;
  left: 10px;
  position: absolute;
  transition: var(--transition);
  width: 26px;
}

.site-header.scrolled .menu-toggle span {
  background: var(--navy);
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 30px; }

.menu-toggle.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Hero */
.hero {
  align-items: center;
  background: var(--navy);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 142px 0 76px;
  position: relative;
}

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

.hero-media img,
.hero-media video,
.inner-hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(2, 13, 28, 0.88) 0%, rgba(4, 23, 46, 0.64) 50%, rgba(4, 23, 46, 0.18) 100%);
  content: '';
  inset: 0;
  position: absolute;
}

.hero::after {
  border: 1px solid rgba(232, 200, 120, 0.22);
  border-radius: 50%;
  content: '';
  height: 520px;
  position: absolute;
  right: -210px;
  top: 25%;
  width: 520px;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  letter-spacing: -0.035em;
  margin: 22px 0 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  max-width: 650px;
}

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

.hero-proof {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 48px;
}

.hero-proof > span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding-left: 16px;
  text-transform: uppercase;
}

.proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  padding-left: 18px;
  text-transform: uppercase;
}

.proof-item strong {
  color: var(--white);
  display: block;
  font-size: 1.35rem;
}

.scroll-hint {
  align-items: center;
  bottom: 30px;
  color: rgba(255, 255, 255, 0.64);
  display: flex;
  font-size: 0.68rem;
  gap: 12px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 32px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
  z-index: 3;
}

.scroll-hint::after {
  animation: scrollPulse 1.7s infinite;
  background: var(--gold-light);
  content: '';
  height: 1px;
  width: 54px;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleX(0.5); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Intro and image layouts */
.split-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 92px);
  grid-template-columns: 1.05fr 0.95fr;
}

.split-grid.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: auto;
  position: relative;
}

.image-stack .main-image {
  border-radius: var(--radius);
  height: 520px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 600ms ease, box-shadow 600ms ease;
  width: 100%;
}

.image-stack .small-image {
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  height: 520px;
  object-fit: cover;
  position: static;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 600ms ease, box-shadow 600ms ease;
  width: 100%;
}

.image-stack .main-image:hover,
.image-stack .small-image:hover {
  box-shadow: 0 24px 54px rgba(6, 28, 56, 0.18);
  filter: saturate(1.08) contrast(1.02);
  transform: translateY(-8px) scale(1.018);
}

.experience-badge {
  align-items: center;
  background: var(--navy);
  border-radius: 2px;
  color: var(--white);
  display: none;
  flex-direction: column;
  height: 102px;
  justify-content: center;
  left: -34px;
  position: absolute;
  top: 46px;
  width: 132px;
  z-index: 2;
}

.experience-badge strong {
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.experience-badge span {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0 34px;
}

.check-list li {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 13px;
}

.check-list li::before {
  align-items: center;
  background: rgba(201, 154, 59, 0.15);
  border-radius: 50%;
  color: var(--gold);
  content: '\2713';
  display: flex;
  flex: 0 0 28px;
  height: 28px;
  justify-content: center;
}

/* Cards */
.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: #e9e2d5;
  border-radius: var(--radius);
  box-shadow: 0 12px 45px rgba(6, 28, 56, 0.1);
  height: 460px;
  overflow: hidden;
  position: relative;
  transition: transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 480ms ease;
}

.service-card img {
  height: 66%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
  width: 100%;
}

.service-card::after {
  background: linear-gradient(180deg, transparent 32%, rgba(2, 13, 28, 0.17));
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 450ms ease;
}

.service-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.085);
}

.service-card-content {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px 20px 5px 5px;
  bottom: 12px;
  box-shadow: 0 18px 44px rgba(6, 28, 56, 0.16);
  color: var(--navy);
  left: 12px;
  min-height: 208px;
  padding: 48px 25px 23px;
  position: absolute;
  right: 12px;
  text-align: center;
  transition: transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 480ms ease;
  z-index: 2;
}

.service-card-content h3 {
  color: var(--navy);
  margin-bottom: 9px;
}

.service-card-content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-arrow {
  align-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(201, 154, 59, 0.28);
  color: var(--navy);
  display: flex;
  height: 58px;
  justify-content: center;
  left: 50%;
  margin: 0;
  position: absolute;
  top: -29px;
  transform: translateX(-50%);
  transition: transform 380ms ease, box-shadow 380ms ease;
  width: 58px;
}

.service-card:hover .card-arrow {
  box-shadow: 0 14px 30px rgba(201, 154, 59, 0.42);
  transform: translateX(-50%) rotate(-45deg) scale(1.06);
}

.service-card:hover,
.service-card.reveal.visible:hover {
  box-shadow: 0 30px 70px rgba(6, 28, 56, 0.2);
  transform: translateY(-10px);
}

.service-card:hover .service-card-content {
  box-shadow: 0 24px 52px rgba(6, 28, 56, 0.2);
  transform: translateY(-7px);
}

.feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  border-color: rgba(201, 154, 59, 0.5);
  box-shadow: 0 18px 46px rgba(6, 28, 56, 0.08);
  transform: translateY(-7px);
}

.icon-box {
  align-items: center;
  background: var(--cream);
  border-radius: 14px;
  color: var(--gold);
  display: flex;
  font-size: 1.4rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 22px;
  width: 54px;
}

.feature-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(12, 1fr);
}

.project-card {
  background: #d9d5cd;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(6, 28, 56, 0.1);
  grid-column: span 4;
  height: 400px;
  min-height: 0;
  overflow: hidden;
  position: relative;
  transition: transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 480ms ease;
}

.project-card.wide {
  grid-column: span 4;
}

.project-card.tall {
  height: 400px;
  min-height: 0;
}

.project-cta {
  align-items: center;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 34px;
  padding: 22px 0;
}

.project-cta a {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  gap: 10px;
  text-transform: uppercase;
}

.project-cta a:hover {
  color: var(--gold);
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
  width: 100%;
}

.project-card::after {
  background: linear-gradient(180deg, transparent 46%, rgba(2, 13, 28, 0.28));
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 450ms ease;
}

.project-card:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.085);
}

.project-info {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 5px;
  bottom: 14px;
  box-shadow: 0 14px 34px rgba(6, 28, 56, 0.18);
  left: 14px;
  padding: 20px 68px 20px 22px;
  position: absolute;
  right: 14px;
  transform: translateY(8px);
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 450ms ease, opacity 450ms ease;
  z-index: 2;
}

.project-info::after {
  align-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  color: var(--navy);
  content: '\2197';
  display: flex;
  font-size: 1rem;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 350ms ease;
  width: 42px;
}

.project-info span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-info h3 {
  color: var(--navy);
  margin-top: 5px;
}

.project-card:hover,
.project-card.reveal.visible:hover,
.project-card:focus,
.project-card.reveal.visible:focus {
  box-shadow: 0 30px 70px rgba(6, 28, 56, 0.22);
  transform: translateY(-9px);
}

.project-card:hover .project-info,
.project-card:focus .project-info {
  box-shadow: 0 20px 44px rgba(6, 28, 56, 0.24);
  transform: translateY(0);
}

.project-card:hover .project-info::after,
.project-card:focus .project-info::after {
  transform: translateY(-50%) rotate(45deg) scale(1.06);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 36px;
}

.filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 10px 18px;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.project-card.hidden {
  display: none;
}

/* Process */
.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10px;
}

.process-item {
  border-top: 1px solid var(--line);
  padding: 32px 22px 0 0;
  position: relative;
}

.process-number {
  color: rgba(201, 154, 59, 0.3);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1;
}

.process-item h3 {
  font-size: 1.28rem;
  margin: 14px 0 10px;
}

.process-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Statistics and CTA */
.stats-band {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 74px 0;
  position: relative;
}

.stats-band::before {
  background: radial-gradient(circle, rgba(201, 154, 59, 0.18), transparent 68%);
  content: '';
  height: 420px;
  left: -160px;
  position: absolute;
  top: -190px;
  width: 420px;
}

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

.stat {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 30px;
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--gold-light);
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-panel {
  align-items: center;
  background: var(--navy);
  border-radius: 30px;
  color: var(--white);
  display: flex;
  gap: 50px;
  justify-content: space-between;
  overflow: hidden;
  padding: 58px 64px;
  position: relative;
}

.cta-panel::after {
  border: 1px solid rgba(232, 200, 120, 0.25);
  border-radius: 50%;
  content: '';
  height: 330px;
  position: absolute;
  right: -100px;
  top: -180px;
  width: 330px;
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 8px 0 0;
  max-width: 720px;
}

.cta-panel .btn {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

/* Inner pages */
.inner-hero {
  align-items: flex-end;
  background: var(--navy);
  display: flex;
  min-height: 66svh;
  overflow: hidden;
  padding: 190px 0 78px;
  position: relative;
}

.inner-hero-media::after {
  background: linear-gradient(90deg, rgba(2, 13, 28, 0.94), rgba(2, 13, 28, 0.45));
  content: '';
  inset: 0;
  position: absolute;
}

.inner-hero-content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 16px 0;
}

.inner-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 640px;
}

.breadcrumbs {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  font-size: 0.75rem;
  gap: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold-light);
}

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

.value-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 12px 44px rgba(6, 28, 56, 0.07);
  padding: 38px 32px;
}

.value-card .number {
  color: rgba(201, 154, 59, 0.35);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 12px 0 10px;
}

.value-card p {
  color: var(--muted);
}

.client-logo-box {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  justify-content: center;
  min-height: 160px;
  padding: 24px;
  transition: transform 450ms ease, box-shadow 450ms ease, border-color 450ms ease;
}

.client-logo-box img {
  max-height: 130px;
  object-fit: contain;
  transition: transform 450ms ease, filter 450ms ease;
}

.client-logo-box:hover {
  border-color: rgba(201, 154, 59, 0.55);
  box-shadow: 0 18px 42px rgba(6, 28, 56, 0.1);
  transform: translateY(-6px);
}

.client-logo-box:hover img {
  filter: saturate(1.06);
  transform: scale(1.05);
}

.client-logo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 1fr;
}

/* Individual brand slider */
.brand-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
  padding: 82px 0;
}

.brand-intro {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr 1fr;
  margin-bottom: 44px;
}

.brand-intro h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  margin: 0;
}

.brand-intro p {
  color: var(--muted);
  justify-self: end;
  max-width: 360px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider::before,
.logo-slider::after {
  content: '';
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(10vw, 140px);
  z-index: 2;
}

.logo-slider::before {
  background: linear-gradient(90deg, var(--white), transparent);
  left: 0;
}

.logo-slider::after {
  background: linear-gradient(270deg, var(--white), transparent);
  right: 0;
}

.logo-track {
  animation: logoMarquee 24s linear infinite;
  display: flex;
  gap: 26px;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-slide {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex: 0 0 300px;
  height: 150px;
  justify-content: center;
  padding: 12px;
  transition: border-color 400ms ease, box-shadow 400ms ease, transform 400ms ease;
}

.logo-slide img {
  height: 100%;
  object-fit: contain;
  transition: transform 450ms ease, filter 450ms ease;
  width: 100%;
}

.logo-slide:hover {
  border-color: rgba(201, 154, 59, 0.58);
  box-shadow: 0 16px 38px rgba(6, 28, 56, 0.1);
  transform: translateY(-5px);
}

.logo-slide:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 13px)); }
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--navy);
  display: flex;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  width: 100%;
}

.faq-question span:last-child {
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 0 24px;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-info-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.contact-info-item {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.contact-info-item .icon-box {
  flex: 0 0 50px;
  margin: 0;
}

.contact-info-item strong {
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--muted);
}

.contact-form {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 46px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-control {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  min-height: 54px;
  outline: 0;
  padding: 13px 16px;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.form-control:focus {
  background: var(--white);
  border-color: var(--gold);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 14px;
}

.map-placeholder {
  align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 26px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  padding: 30px;
  text-align: center;
}

.map-placeholder h3 {
  color: var(--white);
  font-size: 2rem;
  margin: 16px 0 8px;
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.7);
}

/* Lightbox */
.lightbox {
  align-items: center;
  background: rgba(2, 10, 22, 0.93);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 30px;
  position: fixed;
  z-index: 1600;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  border-radius: 14px;
  max-height: 86vh;
  max-width: min(1100px, 92vw);
  object-fit: contain;
}

.lightbox-close {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  display: flex;
  font-size: 1.5rem;
  height: 46px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 46px;
}

/* Footer */
.site-footer {
  background: #f3efe7;
  border-top: 5px solid var(--gold);
  color: #596476;
  padding-top: 0;
  position: relative;
}

.site-footer::before {
  color: rgba(6, 28, 56, 0.09);
  content: 'PRIME TECH REVONATION';
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 7vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 auto;
  max-width: 1240px;
  overflow: hidden;
  padding: 60px 24px 0;
  white-space: nowrap;
}

.footer-grid {
  border-top: 1px solid rgba(6, 28, 56, 0.13);
  display: grid;
  gap: 50px;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  padding-bottom: 58px;
  padding-top: 42px;
}

.footer-brand {
  background: transparent;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 20px;
  padding: 0;
}

.footer-brand img {
  height: 66px;
  object-fit: contain;
  transition: transform 420ms ease, filter 420ms ease;
  width: 215px;
}

.footer-brand:hover img {
  filter: drop-shadow(0 7px 18px rgba(6, 28, 56, 0.12));
  transform: scale(1.025);
}

.footer-about p {
  font-size: 0.88rem;
  max-width: 330px;
}

.footer-title {
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition), padding var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact {
  display: grid;
  gap: 13px;
  font-size: 0.86rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(6, 28, 56, 0.13);
  color: #647083;
  display: flex;
  font-size: 0.76rem;
  justify-content: space-between;
  padding: 22px 0;
}

/* Editorial refinements */
.service-card,
.feature-card,
.value-card,
.client-logo-box,
.contact-form,
.cta-panel,
.map-placeholder {
  border-radius: 6px;
}

.feature-card,
.value-card {
  box-shadow: none;
}

.image-stack .main-image,
.image-stack .small-image {
  border-radius: 4px;
}

/* Animated desktop cursor */
.cursor-dot,
.cursor-ring {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-100px, -100px, 0);
  z-index: 3000;
}

.cursor-dot {
  background: var(--gold);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.cursor-ring {
  border: 1px solid rgba(201, 154, 59, 0.9);
  border-radius: 50%;
  height: 36px;
  transition: height 180ms ease, width 180ms ease, border-color 180ms ease, background 180ms ease;
  width: 36px;
}

.cursor-ring.hovering {
  background: rgba(201, 154, 59, 0.12);
  border-color: var(--gold);
  height: 54px;
  width: 54px;
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready select,
  body.cursor-ready textarea,
  body.cursor-ready [data-lightbox],
  body.cursor-ready .service-card,
  body.cursor-ready .image-stack img,
  body.cursor-ready .logo-slide,
  body.cursor-ready .client-logo-box {
    cursor: none !important;
  }

  .cursor-dot,
  .cursor-ring {
    opacity: 1;
  }
}

/* Floating actions */
.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.36);
  color: var(--white);
  display: flex;
  font-size: 1.55rem;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform var(--transition);
  width: 60px;
  z-index: 900;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
}

.back-to-top {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  bottom: 94px;
  color: var(--white);
  display: flex;
  height: 42px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 33px;
  transform: translateY(10px);
  transition: var(--transition);
  width: 42px;
  z-index: 899;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 750ms ease;
}

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

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1024px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu.open {
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(6, 28, 56, 0.14);
    display: flex;
    flex-direction: column;
    gap: 0;
    height: calc(100dvh - 92px);
    left: 0;
    margin-left: 0;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 22px max(24px, calc((100vw - 1180px) / 2));
    position: fixed;
    right: 0;
    top: 92px;
    z-index: 1;
  }

  .nav-menu.open .nav-link {
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    display: block;
    font-size: 0.93rem;
    padding: 19px 4px;
  }

  .nav-menu.open .nav-link::after {
    display: none;
  }

  .nav-menu.open .nav-link.active {
    color: var(--gold);
  }

  .nav-menu.open .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 22px;
    width: 100%;
  }

  .split-grid,
  .split-grid.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse .split-copy {
    order: 1;
  }

  .split-grid.reverse .image-stack {
    order: 2;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 78px 0;
  }

  .container {
    padding: 0 18px;
  }

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

  .brand {
    height: 62px;
    width: 196px;
  }

  .nav-menu.open {
    height: calc(100dvh - 82px);
    top: 82px;
  }

  .hero {
    min-height: 880px;
    padding: 140px 0 120px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(2, 13, 28, 0.74), rgba(2, 13, 28, 0.94));
  }

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

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 38px;
  }

  .proof-item {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack .main-image,
  .image-stack .small-image {
    height: 330px;
    width: 100%;
  }

  .services-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.wide {
    grid-column: auto;
    height: 390px;
    min-height: 390px;
  }

  .project-card.tall {
    height: 390px;
    min-height: 390px;
  }

  .brand-intro {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .brand-intro p {
    justify-self: start;
  }

  .logo-slide {
    flex-basis: 250px;
    height: 132px;
  }

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

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    padding: 24px 12px;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 28px;
  }

  .inner-hero {
    min-height: 590px;
    padding: 160px 0 72px;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

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

  .form-group.full {
    grid-column: auto;
  }

  .contact-form {
    padding: 30px 22px;
  }

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

  .footer-about,
  .footer-contact-wrap {
    grid-column: 1 / -1;
  }
}

@media (hover: none) {
  .service-card:hover,
  .service-card.reveal.visible:hover,
  .project-card:hover,
  .project-card.reveal.visible:hover,
  .client-logo-box:hover,
  .logo-slide:hover,
  .image-stack .main-image:hover,
  .image-stack .small-image:hover {
    transform: none;
  }

  .service-card:hover .service-card-content,
  .project-card:hover .project-info,
  .project-info {
    transform: translateY(0);
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .feature-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about,
  .footer-contact-wrap {
    grid-column: auto;
  }

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

  .image-stack .main-image,
  .image-stack .small-image {
    height: 270px;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
  }
}
