:root {
  --ink: #262626;
  --ink-strong: #0d0d0d;
  --ink-soft: #455559;
  --muted: #455559;
  --line: rgba(166, 143, 114, 0.28);
  --paper: #f2f1e9;
  --white: #ffffff;
  --sand: #a68f72;
  --sand-soft: #d8d1c6;
  --olive: #567362;
  --mint: #a4bfa8;
  --steel: #c7d2d9;
  --navy: #043259;
  --shadow: 0 24px 70px rgba(13, 13, 13, 0.14);
  --max: 1240px;
  --nav-height: 92px;
  color-scheme: light;
}

@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../../fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Gotham", Arial, sans-serif;
}

body {
  margin: 0;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

* {
  font-family: inherit;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.top-strip {
  position: relative;
  z-index: 30;
  height: 42px;
  background: var(--ink-strong);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.top-strip__inner,
.nav__inner,
.section__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.top-strip__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.top-message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 700;
  white-space: nowrap;
}

.top-message::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(166, 143, 114, 0.18);
}

.top-links {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  white-space: nowrap;
}

.top-links > a {
  transition: color 180ms ease;
}

.top-links > a:hover {
  color: var(--white);
}

.socials {
  height: 100%;
  min-width: 164px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.socials a {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.socials i {
  font-size: 14px;
  line-height: 1;
}

.icon-button i,
.menu-toggle i,
.btn i,
.step__icon i {
  font-size: 18px;
  line-height: 1;
}

.language-pill {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.language-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.language-pill img {
  width: 24px;
  height: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(13, 13, 13, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 210px 1fr 230px;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 146px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.icon-button,
.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
  background: var(--paper);
}

.contact-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--ink-strong);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  background: var(--sand);
  border-color: var(--sand);
}

.phone {
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.15;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.phone strong {
  font-size: 15px;
  color: var(--ink-strong);
  line-height: 1.1;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - 28px);
  display: grid;
  align-items: stretch;
  background: var(--white);
  overflow: clip;
}

.hero__media {
  position: relative;
  width: 100%;
  min-height: 720px;
  margin: 0;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink-strong);
  box-shadow: var(--shadow);
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.04);
  transform: scale(1.05);
  animation: heroZoom 11s ease-out forwards;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.42)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.22));
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 52px 28px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 9px;
  background: var(--white);
  transform: translateX(-50%);
  animation: cue 1.7s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: clip;
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--ink-strong);
  color: var(--white);
}

.section--wash {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.section__kicker {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section__kicker::before {
  content: "";
  width: 70px;
  height: 1px;
  background: currentColor;
}

.section-title {
  margin-bottom: 28px;
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 760px;
  font-size: 20px;
  color: var(--ink-soft);
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.intro-copy {
  position: relative;
  z-index: 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 128px;
  padding: 24px 22px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: 34px;
  line-height: 1;
}

.stat span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.photo-stack {
  position: relative;
  min-height: 620px;
}

.photo-stack__main,
.photo-stack__small {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--steel);
}

.photo-stack__main {
  inset: 0 16% 12% 0;
}

.photo-stack__small {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 0.88;
  border: 12px solid var(--white);
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.photo-stack:hover img {
  transform: scale(1.045);
}

.watermark {
  position: absolute;
  pointer-events: none;
  height: auto;
  opacity: 0.12;
}

.intro-watermark {
  right: -200px;
  bottom: -50px;
  width: 700px;
}

.systems {
  --active-index: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.systems::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: calc(100% / 3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(166, 143, 114, 0.12);
  opacity: 0;
  transform: translateX(calc(var(--active-index) * 100%));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.systems.is-hovered::before {
  opacity: 1;
}

.system {
  position: relative;
  z-index: 1;
  min-height: 286px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease;
}

.system:hover {
  transform: translateY(-6px);
}

.system__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--sand);
  font-weight: 800;
}

.system h3 {
  margin-bottom: 14px;
  font-size: 23px;
  letter-spacing: 0;
}

.system p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.dark-texture {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.process-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--steel);
}

.process-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.process-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  min-width: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border-left: 4px solid var(--sand);
  box-shadow: 0 18px 48px rgba(13, 13, 13, 0.16);
}

.process-badge strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.process-badge span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--sand);
}

.step h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: rgba(38, 38, 38, 0.11);
  font-size: 78px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  min-width: 100%;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 26px 18px;
}

.marquee .separator {
  color: var(--sand);
}

.sustain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: var(--white);
}

.sustain__image {
  position: relative;
  overflow: hidden;
  background: var(--sand-soft);
}

.sustain__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.sustain__content {
  position: relative;
  display: grid;
  align-content: center;
  padding: 72px max(48px, calc((100vw - var(--max)) / 2)) 72px 72px;
  overflow: hidden;
}

.sustain .watermark {
  right: -170px;
  bottom: -120px;
  width: 620px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.pill {
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.packaging {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 62px;
}

.packaging__visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.packaging__visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-position: center;
}

.packaging__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(242, 241, 233, 0.92), rgba(242, 241, 233, 0));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature {
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.feature strong {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.feature span {
  color: var(--muted);
  font-size: 14px;
}

.blog-shell {
  position: relative;
  overflow: hidden;
}

.blog-shell::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -52px;
  width: 560px;
  height: 180px;
  background: url("../../images/logo/maya-line.svg") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.blog-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.blog-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.blog-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(69, 85, 89, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(13, 13, 13, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 143, 114, 0.46);
  box-shadow: 0 26px 70px rgba(13, 13, 13, 0.12);
}

.blog-card__image {
  height: 240px;
  overflow: hidden;
  background: var(--smoke);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.blog-card__meta {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(166, 143, 114, 0.34);
  color: var(--navy);
  background: rgba(242, 241, 233, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-size: 23px;
  line-height: 1.22;
}

.blog-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.blog-card__link {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__link i {
  color: var(--sand);
  transition: transform 180ms ease;
}

.blog-card__link:hover i {
  transform: translateX(4px);
}

.contact-band {
  position: relative;
  padding: 88px 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://img.freepik.com/free-photo/catering-buffet_74190-355.jpg?q=80&w=1480");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(1);
}

.contact-band__inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.18;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--sand);
  border-color: var(--sand);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.38);
  background: var(--white);
  color: var(--ink);
}

.btn--light:hover {
  color: var(--white);
}

.btn-block-mt16 {
  width: 100%;
  margin-top: 16px;
}

.footer {
  padding: 54px 0;
  background: var(--white);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.footer__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer .brand {
  width: 122px;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 190ms;
}

.delay-3 {
  transition-delay: 280ms;
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes cue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .nav__inner {
    grid-template-columns: 170px 1fr auto;
  }

  .main-nav {
    gap: 20px;
    font-size: 13px;
  }

  .phone {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  .intro-grid,
  .process-grid,
  .packaging {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: 560px;
  }

  .sustain {
    grid-template-columns: 1fr;
  }

  .sustain__image {
    min-height: 420px;
  }

  .sustain__content {
    padding: 72px 48px;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 76px;
  }

  .top-strip {
    height: 38px;
  }

  .top-message {
    font-size: 11px;
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-links > a,
  .socials {
    display: none;
  }

  .top-links {
    gap: 10px;
  }

  .top-strip__inner,
  .nav__inner,
  .section__inner,
  .contact-band__inner,
  .footer__inner {
    width: min(100% - 32px, var(--max));
  }

  .nav__inner {
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    width: 118px;
  }

  .brand img {
    width: 118px;
  }

  .main-nav {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(13, 13, 13, 0.1);
    transform: translateY(-120%);
    transition: transform 260ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    width: 100%;
    min-height: 660px;
    margin-bottom: 0;
    box-shadow: none;
  }

  .hero__media img {
    object-position: center;
  }

  .hero__content {
    padding: 42px 18px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
  }

  h1 {
    font-size: 38px;
  }

  .section {
    padding: 78px 0;
  }

  .section-title {
    font-size: 35px;
  }

  .lead {
    font-size: 17px;
  }

  .stats,
  .systems,
  .blog-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .photo-stack {
    min-height: 500px;
  }

  .systems {
    background: transparent;
  }

  .systems::before {
    width: 100%;
    height: calc(100% / 3);
    transform: translateY(calc(var(--active-index) * 100%));
  }

  .system {
    min-height: auto;
  }

  .process-media,
  .process-media img,
  .packaging__visual,
  .packaging__visual img {
    min-height: 420px;
  }

  .step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .marquee {
    font-size: 42px;
  }

  .contact-band__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .contact-band h2 {
    font-size: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    gap: 8px;
  }

  .icon-button,
  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 32px;
  }

  .hero__media {
    min-height: 610px;
  }

  .section-title {
    font-size: 30px;
  }

  .blog-card__image {
    height: 210px;
  }

  .photo-stack {
    min-height: 420px;
  }

  .photo-stack__main {
    inset: 0 0 22% 0;
  }

  .photo-stack__small {
    width: 66%;
  }

  .sustain__content {
    padding: 64px 24px;
  }

  .process-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Sağ Orta Sabit Buton */
.sticky-quote-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 90;
  background: var(--ink-strong);
  color: var(--white);
  border: none;
  padding: 24px 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 180ms ease, padding-right 180ms ease;
  box-shadow: -4px 0 15px rgba(13, 13, 13, 0.14);
}

.sticky-quote-btn:hover {
  background: var(--sand);
  padding-right: 18px;
}

/* Sağdan Açılan Form Paneli */
.quote-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--white);
  z-index: 100;
  box-shadow: -10px 0 40px rgba(13, 13, 13, 0.1);
  transition: right 300ms ease;
  display: flex;
  flex-direction: column;
}

.quote-sidebar.is-open {
  right: 0;
}

.quote-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.quote-sidebar-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-strong);
}

.quote-close-btn {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: color 180ms ease;
  padding: 0;
}

.quote-close-btn:hover {
  color: var(--ink-strong);
}

.quote-sidebar-content {
  padding: 40px;
  overflow-y: auto;
}

/* Arka Plan Karartması (Overlay) */
.quote-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(4px);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.quote-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 560px) {
  .quote-sidebar-content { padding: 24px; }
  .quote-sidebar-header { padding: 24px; }
  .sticky-quote-btn { padding: 16px 8px; font-size: 13px; }
}

/* --- TEMEL FORM ELEMANLARI --- */
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  color: var(--ink-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
  box-sizing: border-box;
}

.field textarea {
  min-height: 138px;
  padding-top: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sand);
  background: var(--white);
}

.field input.input-invalid,
.field select.input-invalid,
.field textarea.input-invalid {
  border-color: #b3261e;
}

.quote-input-error {
  margin-top: 2px;
  color: #b3261e;
  font-size: 12px;
  font-weight: 700;
}

.quote-recaptcha {
  margin: 4px 0 18px;
}

.quote-form-error {
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(179, 38, 30, 0.3);
  background: rgba(179, 38, 30, 0.08);
  color: #b3261e;
  font-size: 13px;
  font-weight: 700;
}

.quote-form-success {
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(86, 115, 98, 0.32);
  background: rgba(86, 115, 98, 0.1);
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
}

/* Alt Menü Kapsayıcı */
.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

/* Alt Menü Kutusu (Başlangıçta Gizli) */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(13, 13, 13, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  border-radius: 4px;
}

/* Alt Menü Linkleri */
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a:hover {
  background: var(--paper);
  color: var(--ink);
  padding-left: 26px;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

@media (max-width: 860px) {
  .has-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--sand);
    margin-left: 10px;
    padding: 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
    width: 100%;
  }
  .has-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* --- İç sayfa hero'su (biz-kimiz, ne-yapiyoruz, sürdürülebilirlik, kariyer, iletişim vb.) --- */
.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-strong);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.78), rgba(13, 13, 13, 0.28) 58%, rgba(13, 13, 13, 0.5)),
    linear-gradient(0deg, rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.04) 58%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 76px;
  z-index: 2;
  width: 560px;
  height: 180px;
  background: url("../../images/logo/maya-line.svg") center / contain no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 13, 13, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb i {
  color: var(--sand);
  font-size: 9px;
}

.page-hero__lead {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.7;
}

/* --- Hakkımızda / hikaye bloğu --- */
.story-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}

.story-copy {
  position: relative;
  z-index: 1;
}

.story-copy p:not(.section__kicker):not(.lead) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.story-visual {
  position: relative;
  min-height: 620px;
}

.story-visual__main,
.story-visual__small {
  position: absolute;
  overflow: hidden;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.story-visual__main {
  inset: 0 16% 12% 0;
}

.story-visual__small {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 0.88;
  border: 12px solid var(--white);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.story-visual:hover img {
  transform: scale(1.045);
}

.line-watermark {
  position: absolute;
  right: -200px;
  bottom: -50px;
  width: 700px;
  opacity: 0.08;
  pointer-events: none;
}

/* --- Koyu bant içi istatistikler --- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.stats-band .stat {
  padding: 38px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-band .stat:last-child {
  border-right: 0;
}

.stats-band .stat strong {
  display: block;
  color: var(--sand);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 800;
}

.stats-band .stat span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

/* --- Zaman çizelgesi --- */
.timeline {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline__item {
  position: relative;
  padding: 34px 26px 0 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(166, 143, 114, 0.14);
}

.timeline__item strong {
  display: block;
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 800;
}

.timeline__item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* --- İlke kartları (koyu bölüm) --- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.principle {
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.principle:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(166, 143, 114, 0.42);
}

.principle i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: var(--sand);
  color: var(--ink-strong);
  font-size: 22px;
}

.principle h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.22;
}

.principle p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.74;
}

/* --- Operasyon / "Neden Maya" bloğu --- */
.operation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
}

.operation-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.operation-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.check-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.check-item i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

.check-item h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.check-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

/* --- Yönetim kadrosu kartları --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 54px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.team-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 260px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__image i {
  font-size: 80px;
  color: var(--steel);
  transition: transform 400ms ease, color 400ms ease;
}

.team-card:hover .team-card__image i {
  transform: scale(1.1);
  color: var(--sand);
}

.team-card__content {
  padding: 34px 28px;
  flex-grow: 1;
}

.team-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-strong);
  margin-bottom: 6px;
}

.team-card span {
  display: block;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.team-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 1120px) {
  .stats-band .stat {
    padding: 30px 20px;
  }

  .stats-band .stat strong {
    font-size: 42px;
  }

  .stats-band .stat span {
    font-size: 13px;
  }

  .story-grid,
  .operation-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 560px;
  }

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

@media (max-width: 860px) {
  .page-hero {
    min-height: 520px;
  }

  .page-hero__inner {
    width: min(100% - 32px, var(--max));
    padding-bottom: 56px;
  }

  .breadcrumb {
    margin-bottom: 14px;
  }

  .page-hero::after {
    width: 420px;
    right: -210px;
  }

  .page-hero__lead {
    font-size: 17px;
  }

  .stats-band,
  .timeline,
  .principles {
    grid-template-columns: 1fr;
  }

  .stats-band .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stats-band .stat:last-child {
    border-bottom: 0;
  }

  .timeline {
    gap: 28px;
    border-top: 0;
  }

  .timeline__item {
    padding: 0 0 0 28px;
  }

  .timeline__item::before {
    top: 8px;
  }

  .story-visual {
    min-height: 500px;
  }

  .operation-media,
  .operation-media img {
    min-height: 420px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card__image {
    max-height: 220px;
  }
}

@media (max-width: 560px) {
  .story-visual {
    min-height: 420px;
  }

  .story-visual__main {
    inset: 0 0 22% 0;
  }

  .story-visual__small {
    width: 66%;
  }

  .principle,
  .stats-band .stat {
    padding: 28px;
  }

  .check-item {
    grid-template-columns: 1fr;
  }
}

/* --- Ne Yapıyoruz: tanıtım görseli, hizmet/akış kartları, sektör panelleri --- */
.intro-visual {
  position: relative;
  min-height: 600px;
}

.intro-visual__main,
.intro-visual__small {
  position: absolute;
  overflow: hidden;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.intro-visual__main {
  inset: 0 16% 12% 0;
}

.intro-visual__small {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 0.88;
  border: 12px solid var(--white);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.intro-visual:hover img {
  transform: scale(1.045);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.service-card {
  min-height: 330px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.service-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: var(--sand);
  color: var(--ink-strong);
  font-size: 22px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.24;
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.flow-step {
  position: relative;
  padding: 34px 24px 0 0;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(166, 143, 114, 0.14);
}

.flow-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.flow-step h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.24;
}

.flow-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 62px;
  align-items: center;
}

.quality-media {
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--steel);
}

.quality-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.sector {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.sector img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  transition: transform 600ms ease, opacity 220ms ease;
}

.sector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.82), rgba(13, 13, 13, 0.08));
}

.sector:hover img {
  transform: scale(1.06);
  opacity: 0.72;
}

.sector__content {
  position: relative;
  z-index: 1;
}

.sector h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.sector p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.68;
}

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

  .intro-visual {
    min-height: 560px;
  }

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

  .flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }
}

@media (max-width: 860px) {
  .service-grid,
  .flow,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .flow {
    gap: 28px;
    border-top: 0;
  }

  .flow-step {
    padding: 0 0 0 28px;
  }

  .flow-step::before {
    top: 8px;
  }

  .intro-visual {
    min-height: 500px;
  }

  .quality-media,
  .quality-media img {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .intro-visual {
    min-height: 420px;
  }

  .intro-visual__main {
    inset: 0 0 22% 0;
  }

  .intro-visual__small {
    width: 66%;
  }

  .service-card {
    padding: 28px;
  }
}

/* --- Sürdürülebilirlik: yaklaşım/döngü/etki/taahhüt blokları --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.pillar {
  min-height: 320px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 220ms ease, background 220ms ease;
}

.pillar:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.pillar i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  background: var(--sand);
  color: var(--ink-strong);
  font-size: 22px;
}

.pillar h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.24;
}

.pillar p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.cycle {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.cycle-step {
  position: relative;
  padding: 34px 24px 0 0;
}

.cycle-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(166, 143, 114, 0.14);
}

.cycle-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cycle-step h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.24;
}

.cycle-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 62px;
  align-items: center;
}

.impact-media {
  min-height: 560px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--steel);
}

.impact-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.metric {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--olive);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.commitment {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
}

.commitment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  transition: transform 600ms ease, opacity 220ms ease;
}

.commitment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.84), rgba(13, 13, 13, 0.08));
}

.commitment:hover img {
  transform: scale(1.06);
  opacity: 0.72;
}

.commitment__content {
  position: relative;
  z-index: 1;
}

.commitment h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.commitment p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.68;
}

@media (max-width: 1120px) {
  .split-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

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

  .cycle {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }
}

@media (max-width: 860px) {
  .pillars,
  .cycle,
  .metric-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .cycle {
    gap: 28px;
    border-top: 0;
  }

  .cycle-step {
    padding: 0 0 0 28px;
  }

  .cycle-step::before {
    top: 8px;
  }

  .impact-media,
  .impact-media img {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .pillar,
  .metric {
    padding: 28px;
  }
}

/* --- Kariyer: başvuru bölümü ve form --- */
.application-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: start;
}

.application-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.application-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.application-item i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

.application-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.application-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.form-shell {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.file-field {
  padding: 18px;
  border: 1px dashed rgba(166, 143, 114, 0.65);
  background: rgba(242, 241, 233, 0.5);
}

.file-field input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

@media (max-width: 860px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- İnsan Kaynakları: kültür bloğu ve açık pozisyon kartları --- */
.career-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.career-copy {
  position: relative;
  z-index: 1;
}

.career-copy p:not(.section__kicker):not(.lead) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.career-copy h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink-strong);
  font-size: 24px;
}

.career-visual {
  position: relative;
  min-height: 620px;
}

.career-visual__main,
.career-visual__small {
  position: absolute;
  overflow: hidden;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.career-visual__main {
  inset: 0 16% 12% 0;
}

.career-visual__small {
  right: 0;
  bottom: 0;
  width: 54%;
  aspect-ratio: 0.88;
  border: 12px solid var(--white);
}

.career-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.career-visual:hover img {
  transform: scale(1.045);
}

.openings-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  margin-bottom: 20px;
}

.openings-note {
  max-width: 320px;
  padding: 22px;
  border-left: 4px solid var(--sand);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.openings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.opening-card {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(13, 13, 13, 0.06);
  transition: transform 220ms ease, border-color 220ms ease;
}

.opening-card:hover {
  transform: translateY(-6px);
  border-color: rgba(166, 143, 114, 0.55);
}

.opening-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.opening-card__tag {
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opening-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
}

.opening-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.22;
}

.opening-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.opening-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.opening-card__meta span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.btn-block-mt24 {
  width: 100%;
  margin-top: 24px;
}

.icon-reset-ml8 {
  background: transparent;
  width: auto;
  height: auto;
  margin-left: 8px;
}

@media (max-width: 1120px) {
  .career-intro {
    grid-template-columns: 1fr;
  }

  .career-visual {
    min-height: 560px;
    margin-top: 40px;
  }

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

@media (max-width: 860px) {
  .openings-head,
  .openings-grid {
    grid-template-columns: 1fr;
  }

  .career-visual {
    min-height: 400px;
  }
}

/* --- İletişim: bilgi kartları, harita ve talep formu --- */
.contact-overview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(13, 13, 13, 0.06);
  transition: transform 220ms ease, border-color 220ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 143, 114, 0.55);
}

.contact-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-strong);
  color: var(--white);
  font-size: 20px;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-strong);
  font-size: 21px;
  line-height: 1.25;
}

.contact-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.contact-photo {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.contact-photo iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: start;
}

@media (max-width: 1120px) {
  .contact-overview,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-photo,
  .contact-photo iframe {
    min-height: 420px;
  }
}

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