:root {
  --primary-dark: #1a2332;
  --primary: #2d3748;
  --primary-light: #4a5568;
  --accent: #EF4A40;
  --accent-light: #FF6B5E;
  --accent-dark: #D63B31;
  --neutral-50: #ffffff;
  --neutral-100: #f7f8f9;
  --neutral-150: #edf0f3;
  --neutral-200: #e8ebed;
  --neutral-300: #e2e8f0;
  --text-strong: #1a202c;
  --text: #2d3748;
  --text-soft: #4a5568;
  --text-muted: #718096;
  --shadow-sm: 0 10px 24px rgba(26, 35, 50, 0.08);
  --shadow-md: 0 18px 32px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 28px 60px rgba(26, 35, 50, 0.14);
  --blur: blur(24px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --container: min(1180px, calc(100% - 48px));
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --page-bg: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, #f7f8f9 55%, #edf0f3 100%);
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --accent-strong: var(--accent-dark);
  --accent-warm: var(--accent-light);
  --text-muted-legacy: var(--text-muted);
  --border: rgba(226, 232, 240, 0.9);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(239, 74, 64, 0.2);
  touch-action: manipulation;
  font-display: swap;
}

img,
video {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, serif;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.2;
  font-display: swap;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: var(--transition);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.top-bar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(26, 35, 50, 0.12);
  border-color: rgba(226, 232, 240, 0.9);
}

.top-bar.hidden {
  transform: translateY(-110%);
}

.brand picture {
  display: inline-flex;
}

.brand img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(26, 35, 50, 0.15));
  transition: transform 0.3s ease;
}

.brand img:hover {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-light));
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
  background: linear-gradient(130deg, var(--accent), var(--accent-light));
  box-shadow: 0 16px 28px rgba(239, 74, 64, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(214, 59, 49, 0.32);
}

main {
  padding-top: 104px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 110px;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(26, 35, 50, 0.95) 10%, rgba(45, 55, 72, 0.75) 60%, rgba(26, 35, 50, 0.85) 100%);
  contain: layout style paint;
}

.hero-video,
.hero-video-slider video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.05);
  aspect-ratio: 16 / 9;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-video-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(26, 35, 50, 0.92) 12%, rgba(45, 55, 72, 0.82) 45%, rgba(26, 35, 50, 0.6) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  color: #fff;
  min-height: 0;
  contain: layout style;
  z-index: 1;
  pointer-events: auto;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.eyebrow.centered {
  justify-content: center;
  width: 100%;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

.hero-copy p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.btn.primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  box-shadow: 0 22px 40px rgba(239, 74, 64, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(214, 59, 49, 0.32);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.hero-stats div {
  padding: 16px 0;
}

.hero-stats dt {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 2px;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card {
  position: relative;
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.65);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  align-self: center;
}

.card-gradient {
  position: absolute;
  inset: auto -25% -25% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(239, 74, 64, 0.26), transparent 60%);
  z-index: 0;
}

.hero-card .card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  color: var(--text);
}

.hero-card h2 {
  font-size: 1.7rem;
  color: var(--primary);
}

.hero-card p {
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-card ul {
  margin: 4px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
}

.hero-card li {
  position: relative;
}

.hero-card li::marker {
  color: var(--accent);
}

.hero-card a {
  margin-top: 6px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-card a::after {
  content: '→';
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.hero-card a:hover::after {
  transform: translateX(2px);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section h2 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 10px 0 22px;
}

.section-lead {
  max-width: 660px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  text-align: center;
}

.about {
  background: var(--neutral-50);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media .glow {
  position: absolute;
  inset: -12% auto auto -12%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(239, 74, 64, 0.35), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.about-media picture {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-copy {
  display: grid;
  gap: 28px;
}

.about-copy p {
  color: var(--text-soft);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  align-items: stretch;
}

.about-highlights article {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.about-highlights article h3 {
  font-size: 1.12rem;
  color: var(--primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex-shrink: 0;
}

.about-highlights article p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  flex: 1;
}

.vision {
  background: linear-gradient(130deg, rgba(247, 248, 249, 1), rgba(236, 239, 243, 0.7));
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.vision-card {
  background: var(--neutral-50);
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}

.vision-card p {
  color: var(--text-soft);
}

.vision-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-lg);
  height: 78vh;
  min-height: 520px;
}

.slider {
  position: relative;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  user-select: none;
  pointer-events: auto;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.04);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  pointer-events: auto;
}

.slider-dot.active {
  background: #fff;
}

.vision-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 35, 50, 0.1), transparent 60%);
}

.vision-media video,
.vision .inline-video-slider video {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  margin: 0 auto;
}

.vision .inline-video-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.solutions {
  background: var(--neutral-50);
}

.gallery-accordion {
  background: var(--neutral-100);
}

.gallery-accordion .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-accordion h2 {
  text-align: center;
}

.accordion-gallery {
  margin-top: 64px;
  background: var(--surface-strong);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.accordion-headline h3 {
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  margin-bottom: 12px;
}

.accordion-headline p {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.accordion-item {
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.accordion-item.is-open {
  box-shadow: 0 22px 36px rgba(26, 35, 50, 0.12);
  transform: translateY(-2px);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(239, 74, 64, 0.1);
  user-select: none;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.trigger-media {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trigger-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.trigger-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trigger-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trigger-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.trigger-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.trigger-icon {
  margin-left: auto;
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 22px;
}

.trigger-icon::before,
.trigger-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.trigger-icon::after {
  transform: rotate(90deg);
}

.accordion-item.is-open .trigger-icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.accordion-panel {
  padding: 0 24px 24px;
}

.accordion-panel[hidden] {
  display: none;
}

.gallery {
  background: var(--neutral-100);
}

.gallery .section-lead {
  max-width: 720px;
}

.gallery .tab-group {
  margin-top: 36px;
}

.gallery-panels,
.gallery .category-panels {
  margin-top: 28px;
}

.gallery-panel,
.gallery .category-panel {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.85);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: none;
}

.gallery-panel.active,
.gallery .category-panel.active {
  display: block;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.mosaic-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosaic-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 4 / 3;
  background: transparent;
  border-radius: var(--radius-lg);
}

.info-hero {
  background: var(--neutral-100);
}

.info-hero__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-hero__content p {
  color: var(--text-soft);
  font-size: 1.08rem;
}

.info-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.info-tabs .category-tabs {
  justify-content: center;
}

.info-panels {
  margin-top: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.info-field {
  background: var(--surface-strong);
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.85);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
}

.info-field dt {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.info-field dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.info-field a {
  color: var(--primary);
  font-weight: 600;
}

.info-field a:hover {
  color: var(--accent-dark);
}

.info-people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.info-person {
  background: var(--surface-strong);
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.85);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.info-person h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--primary);
}

.info-person p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-weight: 500;
}

.info-auditor {
  margin-top: 32px;
  background: linear-gradient(120deg, rgba(239, 74, 64, 0.12), rgba(255, 107, 94, 0.15));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 74, 64, 0.35);
  padding: 30px;
  color: var(--primary);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-auditor h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.info-auditor p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 35, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  margin: 0;
  max-width: min(1024px, 90vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
}

.lightbox__content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #0f1723;
}

.lightbox__caption {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  pointer-events: auto;
  z-index: 201;
}

.lightbox__close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.18);
}

.cookie-consent {
  position: fixed;
  inset: auto 16px 16px 16px;
  max-width: 520px;
  margin: 0 auto;
  padding: 22px 26px;
  background: rgba(26, 35, 50, 0.9);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 48px rgba(26, 35, 50, 0.24);
  backdrop-filter: blur(12px);
  display: none;
  z-index: 120;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-consent__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent button {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.cookie-consent__accept {
  background: linear-gradient(120deg, rgba(239, 74, 64, 0.92), rgba(255, 107, 94, 0.88));
  color: #1a2332;
  box-shadow: 0 16px 32px rgba(239, 74, 64, 0.24);
}

.cookie-consent__accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(239, 74, 64, 0.28);
}

.cookie-consent__reject {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent__reject:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-consent__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-consent__body a {
  color: #fddc8f;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-consent {
    inset: auto 12px 12px 12px;
    padding: 18px 20px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent button {
    width: 100%;
  }
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.category-tabs button {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(239, 74, 64, 0.15);
  user-select: none;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.category-tabs button:hover {
  border-color: var(--accent);
  color: var(--primary);
}

.category-tabs button.active {
  background: linear-gradient(120deg, rgba(239, 74, 64, 0.16), rgba(255, 107, 94, 0.22));
  border-color: rgba(239, 74, 64, 0.45);
  color: var(--primary);
  box-shadow: 0 16px 28px rgba(239, 74, 64, 0.16);
}

.category-panel {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.85);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-panel.active {
  border-color: rgba(239, 74, 64, 0.45);
  box-shadow: 0 26px 52px rgba(239, 74, 64, 0.16);
}

.category-panel[hidden] {
  display: none;
}

.category-panel .panel-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.category-panel .panel-header span {
  font-size: 0.9rem;
  color: var(--accent-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.panel-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid h4 {
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.panel-grid ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.brands {
  background: linear-gradient(140deg, rgba(247, 248, 249, 0.95), rgba(232, 235, 237, 0.7));
  padding-bottom: 90px;
}

.brands-marquee {
  margin-top: 44px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 30px 42px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.brands-track img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 24px rgba(26, 35, 50, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brands-track img:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 34px rgba(26, 35, 50, 0.12);
}

.contact {
  background: var(--neutral-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.contact-card {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 28px;
}

.contact-card.branch {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(239, 74, 64, 0.35);
  box-shadow: 0 28px 48px rgba(239, 74, 64, 0.18);
}

.contact-card p {
  color: var(--text-soft);
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-info h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-info a {
  color: var(--primary);
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--accent-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.footer {
  background: linear-gradient(135deg, var(--primary-dark), #0f1723);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  text-align: center;
  justify-items: center;
}

.footer-grid>div {
  max-width: 280px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.footer-grid h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
  color: var(--accent);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: var(--accent-light);
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social a svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.85);
}

.social a:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--accent);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(26, 35, 50, 0.24);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

.fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.fab:hover {
  transform: translateY(-3px);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  opacity: 1;
  pointer-events: all;
}

.fab-top {
  background: rgba(26, 35, 50, 0.9);
  bottom: 88px;
}

.fab-top.is-visible {
  opacity: 1;
  pointer-events: all;
}

[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.hero-content[data-animate],
.hero-card[data-animate] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

body.js-loaded [data-animate]:not(.is-visible):not(.hero-content):not(.hero-card) {
  opacity: 0;
  transform: translateY(40px);
}

body.js-loaded [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  :root {
    --container: min(1040px, calc(100% - 48px));
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 540px;
  }

  .about-grid,
  .vision-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --container: calc(100% - 36px);
  }

  .main-nav ul {
    gap: 18px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-panel {
    padding: 26px;
  }

  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-grid,
  .panel-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .top-bar {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .nav-toggle {
    display: flex;
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
  }

  .nav-toggle span {
    width: 26px;
    height: 3px;
  }

  .cta {
    display: none;
  }

  .main-nav ul {
    position: fixed;
    top: 80px;
    right: 12px;
    left: 12px;
    flex-direction: column;
    gap: 8px;
    padding: 20px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav ul.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .main-nav a {
    font-size: 1.05rem;
    padding: 14px 18px;
    border-radius: var(--radius);
    display: block;
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background: rgba(239, 74, 64, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 100px 0 80px;
    min-height: 100vh;
    min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    min-height: 52px;
    padding: 16px 28px;
    font-size: 1.05rem;
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hero-stats div {
    padding: 20px 0;
  }

  .hero-stats dt {
    font-size: 1.8rem;
  }

  .hero-stats dd {
    font-size: 0.9rem;
  }

  .hero-card {
    padding: 28px 24px;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .about-grid {
    gap: 40px;
  }

  .about-media .glow {
    width: 240px;
    height: 240px;
    inset: -8% auto auto -8%;
  }

  .about-media picture {
    aspect-ratio: 9 / 16;
    max-width: 100%;
  }

  .about-highlights {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-width: 0;
  }

  .about-highlights article {
    padding: 24px 20px;
    height: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  .about-highlights article h3,
  .about-highlights article p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .vision-grid {
    gap: 24px;
  }

  .vision-card {
    padding: 28px 24px;
  }

  .vision-media {
    min-height: 400px;
    height: 60vh;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .slider-btn.prev {
    left: 12px;
  }

  .slider-btn.next {
    right: 12px;
  }

  .slider-dots {
    bottom: 16px;
    gap: 10px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .panel-grid,
  .panel-grid.two-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .category-panel,
  .gallery-panel {
    padding: 24px 20px;
  }

  .accordion-trigger {
    padding: 20px 18px;
    min-height: 64px;
  }

  .accordion-panel {
    padding: 0 18px 20px;
  }

  .mosaic-grid {
    gap: 12px;
  }

  .mosaic-item img {
    border-radius: var(--radius);
  }

  .category-tabs {
    gap: 12px;
  }

  .category-tabs button {
    padding: 16px 20px;
    min-height: 52px;
    font-size: 1rem;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .contact-card,
  .contact-map {
    width: 100%;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-card:first-of-type {
    order: 1;
  }

  .contact-map--bursa {
    order: 2;
  }

  .contact-card.branch {
    order: 3;
  }

  .contact-map--balikesir {
    order: 4;
  }

  .contact-map iframe {
    min-height: 360px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .contact-actions a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fab {
    width: 56px;
    height: 56px;
    right: max(20px, calc(16px + env(safe-area-inset-right)));
    bottom: max(20px, calc(16px + env(safe-area-inset-bottom)));
  }

  .fab-top {
    bottom: max(88px, calc(84px + env(safe-area-inset-bottom)));
  }

  .info-hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .info-hero__actions a {
    min-height: 52px;
    width: 100%;
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .info-field {
    padding: 22px 20px;
  }

  .info-people {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .info-person {
    padding: 28px 24px;
  }

  .footer {
    padding: 60px 0 40px;
    padding-bottom: max(40px, calc(40px + env(safe-area-inset-bottom)));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .brands-marquee {
    margin-top: 36px;
  }

  .brands-track {
    padding: 28px 24px;
  }

  .brands-track img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 20px);
    --radius: 16px;
    --radius-lg: 20px;
  }

  .top-bar .container {
    padding: 14px 0;
  }

  .brand img {
    width: 100px;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .main-nav ul {
    top: 76px;
    padding: 18px 14px;
    gap: 6px;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 12px 16px;
    min-height: 44px;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .hero-stats div {
    padding: 18px 0;
    text-align: center;
  }

  .hero-stats dt {
    font-size: 1.7rem;
  }

  .hero-stats dd {
    font-size: 0.88rem;
  }

  .hero-card {
    padding: 24px 20px;
  }

  .hero-card h2 {
    font-size: 1.5rem;
  }

  .btn,
  .cta {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .section {
    padding: 70px 0;
  }

  .section h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .section-lead {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .about-grid {
    gap: 32px;
  }

  .about-media .glow {
    width: 200px;
    height: 200px;
    inset: -6% auto auto -6%;
  }

  .about-media picture {
    aspect-ratio: 9 / 16;
  }

  .about-highlights article {
    padding: 20px 18px;
    height: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  .about-highlights article h3 {
    font-size: 1.08rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .about-highlights article p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .vision-card {
    padding: 24px 20px;
  }

  .vision-media {
    min-height: 360px;
    height: 55vh;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .category-tabs {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .category-tabs button {
    padding: 14px 18px;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .category-panel,
  .gallery-panel {
    padding: 20px 18px;
  }

  .accordion-gallery {
    padding: 28px 20px;
  }

  .accordion-trigger {
    padding: 18px 16px;
    min-height: 60px;
  }

  .trigger-media {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .trigger-title {
    font-size: 1.05rem;
  }

  .accordion-panel {
    padding: 0 16px 18px;
  }

  .mosaic-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .mosaic-item img {
    aspect-ratio: 4 / 3;
  }

  .info-hero__content {
    align-items: center;
    gap: 16px;
  }

  .info-hero__content p {
    font-size: 1rem;
  }

  .info-field {
    padding: 20px 18px;
  }

  .info-field dt {
    font-size: 0.9rem;
  }

  .info-field dd {
    font-size: 0.95rem;
  }

  .info-person {
    padding: 24px 20px;
  }

  .brands-track {
    gap: 24px;
    padding: 22px 16px;
  }

  .brands-track img {
    width: 90px;
    height: 90px;
    padding: 14px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card h2 {
    font-size: 1.6rem;
  }

  .contact-info h3 {
    font-size: 1.1rem;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .footer {
    padding: 50px 0 32px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-grid h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .footer-grid p {
    font-size: 0.95rem;
  }

  .social {
    gap: 10px;
    justify-content: center;
  }

  .social a {
    width: 44px;
    height: 44px;
  }

  .social a svg {
    width: 20px;
    height: 20px;
  }

  .fab {
    width: 52px;
    height: 52px;
    right: max(16px, calc(12px + env(safe-area-inset-right)));
    bottom: max(16px, calc(12px + env(safe-area-inset-bottom)));
  }

  .fab svg {
    width: 24px;
    height: 24px;
  }

  .fab-top {
    bottom: max(76px, calc(72px + env(safe-area-inset-bottom)));
    width: 48px;
    height: 48px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox__close {
    width: 40px;
    height: 40px;
    top: 16px;
    right: 16px;
    font-size: 1.6rem;
  }

  .lightbox__content {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
  }

  .cookie-consent {
    inset: auto 12px 12px 12px;
    padding: 20px 18px;
  }

  .cookie-consent button {
    min-height: 44px;
    padding: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .brands-track {
    animation: none;
  }
}

.main-nav li.active a {
  color: var(--accent-dark);
  font-weight: 700;
}

.instagram-feed {
  background: var(--surface);
  padding: 80px 0;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: 40px;
  min-height: 400px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.instagram-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  background: var(--surface);
}

.instagram-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.instagram-item:hover {
  transform: scale(0.98);
  opacity: 0.9;
  z-index: 1;
}

.instagram-item img,
.instagram-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.instagram-item:hover img,
.instagram-item:hover video {
  transform: scale(1.05);
}

.instagram-item video {
  background: #000;
}

.instagram-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
  pointer-events: none;
}

.instagram-item:hover::before {
  opacity: 1;
}

.instagram-item::after {
  content: '❤️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.instagram-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.instagram-item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.instagram-item-link:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  z-index: 2;
}

.instagram-footer {
  text-align: center;
  margin-top: 40px;
}

.instagram-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  background: var(--surface);
}

.instagram-error p {
  margin: 0;
  font-size: 1.08rem;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }

  .instagram-feed {
    padding: 60px 0;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }
}

/* Years Counter Animation - CRAZY but Elegant Edition */
.years-card {
  text-align: center;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated background glow */
.years-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(239, 74, 64, 0.35) 0%, rgba(239, 74, 64, 0.1) 50%, transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 0;
}

.years-card.active .years-glow {
  opacity: 1;
  width: 350px;
  height: 350px;
  animation: glowBreath 3s ease-in-out infinite;
}

@keyframes glowBreath {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(30px);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.15);
    filter: blur(40px);
  }
}

/* Celebrate state - glow becomes more intense */
.years-card.celebrate .years-glow {
  animation: glowCelebrate 2s ease-in-out infinite;
}

@keyframes glowCelebrate {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(35px) hue-rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    filter: blur(45px) hue-rotate(5deg);
  }
}

.years-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.years-counter-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  min-height: 110px;
}

/* The main number */
.years-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0;
  transform: translateY(40px) scale(0.5) rotateX(30deg);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 15px rgba(239, 74, 64, 0.3));
  perspective: 1000px;
}

.years-number.counting {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  animation: countPulse 0.1s ease-out;
}

@keyframes countPulse {
  0% {
    transform: scale(1.2) rotateZ(-2deg);
  }

  50% {
    transform: scale(0.95) rotateZ(1deg);
  }

  100% {
    transform: scale(1) rotateZ(0deg);
  }
}

/* Finished state - with continuous shimmer */
.years-number.finished {
  font-size: 4.5rem;
  animation: finishExplode 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), shimmerContinuous 3s ease-in-out infinite 0.8s;
  filter: drop-shadow(0 6px 25px rgba(239, 74, 64, 0.4));
}

@keyframes finishExplode {
  0% {
    transform: scale(2) rotateZ(10deg);
    opacity: 0;
    filter: drop-shadow(0 0 50px rgba(239, 74, 64, 0.8));
  }

  30% {
    transform: scale(0.8) rotateZ(-5deg);
  }

  60% {
    transform: scale(1.1) rotateZ(2deg);
  }

  100% {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
    filter: drop-shadow(0 6px 25px rgba(239, 74, 64, 0.4));
  }
}

/* Continuous shimmer after completion */
@keyframes shimmerContinuous {

  0%,
  100% {
    filter: drop-shadow(0 6px 25px rgba(239, 74, 64, 0.4));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 8px 35px rgba(239, 74, 64, 0.55));
    transform: scale(1.02);
  }
}

/* Unit text */
.years-unit {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-30px) scale(0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.years-unit.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: slideInBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInBounce {
  0% {
    transform: translateX(-40px) scale(0.5);
    opacity: 0;
  }

  60% {
    transform: translateX(5px) scale(1.1);
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Tagline */
.years-tagline {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  opacity: 0;
  transform: translateY(25px) scale(0.7);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  line-height: 1.3;
}

.years-tagline.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: taglineExplode 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), taglineGlow 2.5s ease-in-out infinite 0.6s;
}

@keyframes taglineExplode {
  0% {
    transform: translateY(30px) scale(0.3);
    opacity: 0;
  }

  50% {
    transform: translateY(-8px) scale(1.1);
  }

  70% {
    transform: translateY(3px) scale(0.95);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Continuous glow on tagline */
@keyframes taglineGlow {

  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }

  50% {
    text-shadow: 0 0 15px rgba(239, 74, 64, 0.2);
  }
}

/* Burst Particles */
.years-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.years-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px rgba(239, 74, 64, 0.6), 0 0 20px rgba(239, 74, 64, 0.3);
}

.years-particle.animate {
  animation: particleExplode 1.5s ease-out forwards;
}

@keyframes particleExplode {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1.5);
  }

  20% {
    opacity: 1;
    transform: translate(calc(var(--tx) * 0.3), calc(var(--ty) * 0.3)) scale(1.2);
  }

  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0);
  }
}

/* Celebration ring burst - multiple rings */
.years-card.celebrate::before,
.years-card.celebrate::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.years-card.celebrate::before {
  width: 50px;
  height: 50px;
  border: 3px solid var(--accent);
  animation: ringExplode 1s ease-out forwards;
}

.years-card.celebrate::after {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-light);
  animation: ringExplode 1s 0.15s ease-out forwards;
}

@keyframes ringExplode {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}

/* Floating particles after celebration - continuous effect */
.years-card.celebrate .years-particles::before,
.years-card.celebrate .years-particles::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle 4s ease-in-out infinite;
}

.years-card.celebrate .years-particles::before {
  left: 20%;
  top: 30%;
  animation-delay: 0s;
}

.years-card.celebrate .years-particles::after {
  right: 25%;
  top: 40%;
  animation-delay: 2s;
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 0.6;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .years-number {
    font-size: 5rem;
  }

  .years-number.finished {
    font-size: 3.5rem;
  }

  .years-tagline {
    font-size: 1.3rem;
  }

  .years-unit {
    font-size: 1.8rem;
  }

  .years-card {
    min-height: 280px;
  }

  .years-counter-wrap {
    min-height: 90px;
  }

  .years-particle {
    width: 8px;
    height: 8px;
  }

  .years-card.active .years-glow {
    width: 280px;
    height: 280px;
  }
}