:root {
  --black: #080c10;
  --dark: #0c1520;
  --navy: #0f2035;
  --mid: #1e3a52;
  --grey-dark: #2c3a48;
  --grey: #6b7a89;
  --grey-light: #a8b4be;
  --white-soft: #e8ecf0;
  --white: #f5f7f9;
  --gold: #c8a96e;
  --gold-light: #dfc08a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition: 0.4s var(--ease-out);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: min(1240px, 100% - 3rem);
  margin-inline: auto;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--grey);
  max-width: 560px;
  margin-inline: auto;
}


/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 12, 16, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 169, 110, 0.12);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem;
  max-width: 1440px;
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark.small {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-text em {
  font-style: normal;
  font-weight: 300;
  color: var(--grey-light);
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.25s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid rgba(200, 169, 110, 0.5) !important;
  padding: 0.45rem 1.2rem !important;
  color: var(--gold) !important;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 16, 0.3) 0%,
    rgba(8, 12, 16, 0.1) 40%,
    rgba(8, 12, 16, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 1.5rem;
  max-width: 900px;
}

.hero-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

h1.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: 3rem;
}

.hero-cta {
  display: inline-block;
  border: 1px solid rgba(200, 169, 110, 0.6);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

.hero-content .reveal { transition-delay: 0s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.15s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.3s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s var(--ease-out) 0.15s, transform 0.9s var(--ease-out) 0.15s;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ─── ABOUT ──────────────────────────────────── */
.about {
  padding-block: 8rem;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.about-image-caption {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
}

.about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-text .lead {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-text p {
  color: var(--grey);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.about-pillars {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

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

.pillar-text strong {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.pillar-text span {
  font-size: 0.82rem;
  color: var(--grey);
}


/* ─── INDUSTRIES ─────────────────────────────── */
.industries {
  padding-block: 8rem;
  background: var(--dark);
}

.industries .section-header h2 {
  color: var(--white);
}

.industries .section-intro {
  color: var(--grey-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}

.industry-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  cursor: default;
}

.industry-card--wide {
  grid-column: 1 / -1;
}

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--navy);
}

.industry-card--wide .card-image {
  height: 340px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(0.7) brightness(0.85);
}

.industry-card:hover .card-image img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.95);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,16,0.7) 0%, transparent 60%);
}

.card-body {
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background 0.4s;
}

.industry-card:hover .card-body {
  background: rgba(200, 169, 110, 0.04);
}

.card-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white-soft);
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.industry-card:hover .card-body h3 {
  color: var(--gold-light);
}

.card-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.75;
}


/* ─── SOLUTIONS ──────────────────────────────── */
.solutions {
  padding-block: 9rem;
  position: relative;
  background: var(--white);
}

.solutions-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef4 100%);
  z-index: 0;
}

.solutions .container {
  position: relative;
  z-index: 1;
}

.solutions .section-header h2 {
  color: var(--dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
}

.solution-item {
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: background 0.35s;
  position: relative;
}

.solution-item:last-child {
  border-right: none;
}

.solution-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.solution-item:hover::before {
  transform: scaleX(1);
}

.solution-item:hover {
  background: rgba(255,255,255,0.7);
}

.solution-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}

.solution-item:hover .solution-number {
  color: rgba(200, 169, 110, 0.5);
}

.solution-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.solution-content p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
}


/* ─── PRESENCE ───────────────────────────────── */
.presence {
  padding-block: 9rem;
  background: var(--dark);
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.presence-text .section-label {
  color: var(--gold);
}

.presence-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.presence-text .lead {
  font-size: 1.05rem;
  color: var(--white-soft);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.presence-text p {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin-bottom: 1rem;
}

.presence-regions {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.region {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--grey-light);
  font-weight: 300;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.region:last-child {
  border-bottom: none;
}

.region-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.presence-statement {
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  padding-top: 2.5rem;
}

.presence-statement blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.3;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}


/* ─── CONTACT ────────────────────────────────── */
.contact {
  padding-block: 9rem;
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-text .section-label {
  color: var(--gold);
}

.contact-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.contact-text p {
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item address {
  font-size: 1rem;
  color: var(--white-soft);
  transition: color 0.25s;
}

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

.contact-note {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}

.contact-note p {
  font-size: 0.8rem;
  color: var(--grey-dark);
  line-height: 1.7;
}


/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-block: 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
}

.footer-copy p {
  font-size: 0.75rem;
  color: var(--grey-dark);
  text-align: center;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-dark);
  transition: color 0.25s;
}

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


/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

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

  .solution-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .solution-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(8,12,16,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    transform: translateY(-110%);
    transition: transform 0.45s var(--ease-out);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .main-nav a {
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-image img {
    height: 360px;
  }

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

  .industry-card--wide {
    grid-column: 1;
  }

  .presence-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .contact-details {
    margin-top: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-copy p {
    text-align: center;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 62px;
  }

  .header-inner {
    padding-inline: 1.2rem;
  }

  .about, .industries, .solutions, .presence, .contact {
    padding-block: 5rem;
  }

  .about-grid, .solutions-grid, .presence-grid, .contact-inner {
    gap: 2.5rem;
  }

  .solution-item {
    padding: 2.5rem 1.8rem;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

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

  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
