/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #152336;
  --navy-light:  #1E3352;
  --gold:        #C5973A;
  --gold-light:  #E4B86A;
  --gold-pale:   #F5E6C8;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --gray-100:    #F2F0EC;
  --gray-300:    #D1C9BC;
  --gray-500:    #8A7F70;
  --gray-700:    #4A4035;
  --text:        #1A150E;

  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(13,27,42,.08);
  --shadow-md:   0 6px 24px rgba(13,27,42,.14);
  --shadow-lg:   0 16px 48px rgba(13,27,42,.18);

  --max-w:       1160px;
  --nav-h:       68px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
}
p { line-height: 1.75; color: var(--gray-700); }

/* ─── Layout helpers ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}
section { position: relative; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .22s, color .22s, border-color .22s, transform .15s, box-shadow .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(197,151,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,151,58,.18);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 18px; height: 18px; }
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav__logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  padding: .55rem 1.25rem;
  font-size: .82rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(197,151,58,.15);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
}
.nav__mobile.open { display: flex; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(45deg, rgba(197,151,58,.06) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(197,151,58,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(197,151,58,.12) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 6rem;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ─────────────────────────────────────────────────────────
   WHO WE ARE
───────────────────────────────────────────────────────── */
.about {
  background: var(--off-white);
  padding: 7rem 0 6rem;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__left .section-label { margin-bottom: .75rem; display: block; }
.about__left .section-title { margin-bottom: 1.5rem; }
.about__left p { font-size: 1.05rem; }
.about__divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1.75rem 0;
  border-radius: 2px;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(197,151,58,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stat-card__icon svg { width: 22px; height: 22px; color: var(--gold); }
.stat-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-card__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────────────
   WHAT WE DO
───────────────────────────────────────────────────────── */
.services {
  background: var(--white);
  padding: 6rem 0;
}
.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header .section-label { display: block; margin-bottom: .75rem; }
.services__header .section-title { margin-bottom: 1rem; }
.services__header p { max-width: 520px; margin-inline: auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(197,151,58,.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; line-height: 1.65; }
.services__row2 {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.services__row2 .service-card { width: calc(33.333% - .5rem); }

/* ─────────────────────────────────────────────────────────
   HOW WE WORK
───────────────────────────────────────────────────────── */
.process {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(45deg, rgba(197,151,58,.04) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(197,151,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.process__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.process__header .section-label { margin-bottom: .75rem; display: block; }
.process__header .section-title { color: var(--white); }
.process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(197,151,58,.3));
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step__num svg { width: 28px; height: 28px; color: var(--gold); }
.process-step__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.process-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

/* ─────────────────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────────────────── */
.why {
  background: var(--off-white);
  padding: 6rem 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why__left .section-label { display: block; margin-bottom: .75rem; }
.why__left .section-title { margin-bottom: 1rem; }
.why__left p { font-size: 1rem; margin-bottom: 2rem; }
.why__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-item__icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-item__icon svg { width: 14px; height: 14px; color: var(--gold); }
.why-item__text {
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
}

/* ─────────────────────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────────────────────── */
.industries {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.industries__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}
.industries__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-right: .5rem;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.25rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  transition: border-color .2s, background .2s, color .2s;
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy-mid);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,151,58,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ─────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────── */
.contact {
  background: var(--off-white);
  padding: 6rem 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact__info .section-label { display: block; margin-bottom: .75rem; }
.contact__info .section-title { margin-bottom: 1rem; }
.contact__info > p { font-size: 1rem; margin-bottom: 2rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .2rem;
}
.contact-detail__value { font-size: .95rem; font-weight: 500; color: var(--navy); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.form-group:last-of-type { margin-bottom: 0; }
label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-700);
}
input, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-500); }
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,151,58,.15);
  background: var(--white);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   SCROLL TO TOP
───────────────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(197,151,58,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
  pointer-events: none;
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scrollTop:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(197,151,58,.55);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__row2 { flex-direction: row; }
  .services__row2 .service-card { width: calc(50% - .75rem); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding-block: 4rem; }
  .hero::after { height: 48px; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: 1fr; }
  .services__row2 { flex-direction: column; }
  .services__row2 .service-card { width: 100%; }

  .process__steps { grid-template-columns: 1fr; gap: 2rem; }

  .why__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__items { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__stats { grid-template-columns: 1fr; }
}
