/* ════════════════════════════════════════════════════
   Solo Stainless Steel, Luxury Interior Metal Design
   Fonts: Cormorant Garamond (display) + Outfit (body)
   Palette: Charcoal, warm grey, brushed steel, copper accent
   ════════════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  /* Palette */
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --dark: #232323;
  --steel: #2e2e2e;
  --graphite: #3a3a3a;
  --gunmetal: #4a4a4a;
  --warm-grey: #8a8178;
  --silver: #b0aca6;
  --light-grey: #d4d0cb;
  --cream: #f0ece6;
  --off-white: #f7f5f2;
  --white: #fefefe;

  /* Accents */
  --copper: #5c5850;
  --copper-light: #7a766e;
  --copper-dark: #3a3733;
  --brass: #9e9a92;
  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1320px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Cursor */
  --cursor-size: 8px;
  --cursor-ring: 40px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}
button {
  cursor: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* Mobile-only line break utility (hidden on desktop, shown on mobile) */
.m-only-br {
  display: none;
}

/* ═══════════════════════════
   SITE LOADER
   ═══════════════════════════ */

html.loader-skip .site-loader {
  display: none !important;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  opacity: 1;
  transition: opacity 0.6s var(--ease-out);
}

.site-loader.is-done {
  opacity: 0;
  pointer-events: none;
}

.site-loader-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 5.2vw, 56px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.site-loader-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  background: linear-gradient(
    100deg,
    #4a4a4a 0%,
    #4a4a4a 35%,
    #f5f5f5 50%,
    #4a4a4a 65%,
    #4a4a4a 100%
  );
  background-size: 260% 100%;
  background-position: 100% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation:
    siteLoaderLetter 1s var(--ease-out) forwards,
    siteLoaderShimmer 2.8s var(--ease-in-out) 1 forwards;
  animation-delay:
    calc(var(--i) * 110ms),
    calc(3000ms + var(--w) * 90ms);
}

.site-loader-space {
  display: inline-block;
  width: 0.45em;
  background: none;
  animation: none;
  opacity: 1;
  filter: none;
}

@keyframes siteLoaderLetter {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes siteLoaderShimmer {
  0%, 100% { background-position: 100% 50%; }
  50%      { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader-text span {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
    background-position: 50% 50%;
  }
}

/* ═══════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════ */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background: var(--copper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s var(--ease-out),
    height 0.2s var(--ease-out),
    background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-ring);
  height: var(--cursor-ring);
  border: 1px solid var(--copper);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    border-color 0.3s,
    opacity 0.3s;
  opacity: 1;
}

body.cursor-hover .cursor-dot {
  width: 50px;
  height: 50px;
  background: rgba(92, 88, 80, 0.2);
}
body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--copper);
  opacity: 1;
}

/* ═══════════════════════════
   NAVBAR
   ═══════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition:
    background 0.4s,
    padding 0.4s,
    backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.nav-logo-img {
  height: 75px;
  width: auto;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
  color: var(--copper-light);
}
.nav-link:hover::after {
  width: 100%;
}

.dropdown-arrow {
  transition: transform 0.3s;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -20px;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(184, 124, 76, 0.15);
  padding: 16px 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-out);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-link {
  display: block;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.dropdown-link:hover {
  color: var(--copper-light);
}

/* Nav CTA */
.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--copper);
  padding: 12px 28px;
  transition:
    background 0.3s,
    color 0.3s;
}

.nav-cta:hover {
  background: var(--copper-light);
  color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--white);
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.5s calc(var(--i) * 0.08s) var(--ease-out),
    transform 0.5s calc(var(--i) * 0.08s) var(--ease-out),
    color 0.3s;
}

.mobile-link-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-dropdown-arrow {
  transition: transform 0.3s var(--ease-out);
  color: var(--copper);
}

.mobile-link-toggle.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-link:hover {
  color: var(--copper);
}

.mobile-link-num {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--copper);
  letter-spacing: 0.1em;
  margin-right: 10px;
  vertical-align: super;
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0 20px;
  opacity: 0;
  transition:
    max-height 0.4s var(--ease-out),
    opacity 0.3s var(--ease-out),
    margin-bottom 0.4s var(--ease-out);
}

.mobile-sub-links.open {
  max-height: 600px;
  opacity: 1;
  margin-bottom: 20px;
  margin-top: 8px;
}

.mobile-sub-link {
  font-size: 15px;
  color: var(--warm-grey);
  transition: color 0.3s;
}

.mobile-sub-link:hover {
  color: var(--copper-light);
}

.mobile-menu-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-footer a {
  font-size: 14px;
  color: var(--silver);
  transition: color 0.3s;
}

.mobile-menu-footer a:hover {
  color: var(--copper);
}

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(184, 124, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 124, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s linear;

  /* Placeholder gradient when no image */
  background-color: var(--charcoal);
  background-image: linear-gradient(
    135deg,
    var(--charcoal) 0%,
    var(--steel) 50%,
    var(--graphite) 100%
  );
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-text {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
  pointer-events: none;
  left: 0;
  right: 0;
  text-align: center;
}
.hero-text.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding: 0 60px;
  position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  height: 1px;
  background: var(--white);
}

.hero-subtitle::before {
  left: 0;
}

.hero-subtitle::after {
  right: 0;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 8px 0;
  flex-direction: row-reverse;
}

.indicator-line {
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
  transition: width 0.4s var(--ease-out);
}

.indicator-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #d4a574;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.hero-indicator.active .indicator-line {
  width: 50px;
}
.hero-indicator.active .indicator-line::after {
  transform: scaleX(1);
}

.indicator-num {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.hero-indicator.active .indicator-num {
  color: #d4a574;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

/* ═══════════════════════════
   BUTTONS
   ═══════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  background: var(--copper);
  color: var(--black);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--copper-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(0);
}
.btn-primary:hover {
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.btn-outline:hover::before {
  transform: translateX(0);
}

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

.btn-lg {
  padding: 20px 48px;
  font-size: 13px;
}

/* ═══════════════════════════
   SECTION COMMON
   ═══════════════════════════ */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 70px);
  text-align: center;
}

/* ═══════════════════════════
   MATERIALS STRIP
   ═══════════════════════════ */

.materials-strip {
  background: var(--charcoal);
  padding: 40px 0;
  border-bottom: 1px solid rgba(184, 124, 76, 0.15);
}

.materials-grid {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}

.material-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.material-icon {
  width: 44px;
  height: 44px;
  color: var(--copper);
  opacity: 0.9;
}

.material-icon svg {
  width: 100%;
  height: 100%;
}

.material-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ═══════════════════════════
   ABOUT INTRO
   ═══════════════════════════ */

.about-intro {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}

.about-left .section-heading {
  color: var(--charcoal);
}

.about-body {
  font-size: 16px;
  color: var(--gunmetal);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ═══════════════════════════
   DISCIPLINES
   ═══════════════════════════ */

.disciplines {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.disciplines-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -30px 0 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.85;
}

.disciplines-hint svg {
  flex-shrink: 0;
  stroke: var(--copper);
}

.disciplines-hint .hint-mobile {
  display: none;
}

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

.discipline-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--white);
  transition: transform 0.5s var(--ease-out);
}

.discipline-card:hover {
  transform: translateY(-6px);
}

.discipline-image {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.discipline-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);

  /* Placeholder */
  background-color: var(--steel);
  background-image:
    radial-gradient(ellipse at 30% 40%, var(--graphite) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, var(--gunmetal) 0%, transparent 60%);
}

.discipline-card:hover .discipline-img-inner,
.discipline-card.is-active .discipline-img-inner {
  transform: scale(1.08);
}

.discipline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.discipline-card:hover .discipline-overlay,
.discipline-card.is-active .discipline-overlay {
  opacity: 1;
}

.discipline-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.discipline-card:hover .discipline-content,
.discipline-card.is-active .discipline-content {
  opacity: 1;
  transform: translateY(0);
}

.discipline-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.discipline-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.discipline-arrow {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.4s var(--ease-out);
}

.discipline-card:hover .discipline-arrow,
.discipline-card.is-active .discipline-arrow {
  transform: translate(4px, -4px);
}

/* ═══════════════════════════
   PARTNERS
   ═══════════════════════════ */

.partners {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-top: 1px solid rgba(184, 124, 76, 0.08);
  border-bottom: 1px solid rgba(184, 124, 76, 0.08);
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  justify-items: center;
}

.partner-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.4s var(--ease-out), opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .partners-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* ═══════════════════════════
   SECTORS
   ═══════════════════════════ */

.sectors {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.sectors-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sector-card {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.sector-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);

  /* Placeholder */
  background-color: var(--steel);
  background-image: linear-gradient(160deg, var(--graphite), var(--gunmetal));
}

.sector-card:hover .sector-image {
  transform: scale(1.06);
}

.sector-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ═══════════════════════════
   STATS BAND
   ═══════════════════════════ */

.stats-band {
  background: var(--charcoal);
  padding: 60px 0;
  border-top: 1px solid rgba(184, 124, 76, 0.15);
  border-bottom: 1px solid rgba(184, 124, 76, 0.15);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 140px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ═══════════════════════════
   CTA BANNER
   ═══════════════════════════ */

.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(184, 124, 76, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(184, 124, 76, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */

.site-footer {
  background: var(--charcoal);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--warm-grey);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  margin-bottom: 10px;
  transition:
    color 0.3s,
    padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--copper-light);
  padding-left: 6px;
}

.footer-address {
  font-size: 14px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.6;
  margin-top: 8px;
}

.footer-contact a,
.footer-contact .footer-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact .footer-icon {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--copper-light);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.footer-contact a:hover .footer-icon {
  color: var(--copper-light);
  transform: translateX(2px);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--warm-grey);
}

.footer-bottom a {
  color: var(--silver);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ═══════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

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

.reveal-stagger {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: calc(var(--i) * 0.1s);
}

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

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

/* Ultrawide monitors: scale the centred container up so content doesn't
   look tiny in a sea of empty space on 2560px+ displays. Standard
   monitors (≤1920px) keep the original 1320px cap. */
@media (min-width: 2200px) {
  :root {
    --container: 1600px;
  }
}

@media (min-width: 2800px) {
  :root {
    --container: 1800px;
  }
}

@media (max-width: 1024px) {
  .disciplines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-indicators {
    display: none;
  }
  .hero-scroll {
    display: none;
  }

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

  .disciplines-hint .hint-desktop {
    display: none;
  }
  .disciplines-hint .hint-mobile {
    display: inline;
  }

  .m-only-hide {
    display: none;
  }

  .m-only-br {
    display: inline;
  }

  .disciplines-grid {
    grid-template-columns: 1fr;
  }
  .discipline-image {
    height: 420px;
  }
  .discipline-arrow {
    padding: 10px;
    margin: -10px;
    color: var(--copper-light);
  }

  .sectors-row {
    grid-template-columns: 1fr;
  }
  .sector-card {
    height: 280px;
  }
  .sector-label {
    color: var(--charcoal);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-col a:hover {
    padding-left: 0;
  }
  .footer-contact a,
  .footer-contact .footer-address {
    justify-content: center;
    text-align: left;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Disable custom cursor on mobile */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  html,
  body,
  a,
  button {
    cursor: auto;
  }
}
