:root {
  --background: hsl(40, 20%, 99%);
  --foreground: hsl(225, 35%, 12%);
  --primary: hsl(43, 80%, 50%);
  --primary-dark: hsl(43, 90%, 38%);
  --primary-foreground: hsl(225, 50%, 10%);
  --secondary: hsl(220, 20%, 96%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(225, 50%, 10%);
  --accent-light: hsl(225, 40%, 16%);
  --accent-mid: hsl(225, 45%, 13%);
  --border: hsl(220, 15%, 90%);
  --radius: 0.5rem;
  --container-max: 1400px;
  --nav-height: 5.5rem;
  --font-heading: "Neue Haas Unica W1G", system-ui, sans-serif;
  --font-body: "Neue Haas Unica W1G", system-ui, sans-serif;
  --bs-body-font-family: var(--font-body);
  --bs-font-sans-serif: var(--font-body);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0;
}

button,
input,
select,
textarea,
.btn,
.form-control,
.form-select,
.navbar {
  font-family: inherit;
}

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

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

.container-dig {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-py {
  padding: 6rem 0;
}


.label-dot {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.label-dot.gold {
  color: var(--primary);
}

.label-dot.dark {
  color: var(--accent);
}

.label-dot.light {
  color: rgba(255, 255, 255, 0.6);
  line-height: 16px;
}

/* Buttons */
.btn-split {
  display: inline-flex;
  align-items: stretch;
}

.btn-split .btn-main,
.btn-split button.btn-main {
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius) 0 0 var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-split .btn-main:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(230, 172, 25, 0.3);
  color: var(--primary-foreground);
}

.btn-split .btn-icon {
  width: 52px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s;
}

.btn-split .btn-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-split.dark .btn-icon {
  border-color: var(--border);
  background: var(--secondary);
  color: var(--foreground);
}

.btn-split.dark .btn-main.dark-bg {
  background: var(--accent);
  color: #fff;
}

.btn-split.outline .btn-main {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 999px 0 0 999px;
  padding: 0 1.5rem;
  height: 46px;
  font-weight: 500;
  transform: none;
  box-shadow: none;
}

.btn-split.outline .btn-main:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: none;
  box-shadow: none;
}

.btn-split.outline .btn-icon {
  width: 46px;
  min-height: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: none;
  border-radius: 0 999px 999px 0;
  color: #fff;
}

.btn-split.outline .btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-split.outline .btn-icon i {
  font-size: 1rem;
  line-height: 1;
}

/* Navbar — cuộn theo trang, không fixed */
.navbar-dig {
  position: relative;
  z-index: 1000;
  background: var(--accent);
}

.navbar-dig.navbar-light {
  background: #fff;
  border-bottom: 1px solid hsl(0, 0%, 90%);
}

.navbar-dig.navbar-light .nav-link {
  color: rgba(13, 19, 38, 0.5);
}

.navbar-dig.navbar-light .nav-link:hover,
.navbar-dig.navbar-light .nav-link.active {
  color: var(--foreground);
}

.navbar-dig.navbar-light .menu-toggle {
  color: var(--foreground);
}

.navbar-dig.navbar-light.navbar-transparent {
  background: transparent;
  border-bottom: none;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 999;
  padding: 1.25rem 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 48px;
  width: auto;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  background: var(--accent);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dig.nav-open .nav-links {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 0.5rem;
}

.navbar-dig.navbar-light .nav-links {
  background: #fff;
  border-top-color: hsl(0, 0%, 90%);
}

@media (max-width: 1023.98px) {
  .nav-inner {
    flex-wrap: nowrap;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  }

  .nav-brand,
  .menu-toggle {
    position: relative;
    z-index: 1002;
  }

  .nav-links .nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1.5rem;
    font-size: 0.875rem;
  }

  .nav-item-join {
    padding: 0.75rem 1.5rem 1.5rem;
  }

  .nav-item-join .btn-join {
    display: flex;
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.25rem;
  }
}

.navbar-dig .nav-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.navbar-dig .nav-link:hover,
.navbar-dig .nav-link.active {
  color: #fff;
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(230, 172, 25, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 13px;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.btn-join:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(230, 172, 25, 0.3);
  color: var(--primary-foreground);
}

.menu-toggle {
  display: flex;
  order: 2;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: #fff;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.5px;
  margin-left: -10px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}

.menu-toggle span:nth-child(1) {
  top: 12px;
}

.menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
  bottom: 12px;
}

.navbar-dig.nav-open .menu-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-dig.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar-dig.nav-open .menu-toggle span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

body:has(.navbar-dig.nav-open) {
  overflow: hidden;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(13, 19, 38, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.navbar-dig.nav-open .nav-backdrop {
  display: block;
}

@media (min-width: 1024px) {
  .nav-inner {
    flex-wrap: nowrap;
  }

  .nav-links {
    position: static;
    display: flex;
    order: 0;
    width: auto;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    background: none;
    border-top: none;
    padding-bottom: 0;
    box-shadow: none;
    z-index: auto;
  }

  .nav-item-join {
    margin-left: auto;
    padding: 0;
  }

  .nav-item-join .btn-join {
    width: auto;
  }

  .menu-toggle,
  .nav-backdrop {
    display: none !important;
  }
}

/* Breadcrumb — Bootstrap structure, custom DIG style */
.dig-breadcrumb {
  margin-bottom: 2rem;
}

.dig-breadcrumb .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  --bs-breadcrumb-divider-color: currentColor;
}

.dig-breadcrumb-light .breadcrumb {
  color: rgba(13, 19, 38, 0.4);
  --bs-breadcrumb-item-active-color: rgba(13, 19, 38, 0.7);
}

.dig-breadcrumb-light .breadcrumb-item a {
  color: rgba(13, 19, 38, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.dig-breadcrumb-light .breadcrumb-item a:hover {
  color: var(--primary);
}

.dig-breadcrumb-dark .breadcrumb {
  color: rgba(255, 255, 255, 0.4);
  --bs-breadcrumb-item-active-color: rgba(255, 255, 255, 0.7);
}

.dig-breadcrumb-dark .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.dig-breadcrumb-dark .breadcrumb-item a:hover {
  color: var(--primary);
}

.dig-breadcrumb-article {
  margin-bottom: 0;
}

.dig-breadcrumb-article .breadcrumb-item.active {
  max-width: 12.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--accent);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: 25%;
  right: 0;
  width: 60%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(210 60% 50% / 0.2), hsl(210 50% 40% / 0.05), transparent);
  filter: blur(64px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 10rem;
  color: #fff;
}

.hero-title {
  font-size: clamp(1.875rem, 5vw, 4.25rem);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 1.75rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 28rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-wave {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  display: block;
}

/* Division Wheel */
.wheel-wrap {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
}

.wheel-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(43 80% 50% / 0.18) 0%, hsl(225 50% 10% / 0.04) 35%, transparent 72%);
  filter: blur(48px);
}

.wheel-wrap svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.wheel-rotate-group {
  transform-origin: 210px 210px;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.wheel-label-group {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.wheel-segment {
  cursor: pointer;
  transition: fill 0.3s, stroke 0.3s, stroke-width 0.3s;
}

.wheel-label {
  pointer-events: none;
  font-family: inherit;
  transition: fill 0.3s;
}

/* About intro */
.about-intro p.lead-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.6;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.about-intro .highlight {
  color: var(--muted-foreground);
}

/* Values banner */
.values-banner {
  position: relative;
  height: 450px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .values-banner {
    height: 420px;
  }

  .nav-dot {
    display: none;
  }

  .navbar-dig .nav-link {
    font-size: 14px;
  }
}


.values-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(225 50% 10% / 0.95), hsl(225 50% 10% / 0.8) 50%, hsl(225 50% 10% / 0.3));
}

@media (min-width: 768px) {
  .values-banner .overlay {
    background: linear-gradient(to right, hsl(225 50% 10% / 0.9), hsl(225 50% 10% / 0.7) 50%, transparent);
  }
}

.values-banner .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 2rem 0;
}

.values-banner h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  white-space: nowrap;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Foundation */
.foundation-item .item-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.foundation-item .arrow-icon {
  width: 28px;
  height: 28px;
  color: rgba(13, 19, 38, 0.4);
  flex-shrink: 0;
}

.foundation-item h3 {
  font-size: 1.25rem;
}

.foundation-item .sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.foundation-item .gold-line {
  border-top: 1px solid hsl(43 80% 50% / 0.25);
  margin: 1.25rem 0;
}

.foundation-item .desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.foundation-item .item-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.foundation-item .item-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s;
}

.foundation-item:hover .item-img img {
  transform: scale(1.05);
}

.section-heading {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  line-height: 1.15;
  font-weight: 400;
}

/* Portfolio */
.portfolio-section {
  background: var(--secondary);
}

.portfolio-section.section-py {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .portfolio-section.section-py {
    padding: 8rem 0;
  }
}

.portfolio-intro .section-heading {
  font-size: 1.875rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .portfolio-intro .section-heading {
    font-size: 2.75rem;
  }
}

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

.portfolio-intro-top {
  margin-bottom: 0;
}

.portfolio-card {
  margin-top: 3rem;
  background: var(--background);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 20rem;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: 400;
  color: var(--foreground);
  width: 180px;
  margin-bottom: 1.25rem;
}

.portfolio-cta .btn-main {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem 0 0 0.5rem;
}

.portfolio-cta .btn-main:hover {
  opacity: 0.9;
  transform: none;
  box-shadow: none;
  color: #fff;
}

.portfolio-cta .btn-icon {
  width: 46px;
  min-height: 46px;
  border-color: var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 0 0.5rem 0.5rem 0;
}

.portfolio-cta .btn-icon:hover {
  background: var(--secondary);
  color: var(--foreground);
}

.portfolio-nav-col {
  display: none;
}

.portfolio-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-nav-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--border);
}

.portfolio-num {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--muted-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 2.5rem;
  padding: 0;
}

.portfolio-num:first-child {
  margin-top: 0;
}

.portfolio-num.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.portfolio-num:hover {
  border-color: hsl(43 80% 50% / 0.5);
}

.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio-item .portfolio-active,
.portfolio-item .portfolio-inactive {
  display: none;
}

.portfolio-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1023.98px) {
  .portfolio-item:not(:has(.portfolio-radio:checked)) {
    display: none;
  }

  .portfolio-item:has(.portfolio-radio:checked) .portfolio-active {
    display: block;
  }
}

@media (min-width: 1024px) {
  .portfolio-list {
    gap: 1.5rem;
  }

  .portfolio-item:has(.portfolio-radio:checked) .portfolio-active {
    display: block;
  }

  .portfolio-item:has(.portfolio-radio:checked) .portfolio-inactive {
    display: none;
  }

  .portfolio-item:not(:has(.portfolio-radio:checked)) .portfolio-inactive {
    display: flex;
  }
}

body:has(#pf-0:checked) .portfolio-num[for="pf-0"],
body:has(#pf-0:checked) .portfolio-tabs-mobile label[for="pf-0"],
body:has(#pf-1:checked) .portfolio-num[for="pf-1"],
body:has(#pf-1:checked) .portfolio-tabs-mobile label[for="pf-1"],
body:has(#pf-2:checked) .portfolio-num[for="pf-2"],
body:has(#pf-2:checked) .portfolio-tabs-mobile label[for="pf-2"],
body:has(#pf-3:checked) .portfolio-num[for="pf-3"],
body:has(#pf-3:checked) .portfolio-tabs-mobile label[for="pf-3"],
body:has(#pf-4:checked) .portfolio-num[for="pf-4"],
body:has(#pf-4:checked) .portfolio-tabs-mobile label[for="pf-4"],
body:has(#pf-5:checked) .portfolio-num[for="pf-5"],
body:has(#pf-5:checked) .portfolio-tabs-mobile label[for="pf-5"],
body:has(#pf-6:checked) .portfolio-num[for="pf-6"],
body:has(#pf-6:checked) .portfolio-tabs-mobile label[for="pf-6"] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.portfolio-tabs-mobile label.nav-link {
  cursor: pointer;
  margin: 0;
}

.portfolio-inactive {
  cursor: pointer;
}

.portfolio-active {
  background: var(--primary);
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.portfolio-active .img-wrap {
  position: relative;
}

.portfolio-active img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.portfolio-active .diamond {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: var(--accent);
  display: none;
}

@media (min-width: 1024px) {
  .portfolio-active .diamond {
    display: block;
  }
}

.portfolio-active .body {
  padding: 1.5rem;
  color: var(--primary-foreground);
}

.portfolio-active h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.portfolio-active .line {
  width: 48px;
  height: 2px;
  background: rgba(13, 19, 38, 0.3);
  margin-bottom: 0.75rem;
}

.portfolio-active p {
  font-size: 0.875rem;
  color: rgba(13, 19, 38, 0.7);
  margin: 0;
  line-height: 1.625;
}

.portfolio-inactive {
  align-items: center;
  width: 100%;
  padding: 0.75rem 0 0.75rem 1rem;
  border: none;
  border-left: 2px solid transparent;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.portfolio-inactive:hover {
  border-left-color: hsl(43 80% 50% / 0.5);
}

.portfolio-inactive h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--foreground);
  margin: 0;
  transition: color 0.2s;
}

.portfolio-inactive:hover h4 {
  color: var(--primary);
}

.portfolio-tabs-mobile {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-bottom: none;
}

@media (min-width: 1024px) {
  .portfolio-tabs-mobile {
    display: none !important;
  }
}

/* Shared Bootstrap nav-tabs (pill style) */
.dig-nav-tabs-wrap {
  overflow-x: auto;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.dig-nav-tabs-wrap.scrollbar-hide {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .dig-nav-tabs-wrap.scrollbar-hide {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.dig-nav-tabs {
  flex-wrap: nowrap;
  gap: 0.5rem;
  border-bottom: none !important;
}

.dig-nav-tabs .nav-item {
  flex-shrink: 0;
}

.dig-nav-tabs .nav-link {
  padding: 0.625rem 1.25rem;
  border: none !important;
  border-radius: var(--radius) !important;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted-foreground);
  white-space: nowrap;
  transition: color 0.3s, background 0.3s;
}

.dig-nav-tabs .nav-link:hover,
.dig-nav-tabs .nav-link:focus {
  color: var(--foreground);
  background: var(--secondary);
  isolation: isolate;
}

.dig-nav-tabs .nav-link.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.dig-nav-tabs.dig-nav-tabs-dark {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.dig-nav-tabs.dig-nav-tabs-dark .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.dig-nav-tabs.dig-nav-tabs-dark .nav-link:hover,
.dig-nav-tabs.dig-nav-tabs-dark .nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.dig-nav-tabs.dig-nav-tabs-dark .nav-link.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.divisions-main .dig-nav-tabs-wrap {
  margin-bottom: 4rem;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    align-items: stretch;
  }

  .portfolio-intro {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .portfolio-card {
    margin-top: 0;
  }

  .portfolio-nav-col {
    display: flex;
    grid-column: span 2;
    justify-content: center;
    align-items: flex-start;
  }

  .portfolio-content-col {
    grid-column: span 6;
  }

  .portfolio-inactive h4 {
    font-size: 1.5rem;
  }
}

/* Timeline + Stats */
.timeline-stats-section {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.timeline-stats-section .grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.deco-square {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  display: none;
}

@media (min-width: 768px) {
  .deco-square {
    display: block;
  }
}

.timeline-year-big {
  font-size: clamp(3rem, 12vw, 8.75rem);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.timeline-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s;
}

.timeline-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
}

.timeline-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.timeline-start-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-right: 2rem;
}

.timeline-years-row {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-width: 0;
}

.timeline-years-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 6px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.timeline-year-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s;
}

.timeline-year-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.timeline-year-btn.active {
  color: #fff;
}

.timeline-year-btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(43 80% 50% / 0.6);
  transition: transform 0.2s;
}

.timeline-year-btn.active .dot {
  background: var(--primary);
  transform: scale(1.25);
}

.timeline-year-btn.is-hidden {
  display: none;
}

.timeline-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  max-width: 24rem;
  line-height: 1.7;
}

.stats-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  margin-top: 3rem;
}

.stat-num {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Brands accordion */
.brands-section {
  background: var(--accent);
  color: #fff;
}

.brands-section .brands-header {
  margin-bottom: 4rem;
}

.brands-section .section-heading {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .brands-section .section-heading {
    font-size: 3rem;
  }
}

.brands-accordion {
  display: flex;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 480px;
}

.brand-panel {
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: flex 0.5s ease-in-out, background-color 0.5s ease;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: hsl(225, 50%, 10%);
}

.brand-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.brand-panel:has(.brand-radio:checked) {
  flex: 4;
  background: var(--brand-bg, hsl(225, 50%, 10%)) !important;
}

.brand-panel:last-child {
  border-right: none;
}

.brand-panel .collapsed-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.brand-panel:has(.brand-radio:checked) .collapsed-label {
  opacity: 0;
  pointer-events: none;
}

.brand-panel .collapsed-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.brand-panel .collapsed-label span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  white-space: nowrap;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
}

.brand-panel .expanded-content {
  position: absolute;
  inset: 0;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.brand-panel:has(.brand-radio:checked) .expanded-content {
  opacity: 1;
  pointer-events: auto;
}

.brand-panel-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.brand-panel .expanded-logo {
  width: 7rem;
  height: 7rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .brand-panel .expanded-logo {
    width: 9rem;
    height: 9rem;
  }
}

.brand-panel .expanded-content .logo {
  max-width: 6rem;
  max-height: 6rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand-panel .expanded-content .logo {
    max-width: 7rem;
    max-height: 7rem;
  }
}

/* .logo-invert {
  filter: brightness(0) invert(1);
} */

/* .brand-panel .expanded-content .logo.logo-invert {
  filter: brightness(0) invert(1);
} */

.brand-panel .expanded-text {
  text-align: left;
  max-width: 28rem;
}

.brand-panel .expanded-content h3 {
  font-size: 1.875rem;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .brand-panel .expanded-content h3 {
    font-size: 2.25rem;
  }
}

.brand-panel .cuisine {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.brand-panel .tagline {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.brand-panel .desc {
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
}

/* Mobile brands — native <details> (no JS) */
.brand-mobile-item {
  margin-bottom: 0.75rem;
}

.brand-mobile-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  min-height: 56px;
  background: var(--accent-mid);
  transition: background-color 0.3s, color 0.3s;
  list-style: none;
}

.brand-mobile-head::-webkit-details-marker {
  display: none;
}

.brand-mobile-head span {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--head-label, inherit);
}

.brand-mobile-head i {
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s, color 0.3s;
}

details.brand-mobile-item[open]>.brand-mobile-head {
  border-radius: 0.75rem 0.75rem 0 0;
  background: var(--head-bg, var(--accent-mid));
  color: var(--head-text, #fff);
}

details.brand-mobile-item[open]>.brand-mobile-head i {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.7);
}

.brand-mobile-body {
  overflow: hidden;
}

.brand-mobile-inner {
  padding: 1.25rem;
  border-radius: 0 0 0.75rem 0.75rem;
  text-align: center;
}

.brand-mobile-inner img {
  max-height: 80px;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}

.brand-mobile-head [data-ref="name"] {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}

.brand-mobile-inner [data-ref="cuisine"] {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}

.brand-mobile-inner [data-ref="tagline"] {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0.5rem 0;
}

.brand-mobile-inner [data-ref="description"] {
  font-size: 0.875rem;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
}

/* Team */
.team-section {
  background: linear-gradient(180deg, hsl(220 20% 96%) 0%, hsl(40 20% 99%) 40%, hsl(40 20% 99%) 100%);
}

.team-card {
  text-align: center;
}

@media (min-width: 576px) {
  .team-card {
    text-align: left;
  }
}

.team-card .team-name {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--foreground);
}

.team-card .team-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0.125rem 0 0;
}

.team-card .avatar-box {
  background: var(--secondary);
  border-radius: var(--radius);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .team-card .avatar-box {
    height: 400px;
  }
}

.team-card .initials {
  font-size: clamp(3rem, 6vw, 3.75rem);
  font-weight: 700;
  color: hsl(220 10% 45% / 0.3);
}

.team-card .hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.team-card:hover .hover-line {
  transform: scaleX(1);
}

/* News */
.news-section {
  background: linear-gradient(180deg, hsl(40 20% 99%) 0%, hsl(220 30% 95%) 60%, hsl(220 40% 88% / 0.5) 100%);
}

.news-header {
  margin-bottom: 3.5rem;
}

.news-heading {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .news-heading {
    font-size: 2.75rem;
  }
}

.news-card {
  display: block;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -12px rgba(13, 19, 38, 0.15);
}

.news-card .top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.news-card:hover .top-line {
  transform: scaleX(1);
}

.news-card-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.news-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(13, 19, 38, 0.3);
  flex-shrink: 0;
}

.news-title {
  font-size: 1.125rem;
  line-height: 1.375;
  font-weight: 400;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.news-card:hover .news-title {
  color: var(--primary);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.news-meta-date {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--foreground);
  font-weight: 600;
  white-space: nowrap;
  transition: gap 0.3s;
}

.news-card:hover .news-read {
  gap: 0.5rem;
}

.news-read i {
  font-size: 0.75rem;
}

/* Contact */
.contact-section {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section .grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.contact-section .form-control,
.contact-section .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  padding: 1rem;
  font-size: 0.875rem;
}

.contact-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: hsl(43 80% 50% / 0.6);
  box-shadow: 0 0 0 3px hsl(43 80% 50% / 0.1);
  color: #fff;
}

.contact-section .form-select {
  color: rgba(255, 255, 255, 0.6);
}

.contact-section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer */
.footer-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.footer-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-cta .overlay {
  position: absolute;
  inset: 0;
  background: hsl(225 50% 10% / 0.6);
}

.footer-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .footer-cta-inner {
    padding: 8rem 0;
  }
}

.footer-cta-title {
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-weight: 400;
  color: #fff;
}

.footer-cta-muted {
  color: rgba(255, 255, 255, 0.5);
}

.footer-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-cta-btn,
.footer-cta-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

.footer-cta-btn {
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 999px 0 0 999px;
}

.footer-cta-btn:hover,
.footer-cta-btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-cta-btn-icon {
  width: 46px;
  flex-shrink: 0;
  border-left: none;
  border-radius: 0 999px 999px 0;
}

.footer-cta-btn-icon i {
  font-size: 1rem;
  line-height: 1;
}

.footer-main {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.6);
}

.footer-main-inner {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-main-inner {
    padding: 5rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 4;
  }

  .footer-col-nav {
    grid-column: 6 / span 2;
  }

  .footer-col:not(.footer-col-nav) {
    grid-column: span 2;
  }
}

.footer-brand-text {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
  .footer-brand-text {
    font-size: 1.125rem;
  }
}

.footer-brand-muted {
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  transition: color 0.3s, border-color 0.3s;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links-bright a {
  color: #fff;
  font-weight: 500;
}

.footer-links-bright a:hover {
  color: var(--primary);
}

.footer-watermark {
  overflow: hidden;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -0.02em;
  padding: 0 1.5rem;
}

@media (min-width: 576px) {
  .footer-watermark {
    font-size: 5rem;
  }
}

@media (min-width: 768px) {
  .footer-watermark {
    font-size: 8.75rem;
  }
}

@media (min-width: 992px) {
  .footer-watermark {
    font-size: 12.5rem;
  }
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-policies a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.card-lift {
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 991.98px) {
  .brands-accordion {
    display: none;
  }

  .brand-mobile {
    display: block;
  }
}

@media (min-width: 992px) {
  .brand-mobile {
    display: none;
  }
}

/* Scrollbar — match dig.digidot.cz (global, loaded last) */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f0f2f4;
}

::-webkit-scrollbar-thumb {
  background: #c2c9d6;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8592ad;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* About page */
.about-page {
  background: #fff;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
  background: hsl(0, 0%, 96%);
}

@media (min-width: 768px) {
  .about-hero {
    padding: 5rem 0 8rem;
  }
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg-B0dvMMzh.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: 0.12;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
}

.about-hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 300;
  color: var(--foreground);
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .about-hero-title {
    font-size: 4.5rem;
  }
}

.about-hero-title span {
  color: var(--muted-foreground);
}

.about-hero-desc {
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
}

.about-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: 7rem 0;
  }
}

.about-section-white {
  background: #fff;
}

.about-section-muted {
  background: hsl(0, 0%, 97%);
}

.about-section-title {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--foreground);
  margin: 0;
}

@media (min-width: 768px) {
  .about-section-title {
    font-size: 2.25rem;
  }
}

.about-section-title-spaced {
  margin-bottom: 2rem;
}

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

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 5rem;
    align-items: start;
  }

  .about-grid-overview-head {
    grid-column: span 4;
  }

  .about-grid-overview-body {
    grid-column: span 8;
  }

  .about-grid-ceo-left {
    grid-column: span 5;
  }

  .about-grid-ceo-right {
    grid-column: span 7;
  }
}

.about-grid-ceo-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .about-values-grid {
    gap: 3rem;
  }
}

.about-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
}

.about-ceo-photo {
  position: relative;
  width: 100%;
  max-width: 20rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-ceo-photo img {
  width: 100%;
  height: auto;
  filter: grayscale(1);
}

.about-ceo-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.about-ceo-caption .name {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.about-ceo-caption .role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.25rem 0 0;
}

.about-ceo-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin: 0;
}

.about-ceo-sign {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.about-ceo-sign .regards {
  font-style: italic;
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
  font-size: 1.125rem;
}

.about-ceo-sign .signature {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0.5rem 0 0;
}

.about-journey {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-journey-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about-journey-inner {
    padding: 7rem 0;
  }
}

.about-journey-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(hsl(225 50% 10% / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, hsl(225 50% 10% / 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

.about-journey-timeline {
  position: relative;
  margin-top: 0.75rem;
}

.about-journey-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 0.5rem;
}

.about-journey-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(13, 19, 38, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.about-journey-btn:hover:not(:disabled) {
  background: var(--secondary);
}

.about-journey-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: hsl(220 15% 90% / 0.5);
}

.about-journey-year {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--foreground);
  margin-bottom: 1rem;
  user-select: none;
}

@media (min-width: 640px) {
  .about-journey-year {
    font-size: 4.5rem;
  }
}

@media (min-width: 768px) {
  .about-journey-year {
    font-size: 7.5rem;
  }
}

@media (min-width: 1024px) {
  .about-journey-year {
    font-size: 8.75rem;
  }
}

.about-journey-track {
  display: flex;
  align-items: center;
  overflow-x: auto;
  margin: 1rem -1rem 0;
  padding: 0 1rem 1rem;
}

@media (min-width: 768px) {
  .about-journey-track {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.about-journey-start-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-right: 2rem;
}

@media (min-width: 992px) {
  .about-journey-start-dot {
    margin-right: 4rem;
  }
}

.about-journey-years {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.about-journey-years::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 90%;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
}

.about-year-btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.about-year-btn span:first-child {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  color: rgba(13, 19, 38, 0.5);
  transition: color 0.3s;
}

.about-year-btn.active span:first-child,
.about-year-btn:hover span:first-child {
  color: var(--foreground);
}

.about-year-btn .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}

.about-year-btn.active .dot {
  transform: scale(1.25);
  opacity: 1;
}

.about-year-btn.is-hidden {
  display: none;
}

.about-journey-text {
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 1.5rem 0 0;
}

.about-value-card {
  position: relative;
  min-height: 280px;
  border-radius: 0.75rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-value-card {
    min-height: 320px;
  }
}

.about-value-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-value-card:not(.about-value-card-dark)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  transition: background 0.3s;
}

.about-value-card:not(.about-value-card-dark):hover::before {
  background: rgba(255, 255, 255, 0.85);
}

.about-value-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

@media (min-width: 768px) {
  .about-value-content {
    padding: 3rem;
  }
}

.about-value-content p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--foreground);
  margin: 0;
}

.about-value-content .sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

.about-value-heading {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.3;
  font-weight: 300;
}

.about-value-card-dark {
  background: var(--accent);
}

.about-value-dark-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

/* Brands page */
.brands-page {
  background: var(--accent);
}

.brands-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: var(--accent);
}

@media (min-width: 768px) {
  .brands-hero {
    padding: 5rem 0 7rem;
  }
}

.brands-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg-B0dvMMzh.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.brands-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 38, 0.8);
}

.brands-hero-inner {
  position: relative;
  z-index: 2;
}

.brands-hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  max-width: 56rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .brands-hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .brands-hero-title {
    font-size: 4.5rem;
  }
}

.brands-hero-title span {
  color: var(--primary);
}

.brands-hero-desc {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .brands-hero-desc {
    font-size: 1.125rem;
  }
}

.brands-stats {
  background: var(--accent);
}

.brands-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .brands-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brands-stat {
  padding: 2rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .brands-stat {
    padding: 2.5rem 1rem;
  }
}

.brands-stat+.brands-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-stat:nth-child(3) {
  border-left: none;
}

@media (min-width: 768px) {
  .brands-stat:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.brands-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .brands-stat-value {
    font-size: 1.875rem;
  }
}

.brands-stat-label {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.brands-detail-section {
  background: var(--accent);
}

.brands-detail {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .brands-detail {
    padding: 7rem 0;
  }
}

.brands-detail-alt-1 {
  background: var(--accent-mid);
}

.brands-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .brands-detail-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }

  .brands-detail-grid-reverse .brands-detail-visual {
    order: 2;
  }

  .brands-detail-grid-reverse .brands-detail-content {
    order: 1;
  }
}

.brands-logo-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 20rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--brand-bg);
}

@media (min-width: 576px) {
  .brands-logo-frame {
    max-width: 24rem;
  }
}

@media (min-width: 768px) {
  .brands-logo-frame {
    max-width: 28rem;
  }
}

.brands-logo-frame-border {
  position: absolute;
  inset: 2rem;
  border: 1px solid color-mix(in srgb, var(--brand-accent) 15%, transparent);
  border-radius: 0.5rem;
  pointer-events: none;
}

.brands-logo-frame-line {
  position: absolute;
  background: color-mix(in srgb, var(--brand-accent) 10%, transparent);
  pointer-events: none;
}

.brands-logo-frame-line-v {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.brands-logo-frame-line-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.brands-logo-img {
  position: relative;
  z-index: 1;
  width: 8rem;
  height: 8rem;
  object-fit: contain;
}

@media (min-width: 576px) {
  .brands-logo-img {
    width: 10rem;
    height: 10rem;
  }
}

@media (min-width: 768px) {
  .brands-logo-img {
    width: 12rem;
    height: 12rem;
  }
}

.brands-detail-category {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.brands-detail-name {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.brands-detail-tagline {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.brands-detail-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.brands-detail-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brands-detail-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.brands-detail-highlights li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.brands-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--accent);
}

@media (min-width: 768px) {
  .brands-cta {
    padding: 7rem 0;
  }
}

.brands-cta-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.brands-cta-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
}

.brands-cta-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.brands-cta-btn {
  padding: 0.875rem 1.75rem;
}

/* Divisions page */
.divisions-page {
  background: var(--accent);
}

.divisions-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: var(--accent);
}

@media (min-width: 768px) {
  .divisions-hero {
    padding: 5rem 0 7rem;
  }
}

.divisions-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg-B0dvMMzh.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.divisions-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 38, 0.8);
}

.divisions-hero-inner {
  position: relative;
  z-index: 2;
}

.divisions-hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .divisions-hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .divisions-hero-title {
    font-size: 4.5rem;
  }
}

.divisions-main {
  padding: 5rem 0;
  background: var(--accent);
}

@media (min-width: 768px) {
  .divisions-main {
    padding: 7rem 0;
  }
}

.divisions-panel {
  animation: divisionsFadeIn 0.4s ease;
}

@keyframes divisionsFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.divisions-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .divisions-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.divisions-detail-visual {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.divisions-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 38, 0.2);
  pointer-events: none;
}

.divisions-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}

.divisions-detail-visual:hover .divisions-detail-img {
  filter: grayscale(0);
}

.divisions-detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.divisions-detail-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.5rem;
}

.divisions-detail-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.divisions-detail-brands {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.divisions-detail-brands-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.divisions-detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.divisions-stat {
  display: flex;
  flex-direction: column;
}

.divisions-stat-value {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.divisions-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.divisions-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.divisions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--primary);
  transition: opacity 0.3s;
}

.divisions-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.divisions-link i {
  font-size: 0.75rem;
}

.divisions-overview {
  padding: 5rem 0;
  background: var(--background);
}

@media (min-width: 768px) {
  .divisions-overview {
    padding: 7rem 0;
  }
}

.divisions-overview-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 3rem;
}

.divisions-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .divisions-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .divisions-overview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.divisions-overview-card {
  position: relative;
  min-height: 15rem;
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
  background: var(--accent);
}

.divisions-overview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}

.divisions-overview-card:hover .divisions-overview-img {
  filter: grayscale(0);
}

.divisions-overview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 38, 0.7);
  transition: background 0.3s;
}

.divisions-overview-card:hover .divisions-overview-overlay {
  background: rgba(13, 19, 38, 0.8);
}

.divisions-overview-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 15rem;
  padding: 2rem;
  height: 100%;
}

.divisions-overview-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.divisions-overview-name {
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}

.divisions-overview-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.divisions-overview-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.divisions-overview-more i {
  font-size: 0.75rem;
}

/* News page */
.navbar-dig.navbar-light.navbar-transparent+.news-hero,
.navbar-dig.navbar-light.navbar-transparent+.about-hero {
  margin-top: calc(-1 * var(--nav-height));
  padding-top: calc(4rem + var(--nav-height));
}

.navbar-dig.navbar-light.navbar-transparent+.news-article-hero {
  margin-top: calc(-1 * var(--nav-height));
}

.navbar-dig.navbar-light.navbar-transparent+.news-article-hero .news-article-hero-top {
  padding-top: calc(3rem + var(--nav-height));
}

@media (min-width: 768px) {
  .navbar-dig.navbar-light.navbar-transparent+.news-hero {
    padding-top: calc(5rem + var(--nav-height));
  }

  .navbar-dig.navbar-light.navbar-transparent+.about-hero {
    padding-top: calc(5rem + var(--nav-height));
  }
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: hsl(0, 0%, 96%);
}

@media (min-width: 768px) {
  .news-hero {
    padding: 5rem 0 7rem;
  }
}

.news-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg-B0dvMMzh.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: 0.12;
}

.news-hero-inner {
  position: relative;
  z-index: 2;
}

.news-hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 300;
  color: var(--foreground);
  margin: 0;
}

@media (min-width: 768px) {
  .news-hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .news-hero-title {
    font-size: 4.5rem;
  }
}

.news-hero-desc {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.news-main {
  padding: 5rem 0;
  background: linear-gradient(180deg, hsl(40, 20%, 99%) 0%, hsl(220, 30%, 95%) 60%, hsla(220, 40%, 88%, 0.5) 100%);
}

@media (min-width: 768px) {
  .news-main {
    padding: 7rem 0;
  }
}

.news-main .dig-nav-tabs-wrap {
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .news-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-page-item {
  display: flex;
  flex-direction: column;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-page-item:hover {
  color: inherit;
}

.news-page-item.is-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .news-page-item.is-featured {
    grid-template-columns: 1fr 1fr;
  }
}

.news-page-item.is-featured .news-page-item-media {
  min-height: 16.25rem;
}

@media (min-width: 768px) {
  .news-page-item.is-featured .news-page-item-media {
    min-height: 18.75rem;
  }
}

.news-page-item.is-featured .news-page-item-media img {
  height: 100%;
  min-height: 16.25rem;
  aspect-ratio: auto;
}

.news-page-item.is-featured .news-page-item-body {
  padding: 1.5rem;
  justify-content: center;
}

@media (min-width: 576px) {
  .news-page-item.is-featured .news-page-item-body {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .news-page-item.is-featured .news-page-item-body {
    padding: 3rem;
  }
}

.news-page-item.is-featured .news-page-item-title {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .news-page-item.is-featured .news-page-item-title {
    font-size: 1.875rem;
  }
}

.news-page-item.is-grid {
  padding: 1.25rem;
}

.news-page-item.is-grid .news-page-item-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.news-page-item-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-page-item.is-grid .news-page-item-body {
  padding: 0;
}

.news-page-item-media {
  overflow: hidden;
}

.news-page-item-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.news-page-item:hover .news-page-item-media img {
  transform: scale(1.05);
}

.news-page-item-title {
  font-size: 1.125rem;
  line-height: 1.375;
  font-weight: 400;
  color: var(--foreground);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.news-page-item:hover .news-page-item-title {
  color: var(--primary);
}

.news-page-item-excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-page-item.is-grid .news-page-item-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read-featured {
  text-decoration: none;
}

.news-read-grid {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-empty {
  text-align: center;
  padding: 5rem 0;
}

.news-empty p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* News filter — CSS radio (no JS) */
.news-filter {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dig-nav-tabs label.nav-link {
  cursor: pointer;
  margin: 0;
}

#news-filter-all:checked~.dig-nav-tabs-wrap label[for="news-filter-all"],
#news-filter-corporate:checked~.dig-nav-tabs-wrap label[for="news-filter-corporate"],
#news-filter-fnb:checked~.dig-nav-tabs-wrap label[for="news-filter-fnb"],
#news-filter-retail:checked~.dig-nav-tabs-wrap label[for="news-filter-retail"],
#news-filter-events:checked~.dig-nav-tabs-wrap label[for="news-filter-events"],
#news-filter-press:checked~.dig-nav-tabs-wrap label[for="news-filter-press"] {
  background: var(--primary);
  color: var(--primary-foreground);
}

#news-filter-corporate:checked~.news-list .news-page-item,
#news-filter-fnb:checked~.news-list .news-page-item,
#news-filter-retail:checked~.news-list .news-page-item,
#news-filter-events:checked~.news-list .news-page-item,
#news-filter-press:checked~.news-list .news-page-item {
  display: none;
}

#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"],
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"],
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"],
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"],
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"] {
  display: flex;
}

#news-filter-all:checked~.news-list .news-page-item:first-child,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  padding: 0;
}

#news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-media,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-media,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-media,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-media,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-media,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-media {
  min-height: 16.25rem;
}

#news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-media img,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-media img,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-media img,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-media img,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-media img,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-media img {
  height: 100%;
  min-height: 16.25rem;
  aspect-ratio: auto;
}

#news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-body,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-body,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-body,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-body,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-body,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-body {
  padding: 1.5rem;
  justify-content: center;
}

#news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-title,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-title,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-title,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-title,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-title,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-title {
  font-size: 1.5rem;
}

#news-filter-all:checked~.news-list .news-page-item:not(:first-child) .news-page-item-media,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"]:not(.news-lead) .news-page-item-media,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"]:not(.news-lead) .news-page-item-media,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"]:not(.news-lead) .news-page-item-media,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"]:not(.news-lead) .news-page-item-media,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"]:not(.news-lead) .news-page-item-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {

  #news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-media,
  #news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-media,
  #news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-media,
  #news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-media,
  #news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-media,
  #news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-media {
    min-height: 18.75rem;
  }

  #news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-body,
  #news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-body,
  #news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-body,
  #news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-body,
  #news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-body,
  #news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-body {
    padding: 3rem;
  }

  #news-filter-all:checked~.news-list .news-page-item:first-child .news-page-item-title,
  #news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-page-item-title,
  #news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-page-item-title,
  #news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-page-item-title,
  #news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-page-item-title,
  #news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-page-item-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 992px) {

  #news-filter-all:checked~.news-list .news-page-item:first-child,
  #news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead,
  #news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead,
  #news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead,
  #news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead,
  #news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead {
    grid-template-columns: 1fr 1fr;
  }
}

#news-filter-all:checked~.news-list .news-page-item:not(:first-child),
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"]:not(.news-lead),
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"]:not(.news-lead),
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"]:not(.news-lead),
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"]:not(.news-lead),
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"]:not(.news-lead) {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

#news-filter-all:checked~.news-list .news-page-item:first-child .news-read-grid,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-read-grid,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-read-grid,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-read-grid,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-read-grid,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-read-grid {
  display: none;
}

#news-filter-all:checked~.news-list .news-page-item:first-child .news-read-featured,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"].news-lead .news-read-featured,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"].news-lead .news-read-featured,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"].news-lead .news-read-featured,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"].news-lead .news-read-featured,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"].news-lead .news-read-featured {
  display: inline-flex;
}

#news-filter-all:checked~.news-list .news-page-item:not(:first-child) .news-read-featured,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"]:not(.news-lead) .news-read-featured,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"]:not(.news-lead) .news-read-featured,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"]:not(.news-lead) .news-read-featured,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"]:not(.news-lead) .news-read-featured,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"]:not(.news-lead) .news-read-featured {
  display: none;
}

#news-filter-all:checked~.news-list .news-page-item:not(:first-child) .news-read-grid,
#news-filter-corporate:checked~.news-list .news-page-item[data-category="Corporate"]:not(.news-lead) .news-read-grid,
#news-filter-fnb:checked~.news-list .news-page-item[data-category="F&B"]:not(.news-lead) .news-read-grid,
#news-filter-retail:checked~.news-list .news-page-item[data-category="Retail"]:not(.news-lead) .news-read-grid,
#news-filter-events:checked~.news-list .news-page-item[data-category="Events"]:not(.news-lead) .news-read-grid,
#news-filter-press:checked~.news-list .news-page-item[data-category="Press Release"]:not(.news-lead) .news-read-grid {
  display: inline;
}

.news-page-item[hidden] {
  display: none !important;
}

/* News article detail */
.news-article-page {
  background: #fff;
}

.news-article-hero {
  background: hsl(0, 0%, 96%);
}

.news-article-hero-top {
  padding: 3rem 0 1.5rem;
}

.news-article-cover-wrap {
  padding-bottom: 0;
}

.news-article-cover {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}

.news-article-cover img {
  width: 100%;
  height: 13.75rem;
  object-fit: cover;
  display: block;
}

@media (min-width: 576px) {
  .news-article-cover img {
    height: 18.75rem;
  }
}

@media (min-width: 768px) {
  .news-article-cover img {
    height: 30rem;
  }
}

.news-article-content {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .news-article-content {
    padding: 6rem 0;
  }
}

.news-article-inner {
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .news-article-inner {
    max-width: 48rem;
  }
}

.news-article-inner .news-tags {
  margin-bottom: 1.5rem;
}

.news-article-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.news-article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .news-article-body p {
    font-size: 1.125rem;
  }
}

.news-article-body p:last-child {
  margin-bottom: 0;
}

.news-article-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .news-article-nav {
    grid-template-columns: 1fr 1fr;
  }
}

.news-article-nav-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  transition: background 0.3s;
  min-height: 4.5rem;
}

.news-article-nav-link:hover {
  background: var(--secondary);
  color: inherit;
}

.news-article-nav-link.is-next {
  text-align: right;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .news-article-nav-link.is-next {
    justify-self: end;
  }
}

.news-article-nav-link i {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: color 0.3s;
}

.news-article-nav-link:hover i {
  color: var(--primary);
}

.news-article-nav-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.news-article-nav-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.news-article-nav-link:hover .news-article-nav-title {
  color: var(--primary);
}

.news-related {
  padding: 4rem 0 5rem;
  background: var(--secondary);
}

@media (min-width: 768px) {
  .news-related {
    padding: 5rem 0;
  }
}

.news-related-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  color: var(--foreground);
  margin-bottom: 2.5rem;
}

.news-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-related-card {
  display: block;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-related-card:hover {
  color: inherit;
}

.news-related-card-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.news-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
  transition: transform 0.5s;
}

.news-related-card:hover img {
  transform: scale(1.05);
}

.news-related-card h3 {
  font-size: 1.125rem;
  line-height: 1.375;
  font-weight: 400;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.news-related-card:hover h3 {
  color: var(--primary);
}

.news-related-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Contact page */
.contact-page {
  background: var(--accent);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: var(--accent);
}

@media (min-width: 768px) {
  .contact-hero {
    padding: 5rem 0 7rem;
  }
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg-B0dvMMzh.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: 0.2;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 38, 0.8);
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .contact-hero-title {
    font-size: 4.5rem;
  }
}

.contact-hero-desc {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info {
  padding: 4rem 0 5rem;
  background: var(--accent);
}

@media (min-width: 768px) {
  .contact-info {
    padding: 5rem 0;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.contact-info-card:hover {
  border-color: hsl(43 80% 50% / 0.3);
}

.contact-info-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.5rem;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.25rem;
  line-height: 1.4;
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-value a:hover {
  color: var(--primary);
}

.contact-info-detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
}

.contact-form-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}

.contact-form-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37.5rem;
  height: 18.75rem;
  border-radius: 50%;
  filter: blur(64px);
  background: radial-gradient(circle, hsla(210, 60%, 50%, 0.15), transparent);
  pointer-events: none;
}

.contact-form-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 6rem 0;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-form-inner {
    padding: 8rem 0;
  }
}

@media (min-width: 992px) {
  .contact-form-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-form-heading {
  font-size: 1.875rem;
  line-height: 1.15;
  font-weight: 300;
  color: #fff;
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .contact-form-heading {
    font-size: 2.75rem;
  }
}

.contact-form-notes {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

.contact-form-notes p {
  margin: 0;
}

.contact-form-notes p+p {
  margin-top: 0.25rem;
}

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

.contact-quick-links-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 1rem;
}

.contact-quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.contact-quick-links-grid a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-quick-links-grid a:hover {
  color: var(--primary);
}

.contact-form-lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-lead {
    font-size: 1.25rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: #fff;
  padding: 1rem;
  font-size: 0.875rem;
}

.contact-form-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: hsl(43 80% 50% / 0.6);
  box-shadow: 0 0 0 3px hsl(43 80% 50% / 0.1);
  color: #fff;
}

.contact-form-section .form-select {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-section textarea.form-control {
  resize: none;
}

.contact-map {
  position: relative;
  height: 18.75rem;
  background: var(--accent);
}

@media (min-width: 768px) {
  .contact-map {
    height: 25rem;
  }
}

.contact-map iframe {
  display: block;
  filter: grayscale(100%) contrast(1.1);
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 38, 0.1);
  pointer-events: none;
}

@media (max-width: 600px) {

  .nav-dot {
    display: none;
  }

  .navbar-dig .nav-link {
    font-size: 14px;
  }

  .values-banner .content {
    padding: 1rem;
  }

  .portfolio-section.section-py {
    padding: 2rem 0;
  }

  .portfolio-card {
    margin-top: 2rem;
    max-width: 100%;
  }

  .portfolio-card-title {
    width: 100%;
  }

  .btn-split {
    margin: 0;
  }

  .container-dig {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-py {
    padding: 2rem 0;
  }

  .about-ceo-photo {
    max-width: max-content;
  }

  .about-section {
    padding: 2rem 0;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-journey-inner {
    padding: 2rem;
  }

  .brands-detail {
    padding: 2rem 0;
  }

  .brands-hero {
    padding: 3rem 0 1rem;
  }

  .divisions-hero {
    padding: 2rem 0 0;
  }
  .divisions-main,.divisions-overview,.news-main{
    padding: 2rem 0;
    overflow: hidden;
}
}