:root {
  --hazel: #993500;
  --hazel-deep: #6e2600;
  --hazel-soft: #c45a22;
  --ink: #160a06;
  --ink-2: #3a2216;
  --cream: #f6efe6;
  --paper: #fbf7f1;
  --white: #fffdf9;
  --gold: #c9a36a;
  --shell: #d8c2a4;
  --moss: #44553b;
  --line: rgba(153, 53, 0, 0.16);
  --shadow: 0 24px 60px rgba(22, 10, 6, 0.18);
  --radius: 22px;
  --header: 120px;
  --page-hero: 480px;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Oswald", "Arial Narrow", sans-serif;
  --sans: var(--font-body);
  --serif: var(--font-heading);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; }
::selection { background: var(--hazel); color: #fff; }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; z-index: 100; background: #fff; padding: 8px 12px; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  transition: .25s ease;
}
.btn-solid {
  background: var(--hazel);
  color: #fff;
}
.btn-solid:hover { background: var(--hazel-deep); transform: translateY(-1px); }
.btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
}
.btn-ghost:hover { background: #fff; color: var(--hazel); }
.btn-line {
  border-color: var(--hazel);
  color: var(--hazel);
  background: transparent;
}
.btn-line:hover { background: var(--hazel); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--hazel);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
}

h1, h2, h3, .display {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}
.display {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.6rem; }
.lead { font-size: 1.12rem; color: var(--ink-2); max-width: 62ch; }

.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header);
  display: flex; align-items: center;
  transition: .3s ease;
  overflow: visible;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(251, 247, 241, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .logo,
.site-header.is-solid .logo {
  color: var(--ink);
}
.site-header.is-scrolled .nav a,
.site-header.is-solid .nav a,
.site-header.is-scrolled .drop > button,
.site-header.is-solid .drop > button,
.site-header.is-scrolled .lang a,
.site-header.is-solid .lang a,
.site-header.is-scrolled .menu-toggle,
.site-header.is-solid .menu-toggle { color: var(--ink); }
.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.header-inner .logo {
  padding-top: 25px;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  color: #fff;
  padding: 0;
  border-radius: 0;
}
.logo-mark {
  display: block;
  height: 140px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}
.site-footer .logo {
  padding-top: 0;
  justify-self: start;
  margin-bottom: 14px;
}
.site-footer .logo-mark {
  height: 72px;
  max-width: 88px;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }
.nav-extra { display: none; }
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.nav a, .drop > button {
  color: #fff;
  background: none;
  border: 0;
  padding: 10px 12px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a:hover, .drop > button:hover, .drop > button.is-on { color: var(--gold); }
.nav a.is-on {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--gold);
}
.drop { position: relative; }
.drop-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 16px;
  display: none;
  box-shadow: var(--shadow);
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: grid; }
.drop-menu a {
  color: var(--ink) !important;
  padding: 10px 12px;
  border-radius: 10px;
}
.drop-menu a:hover { background: var(--cream); color: var(--hazel) !important; }

.header-tools { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; gap: 8px; color: #fff; font-size: 12px; letter-spacing: .14em; }
.lang a.is-on { color: var(--gold); }
.menu-toggle {
  display: none;
  position: relative;
  z-index: 80;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}
.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .45s cubic-bezier(.22,1,.36,1), top .45s cubic-bezier(.22,1,.36,1), opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.menu-overlay { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink) center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 10, 6, .72) 0%, rgba(153, 53, 0, .32) 46%, rgba(22, 10, 6, .18) 100%),
    linear-gradient(180deg, rgba(22, 10, 6, .18) 0%, rgba(22, 10, 6, .45) 100%);
}
.hero-media {
  position: absolute; inset: 0;
  background: url("../img/banner.webp") center/cover no-repeat;
  transform: scale(1.04);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: scale(1.04) translateY(0); } to { transform: scale(1.08) translateY(-12px); } }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header) + 12px) 0 48px;
  text-shadow: 0 8px 28px rgba(22, 10, 6, .45);
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { max-width: 14ch; }
.hero p { max-width: 52ch; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-scroll {
  position: absolute; right: 36px; bottom: 36px; z-index: 2;
  writing-mode: vertical-rl;
  letter-spacing: .28em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.marquee {
  position: relative;
  background: var(--hazel);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid rgba(255,255,255,.1);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/hazelnut-pattern.svg");
  background-size: 160px;
  opacity: .12;
  pointer-events: none;
}
.marquee-track {
  position: relative;
  z-index: 1;
  display: flex; gap: 42px; width: max-content;
  animation: slide 28s linear infinite;
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  white-space: nowrap;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

section { padding: 100px 0; }
.section-head { margin-bottom: 42px; max-width: 720px; }
.section-head p { color: var(--ink-2); }

.stats {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 48px 0;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/hazelnut-pattern.svg");
  background-size: 220px;
  opacity: .09;
  filter: invert(1) sepia(1) saturate(0) brightness(1.6);
  pointer-events: none;
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 28px 12px;
  border: 0;
  background: transparent;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(201, 163, 106, .22);
}
.stat::before {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--gold);
  border-radius: 50% 50% 46% 46% / 40% 40% 60% 60%;
  box-shadow: 0 -4px 0 -2px var(--gold);
  opacity: .75;
}
.stat b {
  display: block;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .72;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.split > img, .split > .frame, .frame {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}
.frame {
  background: center/cover no-repeat;
  position: relative;
}
.frame.harvest, .media.harvest { background-image: url("../img/banner.webp"); }
.frame.kernels, .media.kernels { background-image: url("https://images.unsplash.com/photo-1543208080-507e66f42902?auto=format&fit=crop&w=1400&q=80"); }
.frame.factory, .media.factory { background-image: url("../img/fabrika/fabrika-1.jpg"); }
.frame.lab, .media.lab { background-image: url("../img/kalite/laboratuvar.jpg"); }
.frame.forest, .media.forest { background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1400&q=80"); }
.frame.chocolate, .media.chocolate { background-image: url("https://images.unsplash.com/photo-1481391319762-47dff72954d9?auto=format&fit=crop&w=1400&q=80"); }
.frame.paste, .media.paste { background-image: url("https://images.unsplash.com/photo-1628088062854-d1870b4553da?auto=format&fit=crop&w=1400&q=80"); }
.frame.hands, .media.hands { background-image: url("../img/hakkimizda.jpeg"); }

.principles { display: grid; gap: 18px; margin-top: 28px; }
.principle {
  display: grid; grid-template-columns: 72px 1fr; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.principle b { font-family: var(--serif); font-size: 28px; color: var(--hazel); }

.manifesto {
  position: relative;
  overflow: hidden;
  background: #f7f0e6;
}
.manifesto::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: url("../img/hazelnut-pattern.svg");
  background-size: 240px;
  opacity: .14;
  pointer-events: none;
}
.manifesto .wrap { position: relative; z-index: 1; }
.photo-frame {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(153, 53, 0, .12);
}
.photo-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.anatomy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf9, #f3e7d8);
}
.anatomy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hazelnut-pattern.svg");
  background-size: 260px;
  opacity: .1;
  pointer-events: none;
}
.anatomy .wrap { position: relative; z-index: 1; }
.anatomy-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.nut-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.nut-svg { width: min(100%, 420px); margin: 0 auto 18px; }
.facts { display: grid; gap: 14px; }
.fact {
  background: rgba(153,53,0,.06);
  border-radius: 18px;
  padding: 18px 20px;
}
.fact strong { display: block; font-family: var(--serif); font-size: 22px; color: var(--hazel); }

.cards-4, .cards-3, .cards-2 {
  display: grid; gap: 18px;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
  transition: .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .media { height: 210px; background: center/cover no-repeat; }
.card .body { padding: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); margin: 0; font-size: .95rem; }
.card .meta { margin-top: 14px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--hazel); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  scroll-margin-top: 110px;
}
.product:nth-child(even) .shot { order: 2; }
.product .shot {
  background: center/cover no-repeat;
  min-height: 360px;
}
.product .copy { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.product h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin: 0 0 8px;
}
.product dl { display: grid; gap: 14px; margin: 18px 0 0; }
.product dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--hazel); }
.product dd { margin: 4px 0 0; color: var(--ink-2); font-size: .95rem; }

.lines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.line {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  min-height: 150px;
}
.line span { display: block; color: var(--gold); font-family: var(--serif); font-size: 28px; margin-bottom: 12px; }

.plant { padding: 40px 0 56px; }
.plant-visual img { width: 100%; height: 380px; object-fit: cover; border-radius: 24px; display: block; }
.plant-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.plant-thumbs img {
  height: 110px;
  border-radius: 14px;
}
.plant-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin: 24px 0 28px;
}
.plant-facts b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--hazel);
  letter-spacing: .04em;
}
.plant-facts span {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.plant-lines { margin-top: 36px; }

.page-hero,
.page-hero.products,
.page-hero.factory,
.page-hero.quality,
.page-hero.projects,
.page-hero.contact,
.about-hero,
.plant-hero {
  height: var(--page-hero);
  min-height: var(--page-hero);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header) + 8px) 0 40px;
  overflow: hidden;
  color: #fff;
  box-sizing: border-box;
}
.page-hero {
  background:
    linear-gradient(180deg, rgba(153, 53, 0, .48), rgba(22, 10, 6, .76)),
    url("../img/banner.webp") center/cover no-repeat;
}
.page-hero h1,
.about-hero h1,
.plant-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 18ch;
}
.page-hero p { max-width: 62ch; color: rgba(255,255,255,.82); margin: 12px 0 0; }
.page-hero.factory {
  background-image:
    linear-gradient(180deg, rgba(153, 53, 0, .48), rgba(22, 10, 6, .76)),
    url("../img/fabrika/fabrika-1.jpg");
}
.page-hero.quality {
  background-image:
    linear-gradient(180deg, rgba(153, 53, 0, .48), rgba(22, 10, 6, .76)),
    url("../img/4bc0a1_dc41442cb1c44baa97e5d982066aedb0~mv2.avif");
}
.page-hero.factory p,
.page-hero.quality p,
.page-hero.projects p { max-width: 68ch; }
.project-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.project-art img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
}
.project-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.project-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.project-mark {
  display: grid;
  place-items: center;
  min-height: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.project-mark img { max-width: 220px; width: 100%; }

.quality-shot {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 24px;
}
.certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.certs figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 16px 16px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.certs img {
  max-height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.certs figcaption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.lab-units { margin-top: 36px; }
.lab-note { margin-top: 28px; }

.factory-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.factory-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
}
.factory-gallery img:first-child {
  grid-row: 1 / 3;
  height: 100%;
}

.plant-hero {
  position: relative;
}
.plant-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 10, 6, .25) 0%, rgba(22, 10, 6, .78) 100%),
    url("../img/4bc0a1_dccfc3c9582e441b8d77b7bdf4ef5d7a~mv2.avif") center/cover no-repeat;
}
.plant-hero-copy {
  position: relative;
  z-index: 1;
}
.plant-hero p {
  max-width: 62ch;
  margin: 12px 0 0;
  color: rgba(246, 239, 230, .88);
}
.plant-shots { padding-top: 28px; padding-bottom: 20px; }
.plant-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.plant-mosaic img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}
.plant-mosaic img:first-child {
  grid-row: 1 / 3;
  height: 100%;
}
.plant-lines-sec { background: var(--white); }
.plant-line-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  counter-reset: none;
}
.plant-line-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-family: var(--font-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 1.02rem;
}
.plant-line-list span {
  font-family: var(--font-heading);
  color: var(--hazel);
  font-size: 1.15rem;
}
.plant-stores { background: var(--paper); }
.plant-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.plant-store {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.plant-store img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.plant-store div { padding: 28px; }
.plant-store b {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--hazel);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 10px;
}
.plant-store h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}
.plant-store p {
  margin: 0;
  color: var(--ink-2);
}

.about-hero {
  position: relative;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 10, 6, .28) 0%, rgba(22, 10, 6, .78) 100%),
    url("../img/4bc0a1_dccfc3c9582e441b8d77b7bdf4ef5d7a~mv2.avif") center/cover no-repeat;
}
.about-hero-copy {
  position: relative;
  z-index: 1;
}
.about-hero p {
  max-width: 48ch;
  margin: 12px 0 0;
  color: rgba(246, 239, 230, .88);
}
.about-story { background: var(--paper); padding-bottom: 40px; }
.about-intro {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-intro h2 { margin: 0 0 16px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.about-intro p {
  margin: 0 0 28px;
  color: var(--ink-2);
  max-width: 52ch;
}
.about-intro .photo-frame,
.about-intro .photo-frame img {
  height: 460px;
  min-height: 460px;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-pillars article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
}
.about-pillars b {
  display: block;
  font-family: var(--font-heading);
  color: var(--hazel);
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.about-pillars h3 {
  font-size: 1rem;
  margin: 0;
}
.about-history {
  background: var(--ink);
  color: rgba(246, 239, 230, .86);
  padding: 72px 0;
}
.about-history-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.about-history-num {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: .85;
  color: var(--gold);
  letter-spacing: .04em;
}
.about-history h2 {
  color: #fff;
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.about-history p {
  margin: 0;
  max-width: 58ch;
  font-size: 1.05rem;
}
.about-nuts { background: var(--white); }
.about-nuts h2 {
  margin: 0 0 28px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.about-nuts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.about-nuts-grid p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.75;
}

.about-principles {
  display: grid;
  gap: 0;
  margin-top: 32px;
}
.about-principles article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.about-principles b {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--hazel);
  letter-spacing: .04em;
}
.about-principles strong {
  display: block;
  font-family: var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.about-principles p { margin: 0; color: var(--ink-2); }
.about-path { background: var(--paper); }
.about-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  color: var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about-tile img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.about-tile-copy { padding: 22px 22px 26px; }
.about-tile span {
  display: block;
  color: var(--hazel);
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-tile h3 {
  color: var(--ink);
  margin: 0 0 8px;
}
.about-tile p {
  margin: 0;
  color: var(--ink-2);
  font-size: .95rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 54px 0;
  background: linear-gradient(90deg, var(--hazel-deep) 0%, var(--hazel) 58%, #b34a12 100%);
}
.cta-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(46%, 560px);
  background: url("../img/banner.webp") center/cover no-repeat;
}
.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--hazel) 0%, rgba(153, 53, 0, .45) 42%, rgba(22, 10, 6, .18) 100%);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/hazelnut-pattern.svg");
  background-size: 180px;
  opacity: .07;
  filter: invert(1) brightness(2);
  pointer-events: none;
}
.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cta-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.cta-band h2 {
  color: #fffdf9;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  max-width: 18ch;
}
.btn-cta {
  flex-shrink: 0;
  background: var(--cream);
  color: var(--hazel);
  border-color: var(--cream);
  min-height: 52px;
  padding: 0 28px;
  font-weight: 600;
}
.btn-cta:hover {
  background: #fff;
  color: var(--hazel-deep);
  transform: translateY(-1px);
}

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}
.site-footer a:hover { color: var(--gold); }
.site-footer h4 {
  font-family: var(--serif);
  color: #fff;
  font-size: 20px;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.legal-row {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  font-size: 13px;
}

.form {
  display: grid; gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.form label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--hazel); }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--hazel);
  border-color: var(--hazel);
}
.hp { position: absolute; left: -9999px; }
.form-msg { min-height: 24px; font-size: 14px; }
.form-msg.ok { color: var(--moss); }
.form-msg.err { color: #8b1e1e; }

.map-sec { padding-top: 0; }
.map-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  pointer-events: none;
  filter: saturate(.85);
}
.map-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45));
}
.map-hit:hover { text-decoration: underline; }

.policy { max-width: 78ch; }
.policy h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  max-width: none;
  line-height: 1.3;
}
.policy h3 { margin: 28px 0 10px; font-size: 1.05rem; }
.policy ul, .policy ol { padding-left: 18px; }
.policy li { margin: 8px 0; }
.policy a { color: var(--hazel); text-decoration: underline; }
.quality-policy h2 { margin: 48px 0 16px; }
.quality-policy h2:first-child { margin-top: 0; }
.quality-policy .project-list { margin: 0 0 8px; }
.quality-policy .lead { max-width: 78ch; margin-top: 18px; }

.reveal { opacity: 0; transform: translateY(24px); animation: rise .8s ease forwards; }
.reveal:nth-child(2) { animation-delay: .08s; }
.reveal:nth-child(3) { animation-delay: .16s; }
@keyframes rise { to { opacity: 1; transform: none; } }

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 760px; margin: auto;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow);
}
html.has-consent .cookie { display: none !important; }
.cookie p { margin: 0; font-size: 14px; }
.cookie p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie .btn-ghost { border-color: rgba(255,255,255,.4); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-left, .nav-right, .header-tools .btn-solid { display: none; }
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }
  .header-inner .logo { grid-column: 2; }
  .header-right { grid-column: 3; }
  body.menu-lock { overflow: hidden; }
  body.menu-lock .cookie { display: none !important; }
  .site-header { z-index: 70; }
  .site-header.menu-on,
  .site-header.menu-on.is-scrolled,
  .site-header.menu-on.is-solid {
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }
  .site-header.menu-on .lang { visibility: hidden; }
  .site-header.menu-on .lang a,
  .site-header.menu-on .menu-toggle { color: #fff; }
  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    color: #fff;
    pointer-events: none;
    visibility: hidden;
    clip-path: circle(0 at calc(100% - 38px) 60px);
    transition: clip-path .9s cubic-bezier(.22, 1, .36, 1), visibility 0s .9s;
  }
  .menu-overlay.is-open {
    pointer-events: auto;
    visibility: visible;
    clip-path: circle(160vmax at calc(100% - 38px) 60px);
    transition: clip-path .9s cubic-bezier(.22, 1, .36, 1), visibility 0s;
  }
  .menu-overlay-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(155deg, rgba(22, 10, 6, .94) 12%, rgba(153, 53, 0, .78) 58%, rgba(22, 10, 6, .92) 100%),
      url("../img/banner.webp") center/cover no-repeat;
  }
  .menu-overlay-bg::after {
    content: "NOOR";
    position: absolute;
    right: -8%;
    bottom: 4%;
    font-family: var(--font-heading);
    font-size: clamp(6rem, 42vw, 14rem);
    letter-spacing: .08em;
    color: rgba(255,255,255,.05);
    line-height: .8;
    pointer-events: none;
  }
  .menu-overlay-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header) + 12px) 28px 36px;
    overflow: auto;
  }
  .menu-kicker {
    margin: 0 0 18px;
    font-size: 11px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(12px);
  }
  .menu-list {
    display: grid;
    gap: 6px;
  }
  .menu-item {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    align-items: baseline;
    column-gap: 12px;
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 9vw, 3.4rem);
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(28px);
  }
  .menu-num {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: .22em;
    color: var(--gold);
    transform: translateY(-0.55em);
  }
  .menu-label { min-width: 0; }
  .menu-item.is-on .menu-label,
  .menu-item:hover .menu-label { color: var(--gold); }
  .menu-group .menu-sub { grid-column: 2; }
  .menu-sub {
    display: grid;
    gap: 8px;
    margin: 8px 0 6px;
    padding: 0 0 4px 0;
  }
  .menu-sub a {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
  }
  .menu-sub a:hover { color: var(--gold); }
  .menu-rule {
    width: 0;
    height: 1px;
    margin: 22px 0 20px;
    background: var(--gold);
  }
  .menu-foot {
    display: grid;
    gap: 16px;
    justify-items: start;
    opacity: 0;
    transform: translateY(16px);
  }
  .menu-foot .btn-solid {
    background: #fff;
    color: var(--hazel);
  }
  .menu-foot .btn-solid:hover { background: var(--gold); color: var(--ink); }
  .menu-lang {
    display: flex;
    gap: 10px;
    font-size: 13px;
    letter-spacing: .2em;
  }
  .menu-lang a.is-on { color: var(--gold); }
  .menu-foot p {
    margin: 0;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
  }
  .menu-overlay.is-open .menu-kicker,
  .menu-overlay.is-open .menu-item,
  .menu-overlay.is-open .menu-foot {
    animation: menuIn .7s cubic-bezier(.22, 1, .36, 1) forwards;
  }
  .menu-overlay.is-open .menu-kicker { animation-delay: .28s; }
  .menu-overlay.is-open .menu-item:nth-child(1) { animation-delay: .38s; }
  .menu-overlay.is-open .menu-item:nth-child(2) { animation-delay: .48s; }
  .menu-overlay.is-open .menu-item:nth-child(3) { animation-delay: .58s; }
  .menu-overlay.is-open .menu-item:nth-child(4) { animation-delay: .68s; }
  .menu-overlay.is-open .menu-foot { animation-delay: .78s; }
  .menu-overlay.is-open .menu-rule {
    transition: width .8s .7s cubic-bezier(.22, 1, .36, 1);
    width: 88px;
  }
  @keyframes menuIn {
    to { opacity: 1; transform: none; }
  }
  @media (max-height: 720px) {
    .menu-overlay-inner { justify-content: flex-start; }
    .menu-item { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  }
  .split, .anatomy-grid, .cards-4, .cards-3, .cards-2, .product-grid, .footer-grid, .about-tiles, .about-intro, .about-history-row, .about-nuts-grid, .about-pillars {
    grid-template-columns: 1fr;
  }
  .about-intro .photo-frame,
  .about-intro .photo-frame img { height: 320px; min-height: 320px; }
  .about-history-num { font-size: 4.2rem; }
  .page-hero, .about-hero, .plant-hero {
    height: 380px;
    min-height: 380px;
    padding: calc(var(--header) + 8px) 0 28px;
  }
  .about-tile img { height: 200px; }
  .factory-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
  .plant-mosaic, .plant-line-list, .plant-store-grid {
    grid-template-columns: 1fr;
  }
  .plant-mosaic { grid-template-rows: none; }
  .plant-mosaic img:first-child {
    grid-row: auto;
    height: 240px;
  }
  .plant-store img { height: 200px; }
  .factory-gallery img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 240px;
  }
  .certs { grid-template-columns: 1fr 1fr; }
  .project-art { grid-template-columns: 1fr; }
  .project-art img { height: 220px; }
  .cta-band { padding: 44px 0; }
  .cta-row { flex-direction: column; align-items: flex-start; }
  .cta-media { width: 100%; opacity: .35; }
  .lines { grid-template-columns: 1fr 1fr; }
  .plant-visual img { height: 240px; }
  .plant-thumbs img { height: 80px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(even)::after { display: none; }
  .product { grid-template-columns: 1fr; }
  .product .shot,
  .product:nth-child(even) .shot { order: -1; min-height: 220px; }
  .split > img, .split > .frame, .frame, .photo-frame, .photo-frame img { height: 320px; min-height: 320px; }
  .hero-scroll { display: none; }
  .cookie { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
