/* ==========================================================================
   Sunglow Enterprises — Corporate Website Styles
   Brand: Cyan-blue + Golden yellow accents on clean white / charcoal
   ========================================================================== */

:root {
  --brand-blue: #00aeef;
  --brand-blue-dark: #0090c5;
  --brand-blue-deep: #0077a8;
  --brand-gold: #f5c518;
  --brand-gold-soft: #fdd835;
  --navy: #0b1c2c;
  --navy-soft: #132536;
  --charcoal: #1a2332;
  --ink: #15202b;
  --muted: #5a6b7d;
  --line: #e4e9ef;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-warm: #fafbfc;
  --success: #1a7f4b;
  --error: #c0392b;
  --info: #1a5f8a;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --container: 1180px;
  --header-h: 80px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(11, 28, 44, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 28, 44, 0.1);
  --shadow-lg: 0 24px 48px rgba(11, 28, 44, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --focus: 0 0 0 3px rgba(0, 174, 239, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-blue-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-blue);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  background: var(--navy);
  color: #e8eef4;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin: 0 0 0.75rem;
}

.section--dark .section__eyebrow {
  color: var(--brand-gold-soft);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--ink);
}

.section--dark .section__title {
  color: #fff;
}

.section__lead {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

.section--dark .section__lead {
  color: rgba(232, 238, 244, 0.78);
}

.section__header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.28);
}

.btn--primary:hover {
  background: var(--brand-blue-dark);
  color: #fff;
}

.btn--gold {
  background: var(--brand-gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
}

.btn--gold:hover {
  background: var(--brand-gold-soft);
  color: var(--navy);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--outline:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue-deep);
}

.btn--dark {
  background: var(--navy);
  color: #fff;
}

.btn--dark:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ========== Header + Navigation ========== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s var(--ease);
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.nav-is-open {
  background: #fff;
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.site-header.is-scrolled::before,
.site-header.nav-is-open::before {
  background: transparent;
}

.header-inner {
  position: relative;
  z-index: 1;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  max-width: min(58vw, 220px);
  text-decoration: none;
  position: relative;
  z-index: 102;
}

.logo-link img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

/* Desktop nav sits in the header row via absolute centering */
.primary-nav {
  display: none;
}

.primary-nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.site-header.is-scrolled ~ .primary-nav a,
.site-header.nav-is-open ~ .primary-nav a {
  color: var(--ink);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--brand-blue);
  background: rgba(0, 174, 239, 0.08);
}

.header-cta {
  flex-shrink: 0;
  position: relative;
  z-index: 102;
}

.header-cta .btn {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.25s;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-is-open .nav-toggle {
  background: rgba(0, 174, 239, 0.12);
}

.site-header.is-scrolled .nav-toggle__bar,
.site-header.nav-is-open .nav-toggle__bar {
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 44, 0.5);
  z-index: 98;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-backdrop:not([hidden]) {
  display: block;
}

/* Desktop navigation */
@media (min-width: 1025px) {
  .primary-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    height: var(--header-h);
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    max-width: calc(100vw - 420px);
    overflow-x: auto;
    background: transparent;
  }

  .primary-nav .mobile-cta,
  .primary-nav .mobile-onak {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }
}

/* Mobile navigation drawer */
@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none !important;
  }

  .site-header.is-scrolled,
  .site-header.nav-is-open {
    background: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .primary-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    position: fixed !important;
    top: var(--header-h) !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    width: min(360px, 88vw) !important;
    height: calc(100vh - var(--header-h)) !important;
    height: calc(100dvh - var(--header-h)) !important;
    max-height: calc(100dvh - var(--header-h)) !important;
    margin: 0 !important;
    padding: 1rem 1.1rem 1.75rem !important;
    gap: 0.2rem !important;
    background: #fff !important;
    box-shadow: -16px 0 40px rgba(11, 28, 44, 0.18) !important;
    transform: translateX(105%) !important;
    transition: transform 0.3s var(--ease) !important;
    z-index: 99 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .primary-nav.is-open {
    transform: translateX(0) !important;
  }

  .primary-nav a {
    color: var(--ink) !important;
    padding: 0.85rem 1rem !important;
    font-size: 1rem !important;
    white-space: normal !important;
    line-height: 1.35 !important;
    border-radius: 10px !important;
    width: 100%;
    box-sizing: border-box;
  }

  .primary-nav a.is-active {
    background: rgba(0, 174, 239, 0.12) !important;
    color: var(--brand-blue) !important;
  }

  .primary-nav .mobile-cta {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 0.85rem !important;
    white-space: nowrap !important;
  }

  .primary-nav .mobile-onak {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.65rem;
    padding: 0.75rem !important;
    background: #f5f7fa !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    color: var(--ink) !important;
  }

  .primary-nav .mobile-onak img {
    height: 36px;
    width: auto;
    background: #fff;
    padding: 0.3rem 0.45rem;
    border-radius: 8px;
  }

  .primary-nav .mobile-onak span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 28, 44, 0.55) 0%, rgba(11, 28, 44, 0.35) 35%, rgba(11, 28, 44, 0.78) 100%),
    linear-gradient(90deg, rgba(11, 28, 44, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 5.5rem;
  max-width: 42rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: #fff;
}

.hero__brand span {
  color: var(--brand-gold-soft);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 22ch;
}

.hero__text {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  max-width: 36rem;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-display);
}

.hero__scroll:hover {
  color: #fff;
}

.hero__scroll-icon {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--brand-gold-soft);
  border-radius: 2px;
  animation: scroll-dot 1.6s var(--ease) infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.25rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 174, 239, 0.35);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.value-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.value-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
}

/* ========== Vision / Mission ========== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vm-card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-blue);
}

.vm-card--mission::before {
  background: var(--brand-gold);
}

.vm-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--brand-blue);
}

.vm-card--mission .vm-card__icon {
  color: #c9a00e;
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.vm-card blockquote {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  quotes: none;
}

/* ========== Products ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.product-card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

/* ========== Brands carousel ========== */
.brands-section {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}

.brands-list-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brands-marquee {
  position: relative;
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee__fade {
  display: none;
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.35rem 1rem 0.75rem;
  animation: brands-scroll 42s linear infinite;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brand-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 110px;
  padding: 1.1rem 1.35rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.brand-slide:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 174, 239, 0.35);
}

.brand-slide img {
  display: block;
  width: 100%;
  height: 64px;
  max-width: 160px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
    flex-wrap: wrap;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    justify-content: center;
  }
}

/* ========== Why Choose ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.why-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ========== Onak Section ========== */
.onak-section {
  position: relative;
  overflow: hidden;
}

.onak-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.18), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.onak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.onak-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.onak-logo-wrap img {
  height: 72px;
  width: auto;
}

.onak-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 1.75rem 0;
  font-family: var(--font-display);
}

.onak-flow__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.onak-flow__label {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.onak-flow__sub {
  font-size: 0.875rem;
  color: rgba(232, 238, 244, 0.65);
}

.onak-flow__arrow {
  color: var(--brand-gold-soft);
  font-size: 1.25rem;
  line-height: 1;
  margin: 0.15rem 0 0.15rem 0.25rem;
}

.onak-note {
  margin: 1.25rem 0 0;
  color: rgba(232, 238, 244, 0.7);
  font-size: 0.975rem;
}

.onak-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}

.onak-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Leadership ========== */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  gap: 1.5rem;
  justify-content: center;
}

.director-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.director-card__photo {
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
  overflow: hidden;
}

.director-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-card__body {
  padding: 1.35rem 1.4rem 1.6rem;
  text-align: center;
}

.director-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.25rem;
}

.director-card__title {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.director-card__bio {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ========== Values ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.value-pill {
  padding: 1.35rem 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}

.value-pill:hover {
  background: rgba(0, 174, 239, 0.08);
  border-color: rgba(0, 174, 239, 0.35);
}

.value-pill h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--brand-gold-soft);
}

.value-pill p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(232, 238, 244, 0.72);
}

/* ========== Journey ========== */
.journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 0;
}

.journey-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-gold));
}

.journey-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.25rem;
  padding: 1.15rem 0;
  position: relative;
}

.journey-item__marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
  z-index: 1;
}

.journey-item:last-child .journey-item__marker {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.2);
}

.journey-item__year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
}

.journey-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.journey-item__text {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* ========== CTA Banner ========== */
.cta-banner {
  position: relative;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  color: #fff;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 28, 44, 0.88), rgba(11, 28, 44, 0.72));
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner .btn-group {
  justify-content: center;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.contact-details {
  display: grid;
  gap: 1.15rem;
}

.contact-item {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-item dt {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.contact-item dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.contact-item a {
  color: var(--ink);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--brand-blue);
}

.phone-sep {
  color: var(--muted);
  user-select: none;
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-map {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.contact-map__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.contact-map__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--surface-soft);
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: var(--surface-warm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: var(--focus);
  background: #fff;
}

.form-row input[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 0.3rem;
  font-size: 0.8125rem;
  color: var(--error);
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
}

.form-status--success {
  background: rgba(26, 127, 75, 0.1);
  color: var(--success);
}

.form-status--error {
  background: rgba(192, 57, 43, 0.1);
  color: var(--error);
}

.form-status--info {
  background: rgba(26, 95, 138, 0.1);
  color: var(--info);
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--navy);
  color: rgba(232, 238, 244, 0.75);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
}

.footer-brand p {
  margin: 0 0 1.25rem;
  max-width: 18rem;
  font-size: 0.95rem;
  color: rgba(232, 238, 244, 0.7);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: var(--brand-blue);
  color: #fff;
}

.social-links a.is-placeholder {
  opacity: 0.45;
  cursor: default;
}

.social-links a.is-placeholder:hover {
  background: rgba(255, 255, 255, 0.06);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.55rem;
}

.footer-col a {
  color: rgba(232, 238, 244, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-col a:hover {
  color: var(--brand-blue);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1.35rem 0;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--brand-gold-soft);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-onak-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.35rem 0 0.75rem;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer-onak-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.25);
  text-decoration: none;
}

.footer-onak-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-onak-text {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  color: rgba(232, 238, 244, 0.7);
  line-height: 1.45;
}

.footer-onak-cta {
  color: var(--brand-gold-soft) !important;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-onak-cta:hover {
  color: #fff !important;
}

.footer-bottom-onak {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  color: rgba(232, 238, 244, 0.75) !important;
}

.footer-bottom-onak span {
  font-size: 0.875rem;
}

.footer-bottom-onak img {
  height: 32px;
  width: auto;
  background: #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: transform 0.25s var(--ease);
}

.footer-bottom-onak:hover img {
  transform: scale(1.04);
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .vm-grid,
  .onak-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .directors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-inline: auto;
  }

  .contact-map__frame {
    aspect-ratio: 16 / 10;
  }

  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .logo-link img {
    height: 40px;
    max-width: 100%;
  }

  .directors-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .contact-map__frame {
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }

  .value-grid,
  .products-grid,
  .why-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 92svh;
  }

  .hero__content {
    padding-bottom: 4.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
