/* GrainTürk — shared site styles */
:root {
  --navy: #0a1a24;
  --navy-2: #143041;
  --gold: #c9a227;
  --gold-dark: #9a7a18;
  --white: #fff;
  --paper: #f5f7f9;
  --warm: #f0edea;
  --mist: #e8eef3;
  --text: #142029;
  --muted: #5c6b78;
  --line: #d2dae2;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body,
button,
input,
textarea,
select {
  font-family: var(--font);
}
body {
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center;
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(var(--max), calc(100% - 2.5rem));
}
.logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(180px, 38vw);
}
.menu {
  display: flex; align-items: center; justify-content: flex-end;
  flex: 1; min-width: 0;
}
.elementor-nav-menu {
  display: flex; align-items: center; gap: 0.15rem;
  list-style: none; margin: 0; padding: 0;
}
.elementor-nav-menu > .menu-item { position: relative; }
.elementor-nav-menu .elementor-item {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 650; letter-spacing: 0.04em;
  color: var(--muted); padding: 0.55rem 0.65rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.elementor-nav-menu .elementor-item:hover,
.elementor-nav-menu .elementor-item-active,
.elementor-nav-menu .current-menu-item > .elementor-item,
.elementor-nav-menu .current-menu-ancestor > .elementor-item {
  color: var(--navy);
}
.elementor-nav-menu .sub-menu {
  position: absolute; top: calc(100% + 0.35rem); left: 0;
  min-width: 260px; padding: 0.45rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(10, 26, 36, 0.12);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 200;
}
.elementor-nav-menu .menu-item-has-children:hover > .sub-menu,
.elementor-nav-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: none;
}
.elementor-nav-menu .sub-menu .elementor-sub-item {
  display: block; padding: 0.65rem 1rem;
  font-size: 0.82rem; font-weight: 550; letter-spacing: 0;
  color: var(--navy); text-transform: none;
  transition: background 0.2s, color 0.2s;
}
.elementor-nav-menu .sub-menu .elementor-sub-item:hover,
.elementor-nav-menu .sub-menu .current-menu-item > .elementor-sub-item,
.elementor-nav-menu .sub-menu .elementor-item-active {
  background: color-mix(in srgb, var(--gold) 12%, var(--white));
  color: var(--gold-dark);
}
.burger {
  display: none; width: 42px; height: 42px; place-items: center;
  border: 1px solid var(--line);
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 1.5px; background: var(--navy); position: relative;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.drawer {
  position: fixed; inset: 0; background: var(--navy); z-index: 120;
  overflow-y: auto; padding: 4.5rem 1.5rem 2rem;
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.drawer.open { transform: none; }
.drawer .elementor-nav-menu {
  display: grid; gap: 0.35rem; align-content: start;
}
.drawer .elementor-nav-menu > .menu-item > .elementor-item {
  color: var(--white); font-family: var(--display);
  font-size: 1.15rem; letter-spacing: 0.02em; padding: 0.55rem 0;
}
.drawer .elementor-nav-menu .sub-menu {
  position: static; opacity: 1; visibility: visible; transform: none;
  background: transparent; border: 0; box-shadow: none;
  padding: 0 0 0.5rem 0.85rem; min-width: 0;
  display: none;
}
.drawer .elementor-nav-menu .menu-item-has-children.is-open > .sub-menu {
  display: grid; gap: 0.15rem;
}
.drawer .elementor-nav-menu .sub-menu .elementor-sub-item {
  color: color-mix(in srgb, var(--white) 78%, transparent);
  font-family: var(--font); font-size: 0.95rem; padding: 0.45rem 0;
}
.drawer .elementor-nav-menu .sub-menu .elementor-sub-item:hover,
.drawer .elementor-nav-menu .sub-menu .elementor-item-active {
  color: var(--gold); background: transparent;
}
.drawer .menu-item-has-children > .elementor-item::after {
  content: " +"; font-family: var(--font); font-size: 0.9rem; margin-left: 0.35rem;
}
.drawer .menu-item-has-children.is-open > .elementor-item::after { content: " −"; }
.drawer-close { position: fixed; top: 1.2rem; right: 1.2rem; color: var(--white); font-weight: 600; z-index: 1; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 1.25rem;
  font-size: 0.9rem; font-weight: 650; border-radius: 2px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(105deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-line {
  border: 1px solid color-mix(in srgb, var(--white) 45%, transparent);
  color: var(--white);
}
.btn-line:hover { border-color: var(--white); background: color-mix(in srgb, var(--white) 8%, transparent); }
.btn-outline { border: 1px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* Typography */
.eyebrow {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.75rem;
}
.h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 650; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white);
}
.h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 650; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 1rem;
}
.lead { color: var(--muted); font-size: 1.02rem; max-width: 58ch; }

/* Page hero */
.page-hero {
  position: relative; min-height: 42vh; display: grid; align-items: end;
  color: var(--white); overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,26,36,0.88) 0%, rgba(10,26,36,0.45) 55%, rgba(10,26,36,0.55) 100%);
}
.page-hero .wrap {
  position: relative; z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
}
.page-hero .h1 { margin-bottom: 0.75rem; max-width: 18ch; }
.page-hero p { color: color-mix(in srgb, var(--white) 78%, transparent); max-width: 48ch; }

/* Kurumsal pages */
.corp-page { background: var(--white); }
.corp-hero {
  position: relative;
  min-height: clamp(220px, 32vh, 320px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.corp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.corp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 26, 36, 0.72) 0%, rgba(10, 26, 36, 0.35) 55%, rgba(10, 26, 36, 0.45) 100%);
}
.corp-hero-bg--solid {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, color-mix(in srgb, var(--navy) 88%, var(--gold-dark)) 100%);
}
.corp-hero-bg--solid::after {
  background: linear-gradient(90deg, rgba(10, 26, 36, 0.35) 0%, rgba(10, 26, 36, 0.15) 100%);
}
.corp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
}
.corp-hero-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.corp-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 7vw, 5rem);
  align-items: start;
}
.corp-layout--single {
  grid-template-columns: minmax(0, 1fr);
}
.corp-sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem;
}
.corp-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.corp-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}
.corp-sidebar-nav a {
  display: block;
  padding: 0.55rem 0.35rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.corp-sidebar-nav a:hover {
  color: var(--navy);
}
.corp-sidebar-nav .is-active a {
  color: var(--navy);
  font-weight: 700;
  border-left-color: var(--gold);
  padding-left: 0.65rem;
}

.corp-content-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.65rem;
}
.corp-content-subtitle {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.45;
  margin: 0 0 1.5rem;
}
.corp-content-body {
  min-width: 0;
}
.corp-content-media {
  float: right;
  width: min(100%, 500px);
  margin: 0 0 1.25rem 1.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
}
.corp-content-media--left {
  float: left;
  margin: 0 1.75rem 1.25rem 0;
}
.corp-content-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.corp-prose {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
  overflow: hidden;
}
.corp-prose p { margin: 0 0 1.1rem; }
.corp-prose strong { color: var(--navy); font-weight: 700; }
.corp-prose a {
  color: var(--gold-dark);
  font-weight: 650;
  text-decoration: none;
}
.corp-prose a:hover { text-decoration: underline; }

.legal-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 7vw, 5rem);
  background: var(--white);
}
.legal-prose {
  max-width: 780px;
}
.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.legal-prose h2:first-of-type {
  margin-top: 1.5rem;
}
.legal-prose ul {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}
.legal-prose li {
  margin-bottom: 0.45rem;
}

.corp-quote {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--navy);
  font-style: italic;
}
.corp-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.corp-signoff {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--navy);
}
.corp-signoff p {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
.corp-signoff p:last-child {
  margin-bottom: 0;
}
.corp-signoff strong {
  font-size: 1.05rem;
}

.corp-mv + .corp-mv {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.corp-mv-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.corp-stats {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
  background: var(--warm);
}

.corp-stats-title {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1.75rem;
}
.corp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.corp-stat {
  text-align: center;
}
.corp-stat-label {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  min-height: 2.6em;
}
.corp-stat-line {
  display: block;
  width: 36px;
  height: 2px;
  margin: 0 auto 0.85rem;
  background: var(--gold-dark);
}
.corp-stat-value {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
}

@media (max-width: 900px) {
  .corp-layout { grid-template-columns: 1fr; }
  .corp-content-media {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem;
  }
  .corp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .corp-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .corp-stats-grid { grid-template-columns: 1fr; }
}

/* Tesislerimiz */
.facilities-showcase {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--white);
}
.facility-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.facility-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 1rem 1.35rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s var(--ease);
}
.facility-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
  transition: background 0.2s var(--ease);
}
.facility-tab:hover { color: var(--navy); }
.facility-tab.is-active {
  color: var(--navy);
}
.facility-tab.is-active::after {
  background: var(--gold-dark);
}
.facility-panel[hidden] { display: none; }
.facility-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.facility-media {
  min-width: 0;
}
.facility-video-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.facility-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.facility-video-poster iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.facility-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 92%, transparent);
  box-shadow: 0 12px 40px rgba(10, 26, 36, 0.22);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.facility-play span {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--navy);
  transform: translateX(3px);
}
.facility-play:hover {
  transform: scale(1.05);
  background: var(--white);
}
.facility-copy {
  padding-top: 0.25rem;
}
.facility-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.facility-heading {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.facility-intro {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
}
.facility-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.facility-specs li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy);
}
.facility-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
}
.facility-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line);
}
.facility-thumb {
  appearance: none;
  border: 2px solid transparent;
  padding: 0;
  width: 112px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), opacity 0.2s var(--ease);
  opacity: 0.72;
}
.facility-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.facility-thumb:hover,
.facility-thumb.is-active {
  opacity: 1;
  border-color: var(--gold-dark);
}
.facility-contact {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 7vw, 5rem);
  background: var(--warm);
}
.facility-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}
.facility-contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.facility-contact-label {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.facility-contact-title {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.facility-contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.facility-contact-list li {
  display: grid;
  gap: 0.2rem;
}
.facility-contact-key {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.facility-contact-list a {
  color: var(--navy);
  text-decoration: none;
}
.facility-contact-list a:hover {
  color: var(--gold-dark);
}
.facility-directions {
  width: 100%;
  justify-content: center;
}
.facility-map {
  min-height: 320px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.facility-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (max-width: 960px) {
  .facility-split,
  .facility-contact-grid {
    grid-template-columns: 1fr;
  }
  .facility-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .facility-tab {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

/* Grup şirketleri — listing */
.grup-affiliates-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 7vw, 5rem);
  background: var(--white);
}
.grup-affiliates-head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.grup-affiliates-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}
.grup-affiliates-list {
  display: grid;
  gap: 0;
}
.grup-affiliate {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.grup-affiliate:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.grup-affiliate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(10, 26, 36, 0.05);
}
.grup-affiliate-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}
.grup-affiliate-copy {
  min-width: 0;
  padding-top: 0.15rem;
}
.grup-affiliate-name {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
}
.grup-affiliate-tagline {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--gold-dark);
}
.grup-affiliate-prose {
  overflow: visible;
}
.grup-affiliate-prose p {
  margin: 0 0 1rem;
}
.grup-affiliate-prose p:last-child {
  margin-bottom: 0;
}
.grup-affiliate-subtitle {
  margin: 1.25rem 0 0.75rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

@media (max-width: 760px) {
  .grup-affiliate {
    grid-template-columns: 1fr;
  }
}

/* Ürünler — listing */
.products-page-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(4rem, 7vw, 5rem);
  background: var(--white);
}
.products-page-lead {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Yatırımcı ilişkileri */
.ir-content-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.ir-content-intro {
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
}
.ir-doc-section + .ir-doc-section,
.ir-doc-list + .ir-doc-section,
.ir-doc-section + .ir-doc-list {
  margin-top: 1.75rem;
}
.ir-doc-section-title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.ir-doc-list {
  border: 1px dashed color-mix(in srgb, var(--navy) 28%, var(--line));
  background: var(--white);
}
.ir-doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.ir-doc-item:last-child {
  border-bottom: 0;
}
.ir-doc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.ir-doc-download {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  white-space: nowrap;
}
.ir-doc-download:hover {
  color: var(--navy);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .ir-doc-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Basında Biz */
.press-page-section {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 7vw, 5rem);
  background: #f3f4f6;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}
.press-card {
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 2px 14px rgba(10, 26, 36, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.press-card:hover {
  box-shadow: 0 8px 24px rgba(10, 26, 36, 0.12);
}
.press-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.press-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e9ecef;
}
.press-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.press-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 1.25rem;
  min-height: 9.5rem;
}
.press-card-title {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #004a5d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.press-card-excerpt {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

@media (max-width: 1180px) {
  .press-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .press-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .press-card-body {
    min-height: 0;
  }
}

.press-detail-section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: var(--white);
}
.press-detail {
  max-width: 820px;
  margin: 0 auto;
}
.press-detail-date {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.press-detail-body img {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin: 1.5rem auto;
}
.press-detail-body p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}
.press-detail-body figure {
  margin: 0 0 1.5rem;
}
.press-detail-back {
  margin: 2rem 0 0;
}
.press-detail-back a {
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
}
.press-detail-back a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* İnsan Kaynakları */
.hr-career-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: var(--white);
}
.hr-career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.hr-career-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hr-career-tagline {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
.hr-career-prose {
  margin-bottom: 1.75rem;
}
.hr-career-prose p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
}
.hr-career-heading {
  margin: 1.5rem 0 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}
.hr-career-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
}
.hr-career-media {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  overflow: hidden;
}
.hr-career-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .hr-career-layout {
    grid-template-columns: 1fr;
  }
  .hr-career-media {
    position: static;
    order: -1;
  }
  .hr-career-media img {
    min-height: 260px;
  }
}

/* Home hero slider */
.home-hero {
  position: relative; min-height: 92svh; height: 92svh; display: grid; align-items: end;
  color: var(--white); overflow: hidden;
}
.home-hero.is-dragging { cursor: grabbing; user-select: none; }
.hero-slider-viewport {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0; cursor: grab; touch-action: none;
  height: 100%; min-height: inherit;
}
.home-hero.is-dragging .hero-slider-viewport { cursor: grabbing; }
.hero-slider-track {
  display: flex; height: 100%; min-height: inherit; width: 100%;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.home-hero.is-dragging .hero-slider-track { transition: none; }
.hero-slide {
  flex: 0 0 100%; width: 100%; height: 100%; min-height: inherit;
  position: relative; overflow: hidden;
  pointer-events: none;
}
.hero-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06);
  transition: transform 8s linear;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.hero-slide.is-active img { transform: scale(1.12); }
.hero-slide video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover; object-position: center;
  transform: translate(-50%, -50%);
  transition: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  background: var(--navy);
}
.hero-slide.is-active video { transform: translate(-50%, -50%); }
.hero-slider-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, rgba(10,26,36,0.82) 0%, rgba(10,26,36,0.35) 50%, rgba(10,26,36,0.55) 100%);
}
.hero-slider-content {
  position: relative; z-index: 3;
  padding: 6rem 0 5.5rem;
  max-width: 720px;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(720px, calc(100% - 2.5rem));
  pointer-events: none;
  cursor: inherit;
}
.hero-slider-content a,
.hero-slider-content button { pointer-events: auto; }
.home-hero .eyebrow { color: var(--gold); }
.home-hero .h1 { margin-bottom: 1rem; }
.home-hero .lead { color: color-mix(in srgb, var(--white) 80%, transparent); margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-slider-controls {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1rem; pointer-events: none;
}
.hero-slider-btn {
  pointer-events: auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--navy) 55%, transparent);
  color: var(--white);
  font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center;
  border: 1px solid color-mix(in srgb, var(--white) 22%, transparent);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.hero-slider-btn:hover {
  background: color-mix(in srgb, var(--navy) 78%, transparent);
  transform: scale(1.05);
}
.hero-slider-dots {
  position: absolute; left: 50%; bottom: 2rem; z-index: 4;
  transform: translateX(-50%);
  display: flex; gap: 0.55rem; align-items: center;
  pointer-events: none;
}
.hero-dot {
  pointer-events: auto;
  width: 10px; height: 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--white) 35%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 45%, transparent);
  transition: width 0.25s, background 0.25s;
}
.hero-dot.is-active {
  width: 28px;
  background: var(--gold);
  border-color: var(--gold);
}

/* Homepage strips — shared rhythm, no dividers */
.home-about,
.home-products-strip,
.home-group-strip {
  position: relative;
  padding: clamp(4.5rem, 8vw, 6rem) 0;
}

.home-about {
  background: var(--white);
  padding-top: clamp(5rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.75rem);
}
.home-about-head {
  text-align: center;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.home-about-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.home-about-tagline {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.65;
  color: var(--muted);
}
.home-about-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.home-about-text {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 1.35vw, 1.02rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
}
.home-about-more {
  display: inline-block;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.home-about-more:hover { color: var(--gold-dark); }
.home-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line);
}
.home-about-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.home-about-stat-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.home-about-stat p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
.home-about-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 38vw, 460px);
  background: var(--navy-2);
}
.home-about-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 38vw, 460px);
  object-fit: cover;
}

@media (max-width: 900px) {
  .home-about-body {
    grid-template-columns: 1fr;
  }
  .home-about-media { order: -1; min-height: 280px; }
  .home-about-media img { min-height: 280px; }
  .home-about-text { max-width: none; }
}

/* Products section — homepage */
.home-products-strip {
  background: var(--warm);
  padding-top: clamp(3.5rem, 6vw, 4.75rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.75rem);
}

.home-section-title {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.home-section-title-text {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.home-section-title .lead {
  margin: 0 auto;
  max-width: 80ch;
  font-size: clamp(0.98rem, 1.5vw, 1.06rem);
  line-height: 1.7;
}

.home-products-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}
a.home-products-mosaic-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  background: var(--navy-2);
  color: inherit;
  text-decoration: none;
}
.home-products-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.home-products-mosaic-item:hover img { transform: scale(1.06); }
.home-products-mosaic-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(10, 26, 36, 0.82));
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 600;
  line-height: 1.25;
}

.home-products-strip-foot {
  display: flex; justify-content: center;
  margin-top: 2rem;
  background: transparent;
}

@media (max-width: 1024px) {
  .home-products-mosaic { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .home-products-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .home-products-mosaic { grid-template-columns: 1fr; }
}

/* Group companies — discover layout */
.home-group-strip {
  background: var(--white);
  padding-top: clamp(3.5rem, 6vw, 4.75rem);
  padding-bottom: clamp(3.5rem, 6vw, 4.75rem);
}

.group-discover {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.group-discover-copy {
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}
.group-discover-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1.15rem;
}
.group-discover-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 42ch;
}
.group-discover-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
}
a.group-discover-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(130px, 16vw, 190px);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: background 0.25s var(--ease);
}
a.group-discover-logo + a.group-discover-logo {
  border-left: 1px solid var(--line);
}
.group-discover-logo img {
  width: auto;
  height: auto;
  max-width: min(200px, 92%);
  max-height: min(120px, 88%);
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}
a.group-discover-logo:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .group-discover {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .group-discover-copy { padding-right: 0; text-align: center; }
  .group-discover-lead { margin-left: auto; margin-right: auto; }
  .group-discover-copy .btn { margin: 0 auto; }
}
@media (max-width: 640px) {
  .group-discover-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  a.group-discover-logo + a.group-discover-logo { border-left: none; }
  a.group-discover-logo:nth-child(odd) { border-right: 1px solid var(--line); }
  a.group-discover-logo:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .group-discover-logos { grid-template-columns: 1fr; }
  a.group-discover-logo:nth-child(odd) { border-right: none; }
  a.group-discover-logo + a.group-discover-logo { border-top: 1px solid var(--line); }
}

/* Homepage — news slider */
.home-news-strip {
  background: var(--warm);
  padding-top: clamp(3.5rem, 6vw, 4.75rem);
  padding-bottom: clamp(5rem, 9vw, 6.5rem);
}

.news-slider {
  position: relative;
  padding: 0 2.75rem;
}
.news-slider-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}
.news-slider.is-dragging .news-slider-viewport {
  cursor: grabbing;
  user-select: none;
}
.news-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.news-slider.is-dragging .news-slider-track { transition: none; }

.news-slider .news-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.news-slider .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 26, 36, 0.1);
}

a.news-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-2);
}
.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
  -webkit-user-drag: none;
}
.news-card:hover .news-card-media img { transform: scale(1.04); }

.news-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-date {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.55rem;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}
.news-card-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.news-card-title a:hover { color: var(--gold-dark); }
.news-card-excerpt {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-card-more {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.news-card-more:hover { color: var(--gold-dark); }

.news-slider-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  z-index: 2;
}
.news-slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-50%) scale(1.05);
}
.news-slider-prev { left: 0; }
.news-slider-next { right: 0; }

@media (max-width: 1024px) {
  .news-slider .news-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 640px) {
  .news-slider { padding: 0 2.25rem; }
  .news-slider .news-card { flex: 0 0 100%; }
}

/* Products slider */
.products-slider {
  position: relative;
  padding: 0 2.75rem;
}
.products-slider-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}
.products-slider.is-dragging .products-slider-viewport {
  cursor: grabbing;
  user-select: none;
}
.products-slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.products-slider.is-dragging .products-slider-track { transition: none; }

.products-slider .product-post {
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 0;
}

.products-slider-btn {
  position: absolute; top: 38%; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line); color: var(--navy);
  font-size: 1.45rem; line-height: 1;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(10, 26, 36, 0.08);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.products-slider-btn:hover {
  background: var(--paper);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
  transform: scale(1.05);
}
.products-slider-prev { left: 0; }
.products-slider-next { right: 0; }

@media (max-width: 1024px) {
  .products-slider .product-post { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 640px) {
  .products-slider { padding: 0 2.25rem; }
  .products-slider .product-post { flex: 0 0 100%; }
}

/* Products grid + cards — shared */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

a.product-post {
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
}
.product-post {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.product-post:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--gold) 55%, var(--line));
  box-shadow: 0 18px 40px rgba(10, 26, 36, 0.1);
}

.product-post-media {
  position: relative; aspect-ratio: 16/11;
  overflow: hidden; background: var(--navy-2);
}
.product-post-media::after {
  content: "";
  position: absolute; inset: auto 0 0; height: 42%;
  background: linear-gradient(180deg, transparent, rgba(10, 26, 36, 0.22));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.product-post:hover .product-post-media::after { opacity: 1; }
.product-post-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s var(--ease);
  pointer-events: none; -webkit-user-drag: none;
}
.product-post:hover .product-post-media img { transform: scale(1.07); }

.product-post-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--navy) 62%, transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.product-post-overlay span {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 1.55rem; font-weight: 300; line-height: 1;
  box-shadow: 0 8px 24px rgba(10, 26, 36, 0.25);
  transform: scale(0.8);
  transition: transform 0.35s var(--ease);
}
.product-post:hover .product-post-overlay { opacity: 1; }
.product-post:hover .product-post-overlay span { transform: scale(1); }

.product-post-body {
  padding: 1.2rem 1.25rem 1.4rem;
  flex: 1; display: flex; flex-direction: column;
  border-top: 3px solid color-mix(in srgb, var(--gold) 35%, transparent);
  transition: border-color 0.35s;
}
.product-post:hover .product-post-body { border-top-color: var(--gold); }

.product-post-title {
  font-size: 1.08rem; font-weight: 700; line-height: 1.3;
  margin-bottom: 0.6rem; letter-spacing: -0.01em; color: var(--navy);
}

.product-post-excerpt {
  font-size: 0.84rem; line-height: 1.6; color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

a.product-post { cursor: pointer; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
}

.home-mosaic-section {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.5rem;
  background: var(--paper);
}
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
  margin: 0 auto;
  position: relative;
  width: min(var(--max), calc(100% - 2.5rem));
}
.mosaic a, .mosaic figure {
  position: relative; overflow: hidden; display: block; background: var(--navy);
}
.mosaic .big { grid-row: 1 / 3; }
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.mosaic a:hover img { transform: scale(1.06); }
.mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(transparent, rgba(10,26,36,0.88));
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 600;
}
.mosaic figcaption small {
  display: block; margin-top: 0.2rem;
  font-family: var(--font); font-size: 0.78rem; font-weight: 500;
  color: color-mix(in srgb, var(--white) 70%, transparent);
}

/* Flow sections */
.flow {
  background: linear-gradient(180deg, var(--white) 0%, #f5f7f9 12%, #eef3f6 35%, #e8eef3 70%, #e3eaef 100%);
}
.section { padding: 5rem 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 2rem; margin-bottom: 2.25rem;
}
.section-head .h2 { margin-bottom: 0; max-width: 16ch; }
.section-head .lead { margin-bottom: 0; }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding: 2rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat strong {
  display: block; font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--navy); margin-bottom: 0.25rem;
}
.stat span { font-size: 0.84rem; color: var(--muted); }

/* Cards */
.card-grid { display: grid; gap: 1rem; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: color-mix(in srgb, var(--white) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--gold) 50%, var(--line)); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.35rem 1.3rem 1.5rem; }
.card-body .tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.45rem;
}
.card-body h3 {
  font-family: var(--display); font-size: 1.2rem; font-weight: 650;
  color: var(--navy); margin-bottom: 0.45rem; line-height: 1.25;
}
.card-body p { font-size: 0.9rem; color: var(--muted); }

.product-tile {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 220px; padding: 1.25rem;
  position: relative; overflow: hidden; color: var(--white);
  background: var(--navy);
}
.product-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55; transition: transform 0.6s, opacity 0.3s;
}
.product-tile:hover img { transform: scale(1.06); opacity: 0.7; }
.product-tile .txt { position: relative; z-index: 1; }
.product-tile h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; }
.product-tile span { font-size: 0.8rem; color: color-mix(in srgb, var(--white) 75%, transparent); }

/* Split */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.split-media { overflow: hidden; min-height: 360px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* Content prose */
.prose { max-width: 72ch; }
.prose p { margin-bottom: 1rem; color: var(--muted); }
.prose p.strong { color: var(--text); font-size: 1.05rem; }
.quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 500; line-height: 1.4;
  color: var(--navy); margin: 1.5rem 0;
}
.quote cite {
  display: block; margin-top: 0.75rem;
  font-family: var(--font); font-size: 0.88rem; font-style: normal; color: var(--muted);
}

/* Lists */
.link-list { display: grid; gap: 0.55rem; }
.link-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.15rem;
  background: color-mix(in srgb, var(--white) 85%, transparent);
  border: 1px solid var(--line); font-weight: 550; color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}
.link-list a:hover {
  border-color: color-mix(in srgb, var(--gold) 50%, var(--line));
  background: var(--white);
}
.link-list a span:last-child { color: var(--gold-dark); }

.fact-list { display: grid; gap: 0.7rem; }
.fact-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.fact-list strong { font-family: var(--display); color: var(--navy); }
.fact-list span { color: var(--muted); text-align: right; }

/* Forms */
.form { display: grid; gap: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form input, .form textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); background: var(--white);
  color: var(--text); border-radius: 2px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--gold) 45%, transparent); border-color: var(--gold);
}

.contact-card {
  background: color-mix(in srgb, var(--white) 85%, transparent);
  border: 1px solid var(--line); padding: 1.25rem 1.3rem;
}
.contact-card strong {
  display: block; font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem;
}

/* Footer */
.site-footer {
  color: color-mix(in srgb, var(--white) 78%, transparent);
  font-size: 0.86rem;
}

.foot-main {
  background: var(--navy);
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(2.25rem, 4vw, 3rem);
}
.foot-columns {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.foot-col {
  padding-left: clamp(1rem, 2vw, 1.75rem);
  border-left: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
}
.foot-col-brand {
  padding-left: 0;
  border-left: none;
}
.foot-brand {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.foot-brand img {
  width: auto;
  height: auto;
  max-width: min(220px, 100%);
  object-fit: contain;
}
.foot-contact {
  margin: 0 0 1rem;
  line-height: 1.65;
  font-size: 0.84rem;
}
.foot-contact p {
  margin: 0 0 0.55rem;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}
.foot-contact-name {
  font-weight: 700;
  color: var(--white) !important;
  margin-bottom: 0.75rem !important;
}
.foot-contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 52%, transparent);
  margin-bottom: 0.15rem;
}
.foot-contact a {
  color: color-mix(in srgb, var(--white) 88%, transparent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.foot-contact a:hover { color: var(--gold); }
.site-footer a {
  color: color-mix(in srgb, var(--white) 88%, transparent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.site-footer a:hover { color: var(--gold); }
.foot-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.foot-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--white) 22%, transparent);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.foot-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.foot-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.site-footer ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer ul a {
  font-size: 0.84rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}
.foot-address {
  margin: 0;
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--white) 55%, transparent);
}

.foot-bar {
  background: #07131b;
  border-top: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
  padding: 0.7rem 0;
  font-size: 0.74rem;
}
.foot-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 2rem;
}
.foot-bar-copy {
  color: color-mix(in srgb, var(--white) 62%, transparent);
  margin-right: 0.25rem;
}
.foot-bar a {
  color: color-mix(in srgb, var(--white) 78%, transparent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.foot-bar a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .foot-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
}

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.on { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .menu { display: none; }
  .burger { display: grid; }
  .elementor-nav-menu .sub-menu { display: none !important; }
}
@media (max-width: 980px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .mosaic .big { grid-row: auto; grid-column: 1 / -1; min-height: 220px; }
  .stats-row, .card-grid.cols-3, .card-grid.cols-4, .card-grid.cols-2,
  .split, .section-head, .foot-columns, .form-row { grid-template-columns: 1fr 1fr; }
  .foot-col-brand { grid-column: 1 / -1; }
  .section-head { align-items: start; }
  .split { grid-template-columns: 1fr; }
  .card[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .wrap, .nav .wrap, .mosaic { width: min(var(--max), calc(100% - 1.5rem)); }
  .stats-row, .card-grid.cols-3, .card-grid.cols-4, .card-grid.cols-2,
  .foot-columns, .form-row, .mosaic { grid-template-columns: 1fr; }
  .foot-col {
    padding-left: 0;
    border-left: none;
    padding-top: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  }
  .foot-col-brand {
    padding-top: 0;
    border-top: none;
    text-align: center;
  }
  .foot-brand { display: block; }
  .foot-social { justify-content: center; }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-page-section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: var(--white);
}
.contact-locations-section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: var(--white);
}
.contact-page-title {
  margin: 0 0 2rem;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
}
.contact-locations-stack {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
.contact-location-row {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}
.contact-location-info {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
}
.contact-location-label {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-location-name {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
.contact-location-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.contact-location-list li {
  display: grid;
  gap: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
.contact-location-key {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
}
.contact-location-list a {
  color: var(--navy);
  text-decoration: none;
}
.contact-location-list a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}
.contact-directions {
  width: 100%;
  justify-content: center;
}
.contact-location-map {
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.contact-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

@media (max-width: 960px) {
  .contact-location-row {
    grid-template-columns: 1fr;
  }
  .contact-location-map {
    min-height: 240px;
  }
  .contact-location-map iframe {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-slider-btn { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide img, .hero-slide video { transform: none; }
  .hero-slider-track { transition: none; }
}
