/* =========================================================
   NEXUS CONSULTING — Premium Design System
   ========================================================= */

:root {
  /* Palette */
  --ink: #0c1220;
  --ink-2: #131b2e;
  --ink-3: #1b2540;
  --slate: #5b6478;
  --slate-light: #8b93a7;
  --paper: #f7f6f3;
  --white: #ffffff;
  --gold: #c9a24b;
  --gold-2: #e0c078;
  --gold-dark: #a8842f;
  --line: rgba(12, 18, 32, 0.1);
  --line-light: rgba(255, 255, 255, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;
  --shadow: 0 30px 60px -30px rgba(12, 18, 32, 0.35);
  --shadow-sm: 0 12px 30px -18px rgba(12, 18, 32, 0.3);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin: 1rem 0 1.1rem;
}

.section-head p {
  color: var(--slate);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--slate);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
}

.btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 14px 30px -14px rgba(201, 162, 75, 0.7);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--gold);
}

.btn-outline-light {
  border-color: var(--line-light);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s var(--ease);
  padding: 1.4rem 0;
}

.site-header.scrolled {
  background: rgba(12, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-name span {
  color: var(--gold);
}

.brand-tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: all 0.35s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(12, 18, 32, 0.96) 0%,
    rgba(12, 18, 32, 0.82) 45%,
    rgba(12, 18, 32, 0.45) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  margin: 1.4rem 0 1.4rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  margin-top: 4rem;
}

.stat {
  background: rgba(12, 18, 32, 0.6);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(6px);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 2s infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================================
   INTRO / ABOUT STRIP
   ========================================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.intro-media::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ink);
  color: var(--white);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}

.intro-badge .stat-num {
  font-size: 2rem;
}

.intro-badge .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.intro-copy h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin: 1rem 0 1.2rem;
}

.intro-copy p {
  color: var(--slate);
  margin-bottom: 1.2rem;
}

.intro-points {
  margin: 1.8rem 0 2.2rem;
  display: grid;
  gap: 1rem;
}

.intro-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.intro-points .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-top: 0.2rem;
}

.intro-points .tick svg {
  width: 13px;
  height: 13px;
}

.intro-points strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.intro-points span {
  color: var(--slate);
  font-size: 0.95rem;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--ink);
  color: var(--white);
}

.services .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.services .eyebrow {
  color: var(--gold-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  padding: 2.4rem 2rem;
  position: relative;
  transition: all 0.45s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--ink-3);
  border-color: rgba(201, 162, 75, 0.4);
}

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--ink);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* =========================================================
   PROCESS
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.4s var(--ease);
}

.process-step:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.process-step .num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.process-step p {
  color: var(--slate);
  font-size: 0.92rem;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  background: var(--ink);
  color: var(--white);
}

.testimonials .eyebrow {
  color: var(--gold-2);
}

.testimonials .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--ink-2);
  border: 1px solid var(--line-light);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.4rem;
}

.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.testimonial-author strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(12, 18, 32, 0.15);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 560px;
}

.cta-inner p {
  margin-top: 0.6rem;
  color: rgba(12, 18, 32, 0.75);
  max-width: 520px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-top: 1.2rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-2);
}

.footer-contact li {
  display: flex;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  align-items: flex-start;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold-2);
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .socials {
  display: flex;
  gap: 0.8rem;
}

.footer-bottom .socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.footer-bottom .socials a:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.footer-bottom .socials svg {
  width: 15px;
  height: 15px;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 11rem 0 5rem;
  overflow: hidden;
}

.page-hero .hero-bg img {
  opacity: 0.3;
}

.page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(12, 18, 32, 0.95), rgba(12, 18, 32, 0.7));
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin: 1rem 0 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: var(--gold-2);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 2.2rem 2rem;
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.value-card .service-icon {
  margin-bottom: 1.4rem;
}

.value-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.value-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
  border-color: rgba(201, 162, 75, 0.5);
}

.team-monogram {
  width: 84px;
  height: 84px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--paper);
  margin-bottom: 1.4rem;
}

.team-info h3 {
  font-size: 1.3rem;
}

.team-info .role {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 0.3rem;
}

.team-info p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail:nth-child(even) .detail-media {
  order: 2;
}

.detail-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.detail-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0.8rem 0 1rem;
}

.detail-copy p {
  color: var(--slate);
  margin-bottom: 1.2rem;
}

.detail-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
}

.detail-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.95rem;
}

.detail-list svg {
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0.8rem 0 1rem;
}

.contact-info > p {
  color: var(--slate);
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.2rem;
}

.contact-method {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.contact-method:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(6px);
}

.contact-method .service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
}

.contact-method .service-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method h3 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.contact-method p,
.contact-method a {
  color: var(--slate);
  font-size: 0.95rem;
}

.contact-method a:hover {
  color: var(--gold-dark);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.contact-form-wrap > p {
  color: var(--slate);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--slate-light);
  margin-top: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success.show {
  display: block;
}

.form-success .check {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin: 0 auto 1.4rem;
}

.form-success .check svg {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.form-success p {
  color: var(--slate);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.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.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid,
  .testimonial-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 360px);
    background: var(--ink-2);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    padding: 2rem;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    margin-left: 0;
  }

  .intro-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .detail-media {
    order: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-badge {
    right: 0;
  }
}

@media (max-width: 560px) {
  .services-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
}
