/* GODD’S EYE — Premium Corporate Styles */

:root {
  --brand-green: #006837;
  --brand-green-deep: #004d29;
  --brand-green-soft: #0a8f4d;
  --gold: #c8a14a;
  --gold-light: #e0c878;
  --gold-dark: #a8842e;
  --navy: #0f172a;
  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-700: #374151;
  --surface: #ffffff;
  --surface-muted: #f7f8fa;
  --surface-subtle: #f1f3f5;
  --text: #0f172a;
  --text-muted: #4b5563;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 1.25rem;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: rgba(0, 104, 55, 0.18);
  color: var(--navy);
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Scroll progress */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--brand-green), var(--gold));
  transition: width 0.05s linear;
}

/* Navbar */
.nav-shell {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.nav-shell.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.nav-link {
  position: relative;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-green);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.nav-link-btn::after {
  bottom: -4px;
}

/* Services mega menu */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

@media (max-width: 1023.98px) {
  .mega-menu {
    display: none !important;
  }
}

.mega-menu-inner {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--surface-muted);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mega-item:hover {
  background: rgba(0, 104, 55, 0.06);
  border-color: rgba(0, 104, 55, 0.22);
  transform: translateY(-2px);
}

.mega-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-green);
  background: linear-gradient(145deg, rgba(0, 104, 55, 0.1), rgba(200, 161, 74, 0.1));
  border: 1px solid rgba(0, 104, 55, 0.12);
}

.mega-item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mega-item-title {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.mega-item-desc {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.mega-promo {
  height: 100%;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200, 161, 74, 0.22), transparent 55%),
    linear-gradient(160deg, #0a3d24 0%, #0f172a 100%);
  border: 1px solid rgba(200, 161, 74, 0.22);
}

.mobile-mega-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  background: var(--surface-muted);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-mega-item:hover {
  background: rgba(0, 104, 55, 0.06);
  border-color: rgba(0, 104, 55, 0.18);
}

.mobile-mega-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-green);
  background: rgba(0, 104, 55, 0.08);
  border: 1px solid rgba(0, 104, 55, 0.12);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-deep) 100%);
  box-shadow: 0 10px 28px rgba(0, 104, 55, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 104, 55, 0.38);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(200, 161, 74, 0.55);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(200, 161, 74, 0.35);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--brand-green);
  border: 1px solid rgba(0, 104, 55, 0.25);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn-outline-green:hover {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 104, 55, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 161, 74, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #050a12 0%, #0f172a 45%, #0a1628 100%);
}

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 88% 0%, rgba(255, 252, 235, 0.92) 0%, transparent 52%),
    radial-gradient(ellipse 50% 45% at 6% 100%, rgba(0, 104, 55, 0.12) 0%, transparent 50%),
    linear-gradient(155deg, #f7e7a3 0%, #e8c96a 46%, #c8a14a 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28));
}

.page-hero .hero-grid {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.07) 1px, transparent 1px);
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.page-hero-orb-1 {
  width: 380px;
  height: 380px;
  top: -18%;
  right: -6%;
  background: rgba(255, 248, 220, 0.7);
}

.page-hero-orb-2 {
  width: 260px;
  height: 260px;
  bottom: -12%;
  left: -4%;
  background: rgba(0, 104, 55, 0.16);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -10%;
  right: -5%;
  background: rgba(0, 104, 55, 0.45);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -5%;
  background: rgba(200, 161, 74, 0.18);
  animation: orbFloat 16s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 24px);
  }
}

.hero-line {
  stroke: rgba(200, 161, 74, 0.25);
  stroke-width: 1;
  fill: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
  line-height: 1.1;
}

.stat-value .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Gold accent text */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section helpers */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.section-eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-eyebrow-light {
  color: var(--gold);
}

.section-eyebrow-light::before {
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Cards */
.premium-card {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0, 104, 55, 0.18);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 161, 74, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 104, 55, 0.1), rgba(200, 161, 74, 0.08));
  color: var(--brand-green);
  transition: transform 0.35s ease;
}

.premium-card:hover .icon-wrap,
.glass-card:hover .icon-wrap {
  transform: scale(1.08);
}

.icon-wrap-dark {
  background: linear-gradient(145deg, rgba(0, 104, 55, 0.35), rgba(200, 161, 74, 0.15));
  color: var(--gold);
}

/* Timeline */
.eradicate-item {
  position: relative;
  padding-left: 2rem;
}

.eradicate-item::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 2.5rem;
  bottom: -1.5rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 104, 55, 0.35), rgba(200, 161, 74, 0.15));
}

.eradicate-item:last-child::before {
  display: none;
}

.eradicate-dot {
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-green);
  box-shadow: 0 0 0 4px rgba(0, 104, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Matrix table */
.matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.matrix-table th,
.matrix-table td {
  padding: 1.15rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.matrix-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matrix-table thead th:nth-child(2) {
  background: linear-gradient(135deg, var(--brand-green-deep), var(--brand-green));
}

.matrix-table thead th:nth-child(3) {
  background: linear-gradient(135deg, #8a6b28, var(--gold));
  color: var(--navy);
}

.matrix-table tbody tr:last-child td {
  border-bottom: none;
}

.matrix-table tbody tr:hover td {
  background: rgba(0, 104, 55, 0.03);
}

.matrix-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}

/* Attention modal */
.attention-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.attention-modal[hidden] {
  display: none;
}

.attention-modal.is-open {
  display: flex;
}

.attention-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.attention-modal.is-open .attention-modal-backdrop {
  opacity: 1;
}

.attention-modal-dialog {
  position: relative;
  width: min(100%, 36rem);
  max-height: min(88vh, 40rem);
  z-index: 1;
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.attention-modal.is-open .attention-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.attention-modal-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.06), transparent 40%),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 1.5rem 1.35rem 1.35rem;
  max-height: inherit;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .attention-modal-card {
    padding: 1.85rem 1.85rem 1.6rem;
  }
}

.attention-modal-accent {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b45309, var(--gold), var(--brand-green));
}

.attention-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.attention-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.18);
  border: 1px solid rgba(200, 161, 74, 0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.attention-modal-close {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.attention-modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 161, 74, 0.4);
}

.attention-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.attention-modal-body {
  overflow-y: auto;
  padding-right: 0.25rem;
  display: grid;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.attention-modal-body strong {
  color: var(--gold-light);
  font-weight: 700;
}

.attention-modal-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.attention-modal-confirm {
  min-width: 10rem;
  text-align: center;
}

body.attention-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .attention-modal-backdrop,
  .attention-modal-dialog {
    transition: none;
  }
}

/* Performance chart */
.performance-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.performance-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(200, 161, 74, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 85%, rgba(0, 104, 55, 0.28), transparent 50%),
    linear-gradient(180deg, #0f172a 0%, #0a1f16 48%, #0f172a 100%);
}

.performance-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(200, 161, 74, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.performance-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.15rem;
  padding: 1.25rem 1.35rem;
  backdrop-filter: blur(10px);
}

.performance-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.45rem;
}

.performance-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.performance-stat-meta {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.performance-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(15, 23, 42, 0.55);
  border-radius: 1.5rem;
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

@media (min-width: 768px) {
  .performance-panel {
    padding: 1.85rem 1.85rem 1.6rem;
  }
}

.performance-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.performance-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.performance-legend-swatch {
  width: 1.75rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-green-soft), var(--gold));
  box-shadow: 0 0 12px rgba(200, 161, 74, 0.45);
}

.performance-chart-wrap {
  width: 100%;
  overflow: hidden;
}

.performance-chart {
  display: block;
  width: 100%;
  height: auto;
  min-height: 220px;
}

.performance-grid {
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}

.performance-axis {
  fill: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
}

.performance-bar {
  fill: url(#perfBarGrad);
  opacity: 0;
  transform-origin: bottom;
  transform-box: fill-box;
  transform: scaleY(0.15);
  transition: opacity 0.6s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--bar-index, 0) * 0.08s + 0.15s);
}

.performance-panel.is-drawn .performance-bar {
  opacity: 1;
  transform: scaleY(1);
}

.performance-area {
  fill: url(#perfAreaGrad);
  opacity: 0;
  transition: opacity 1s ease 0.35s;
}

.performance-panel.is-drawn .performance-area {
  opacity: 1;
}

.performance-line {
  fill: none;
  stroke: url(#perfLineGrad);
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.performance-panel.is-drawn .performance-line {
  stroke-dashoffset: 0;
}

.performance-point {
  opacity: 0;
  transition: opacity 0.45s ease;
  transition-delay: calc(var(--point-index, 0) * 0.1s + 0.55s);
}

.performance-panel.is-drawn .performance-point {
  opacity: 1;
}

.performance-point-ring {
  fill: rgba(200, 161, 74, 0.12);
  stroke: rgba(200, 161, 74, 0.45);
  stroke-width: 1;
}

.performance-point-dot {
  fill: var(--gold-light);
}

.performance-value {
  fill: #fff;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.performance-year {
  fill: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.performance-years {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .performance-years {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .performance-years {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.performance-year-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s ease, background 0.3s ease;
  transition-delay: calc(var(--chip-index, 0) * 0.07s + 0.7s);
}

.performance-panel.is-drawn .performance-year-chip {
  opacity: 1;
  transform: translateY(0);
}

.performance-year-chip:hover,
.performance-year-chip.is-peak {
  border-color: rgba(200, 161, 74, 0.4);
  background: rgba(200, 161, 74, 0.08);
}

.performance-year-chip-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.performance-year-chip-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.1;
}

.performance-year-chip.is-peak .performance-year-chip-value {
  color: var(--gold-light);
}

@media (prefers-reduced-motion: reduce) {
  .performance-bar,
  .performance-area,
  .performance-line,
  .performance-point,
  .performance-year-chip {
    transition: none;
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }
}

/* Yearly growth charts */
.yearly-graphs-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.06);
  align-self: flex-start;
}

.yearly-graphs-tabs::-webkit-scrollbar {
  display: none;
}

.yearly-graphs-dark .yearly-graphs-tabs {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.yearly-graphs-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.yearly-graphs-dark .yearly-graphs-tab {
  color: rgba(255, 255, 255, 0.5);
}

.yearly-graphs-tab:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.yearly-graphs-dark .yearly-graphs-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.yearly-graphs-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-deep) 100%);
  box-shadow: 0 8px 18px rgba(0, 104, 55, 0.28);
}

.yearly-graphs-dark .yearly-graphs-tab.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(200, 161, 74, 0.28);
}

.yearly-graphs-stage {
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.yearly-graphs-dark .yearly-graphs-stage {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(15, 23, 42, 0.55);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.yearly-graphs-stage-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .yearly-graphs-stage-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(17rem, 0.85fr);
  }
}

.yearly-graphs-chart-col {
  position: relative;
  min-height: 16rem;
  background:
    linear-gradient(180deg, #f8fafb 0%, #eef2f4 100%);
}

.yearly-graphs-dark .yearly-graphs-chart-col {
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
  .yearly-graphs-chart-col {
    min-height: 22rem;
  }
}

.yearly-graphs-panel {
  padding: 0.85rem;
}

@media (min-width: 768px) {
  .yearly-graphs-panel {
    padding: 1.15rem;
  }
}

.yearly-graphs-figure {
  margin: 0;
}

.yearly-graphs-expand {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.yearly-graphs-expand img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.yearly-graphs-expand-hint {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.yearly-graphs-expand:hover .yearly-graphs-expand-hint,
.yearly-graphs-expand:focus-visible .yearly-graphs-expand-hint {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .yearly-graphs-expand-hint {
    opacity: 1;
    transform: none;
  }
}

.yearly-graphs-meta {
  padding: 1.5rem 1.35rem 1.6rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

@media (min-width: 1024px) {
  .yearly-graphs-meta {
    padding: 1.85rem 1.65rem;
    border-top: 0;
    border-left: 1px solid rgba(15, 23, 42, 0.06);
  }
}

.yearly-graphs-dark .yearly-graphs-meta {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.yearly-graphs-meta-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.yearly-graphs-dark .yearly-graphs-meta-kicker {
  color: var(--gold);
}

.yearly-graphs-meta-year {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.yearly-graphs-dark .yearly-graphs-meta-year {
  color: #fff;
}

.yearly-graphs-meta-copy {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.yearly-graphs-dark .yearly-graphs-meta-copy {
  color: rgba(255, 255, 255, 0.5);
}

.yearly-graphs-stats {
  display: grid;
  gap: 0.75rem;
}

.yearly-graphs-stat {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.yearly-graphs-dark .yearly-graphs-stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.yearly-graphs-stat dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.yearly-graphs-dark .yearly-graphs-stat dt {
  color: rgba(255, 255, 255, 0.42);
}

.yearly-graphs-stat dd {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}

.yearly-graphs-dark .yearly-graphs-stat dd {
  color: #fff;
}

.yearly-graphs-stat dd span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand-green);
}

.yearly-graphs-dark .yearly-graphs-stat dd span {
  color: var(--gold-light);
}

.yearly-graphs-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

@media (min-width: 640px) {
  .yearly-graphs-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .yearly-graphs-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
  }
}

.yearly-graphs-thumb {
  appearance: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.05rem;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.yearly-graphs-dark .yearly-graphs-thumb {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.yearly-graphs-thumb:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 104, 55, 0.22);
  box-shadow: var(--shadow-lift);
}

.yearly-graphs-dark .yearly-graphs-thumb:hover {
  border-color: rgba(200, 161, 74, 0.35);
}

.yearly-graphs-thumb.is-active {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(0, 104, 55, 0.14), var(--shadow-lift);
}

.yearly-graphs-dark .yearly-graphs-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 161, 74, 0.22);
}

.yearly-graphs-thumb-media {
  display: block;
  overflow: hidden;
  background: #f3f4f6;
}

.yearly-graphs-thumb-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.yearly-graphs-thumb:hover .yearly-graphs-thumb-media img,
.yearly-graphs-thumb.is-active .yearly-graphs-thumb-media img {
  transform: scale(1.04);
}

.yearly-graphs-thumb-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.7rem 0.8rem 0.8rem;
}

.yearly-graphs-thumb-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.yearly-graphs-dark .yearly-graphs-thumb-year {
  color: rgba(255, 255, 255, 0.45);
}

.yearly-graphs-thumb-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1;
}

.yearly-graphs-dark .yearly-graphs-thumb-value {
  color: #fff;
}

.yearly-graphs-thumb.is-active .yearly-graphs-thumb-value {
  color: var(--brand-green);
}

.yearly-graphs-dark .yearly-graphs-thumb.is-active .yearly-graphs-thumb-value {
  color: var(--gold-light);
}

.yearly-graphs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.yearly-graphs-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.yearly-graphs-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(72rem, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.1rem 1.1rem 1.25rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.yearly-graphs-lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.yearly-graphs-lightbox-figure {
  margin: 0;
}

.yearly-graphs-lightbox-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.yearly-graphs-lightbox-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.yearly-graphs-lightbox-figure figcaption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

body.yearly-lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .yearly-graphs-tab,
  .yearly-graphs-thumb,
  .yearly-graphs-thumb-media img,
  .yearly-graphs-expand-hint {
    transition: none;
  }

  .yearly-graphs-thumb:hover {
    transform: none;
  }
}

/* Video section */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-section-dark {
  background: var(--navy);
}

.video-section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(200, 161, 74, 0.12), transparent 55%),
    radial-gradient(ellipse 45% 45% at 8% 90%, rgba(0, 104, 55, 0.26), transparent 50%),
    linear-gradient(180deg, #0f172a 0%, #0a1410 50%, #0f172a 100%);
}

.video-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(rgba(200, 161, 74, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.video-card {
  display: flex;
  flex-direction: column;
}

.video-card-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.video-section:not(.video-section-dark) .video-card-frame {
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-lift);
}

.video-card-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05080f;
}

.video-card-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 100%);
  cursor: pointer;
  color: #fff;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.video-card-play:hover {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.48) 100%);
}

.video-card.is-playing .video-card-play {
  opacity: 0;
  pointer-events: none;
}

.video-card-play-ring {
  position: absolute;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 161, 74, 0.45);
  animation: videoPlayPulse 2.4s ease-out infinite;
}

.video-card-play-icon {
  position: relative;
  z-index: 1;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 12px 32px rgba(200, 161, 74, 0.4);
  transition: transform 0.3s ease;
}

.video-card-play-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.15rem;
}

.video-card-play:hover .video-card-play-icon {
  transform: scale(1.08);
}

.video-card-play-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.video-card-index {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-card.is-playing .video-card-index {
  opacity: 0;
}

.video-card-body {
  padding: 1.15rem 0.15rem 0;
}

@keyframes videoPlayPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.28);
    opacity: 0;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-card-play-ring {
    animation: none;
  }

  .video-card-play,
  .video-card-play-icon,
  .video-card-index {
    transition: none;
  }
}

/* Team */
.team-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

@media (min-width: 640px) {
  .team-card {
    grid-template-columns: minmax(11.5rem, 38%) 1fr;
    min-height: 20rem;
  }
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(0, 104, 55, 0.18);
}

.team-section-dark .team-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.team-section-dark .team-card:hover {
  border-color: rgba(200, 161, 74, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.team-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #0f172a 0%, #0a3d24 100%);
}

@media (min-width: 640px) {
  .team-card-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.team-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-card-photo {
  transform: scale(1.06);
}

.team-card-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.45) 100%),
    linear-gradient(90deg, transparent 70%, rgba(15, 23, 42, 0.08) 100%);
  pointer-events: none;
}

.team-card-index {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.team-card-body {
  padding: 1.75rem 1.5rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .team-card-body {
    padding: 2rem 2rem 2.15rem;
  }
}

.team-card-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--brand-green));
  opacity: 0.85;
  border-radius: 999px;
}

@media (max-width: 639.98px) {
  .team-card-body::before {
    left: 1.5rem;
    top: 0;
    bottom: auto;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--brand-green));
  }
}

.team-card-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.55rem;
  padding-left: 0.85rem;
}

.team-section-dark .team-card-role {
  color: var(--gold);
}

.team-card-body h3,
.team-card-body p:last-child {
  padding-left: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-card-photo {
    transition: none;
  }

  .team-card:hover {
    transform: none;
  }

  .team-card:hover .team-card-photo {
    transform: none;
  }
}

/* Quote */
.manifesto {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(0, 77, 41, 0.85)),
    radial-gradient(ellipse at 30% 50%, rgba(200, 161, 74, 0.15), transparent 50%),
    var(--navy);
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.35;
  color: #fff;
}

/* CTA banner */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(200, 161, 74, 0.2), transparent 55%),
    linear-gradient(120deg, var(--brand-green-deep) 0%, var(--brand-green) 45%, #0a4d2e 100%);
}

/* Contact */
.map-placeholder {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.04), rgba(0, 104, 55, 0.06)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 24px,
      rgba(15, 23, 42, 0.03) 24px,
      rgba(15, 23, 42, 0.03) 25px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(15, 23, 42, 0.03) 24px,
      rgba(15, 23, 42, 0.03) 25px
    );
}

/* Enquiry form */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-field .req {
  color: var(--brand-green);
}

.form-field > input,
.form-field > select,
.form-field > textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fafbfc;
  color: var(--navy);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field > input::placeholder,
.form-field > textarea::placeholder {
  color: #9ca3af;
}

.form-field > input:hover,
.form-field > select:hover,
.form-field > textarea:hover {
  border-color: rgba(0, 104, 55, 0.28);
}

.form-field > input:focus,
.form-field > select:focus,
.form-field > textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(0, 104, 55, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23374151' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-alert {
  padding: 1rem 1.15rem;
  border-radius: 0.9rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-alert-success {
  background: rgba(0, 104, 55, 0.08);
  border: 1px solid rgba(0, 104, 55, 0.2);
  color: var(--brand-green-deep);
}

.form-alert-error {
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.2);
  color: #991b1b;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* intl-tel-input */
.form-field-phone .iti {
  width: 100%;
  display: block;
}

.form-field-phone .iti--separate-dial-code {
  width: 100%;
}

.form-field-phone .iti__country-container {
  z-index: 5;
}

.form-field-phone .iti__flag-container,
.form-field-phone .iti__selected-country {
  z-index: 6;
}

.form-field-phone input#phone,
.form-field-phone .iti__tel-input {
  width: 100% !important;
  height: 3.05rem;
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
  padding-right: 1rem !important;
  border-radius: 0.85rem !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  background: #fafbfc !important;
  color: var(--navy) !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  box-shadow: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-field-phone input#phone:hover,
.form-field-phone .iti__tel-input:hover {
  border-color: rgba(0, 104, 55, 0.28) !important;
}

.form-field-phone input#phone:focus,
.form-field-phone .iti__tel-input:focus {
  outline: none !important;
  background: #fff !important;
  border-color: var(--brand-green) !important;
  box-shadow: 0 0 0 3px rgba(0, 104, 55, 0.12) !important;
}

.form-field-phone input#phone.is-invalid,
.form-field-phone .iti__tel-input.is-invalid {
  border-color: #b91c1c !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12) !important;
}

.form-field-phone .iti__selected-country-primary,
.form-field-phone .iti__selected-dial-code {
  color: var(--navy);
  font-weight: 600;
}

.form-field-phone .iti__dropdown-content {
  border-radius: 0.85rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-lift);
  z-index: 50;
}

.field-error {
  margin-top: 0.45rem;
  font-size: 0.82rem;
  color: #991b1b;
}

/* Service detail pages */
.service-icon-badge {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  background: linear-gradient(145deg, rgba(0, 104, 55, 0.12), rgba(200, 161, 74, 0.1));
  border: 1px solid rgba(0, 104, 55, 0.12);
}

.service-side-panel {
  padding: 1.75rem;
  border-radius: 1.35rem;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(200, 161, 74, 0.2), transparent 50%),
    linear-gradient(160deg, #0f172a 0%, #0a3d24 100%);
  border: 1px solid rgba(200, 161, 74, 0.22);
  box-shadow: var(--shadow-lift);
}

.service-strip {
  background: linear-gradient(120deg, var(--brand-green-deep) 0%, var(--brand-green) 55%, #0a4d2e 100%);
  padding: 2.5rem 0;
}

.service-capability {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.4rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-capability:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 104, 55, 0.18);
  box-shadow: var(--shadow-lift);
}

.service-capability-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1;
  min-width: 1.75rem;
}

.service-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.service-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand-green), var(--gold));
}

.service-step-index {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(0, 104, 55, 0.15);
  line-height: 1;
  margin-bottom: 0.85rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-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;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-orb-1,
  .hero-orb-2 {
    animation: none;
  }
}

/* Back to top */
#back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-deep));
  box-shadow: 0 10px 28px rgba(0, 104, 55, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  filter: brightness(1.08);
}

/* Footer */
.site-footer {
  background: var(--navy);
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-icon:hover {
  color: var(--gold);
  border-color: rgba(200, 161, 74, 0.45);
  background: rgba(200, 161, 74, 0.08);
}

/* Illustration panel */
.about-visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(200, 161, 74, 0.2), transparent 40%),
    linear-gradient(160deg, #0f172a 0%, #0a3d24 100%);
  min-height: 420px;
}

/* Loading fade */
.page-enter {
  animation: pageEnter 0.6s ease both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Mobile menu */
.mobile-menu {
  background: #fff;
  backdrop-filter: blur(16px);
}

/* Focus visible */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

[x-cloak] {
  display: none !important;
}

/* Utility */
.container-luxury {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-luxury {
    padding-inline: 2rem;
  }
}

@media (min-width: 1280px) {
  .container-luxury {
    max-width: 78rem;
  }
}
