:root {
  --primary: #121820;
  --text: #575757;
  --accent: #8b5e3c;
  --accent-soft: rgba(139, 94, 60, 0.08);
  --bg: #f3efeb;
  --white: #ffffff;
  --divider: rgba(18, 24, 32, 0.1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-accent: "Lora", Georgia, serif;
  --radius: 20px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
}

p {
  margin: 0 0 1.25em;
}

.container {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.bg-panel {
  background: var(--white);
  border-radius: var(--radius);
  margin: 24px 15px 0;
}

/* Buttons */
.btn-default {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--accent);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.95rem 1.6rem;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.35s var(--ease);
  z-index: 0;
}

.btn-default::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateY(105%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.btn-default:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-default:hover::after {
  transform: none;
}

.btn-default.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-default.btn-light::after {
  background: var(--accent);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  color: var(--white);
  font-weight: 700;
  padding: 0.95rem 1.5rem;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}

.readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 700;
  transition: color 0.25s ease;
}

.readmore:hover {
  color: var(--primary);
}

/* Section titles */
.section-label {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-title {
  margin-bottom: 1.75rem;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin-bottom: 0.85rem;
}

.section-title h1 em,
.section-title h2 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.section-title p {
  margin: 0;
  max-width: 38rem;
  color: var(--text);
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title.center p {
  margin-inline: auto;
}

.section-title.light h1,
.section-title.light h2,
.section-title.light .section-label {
  color: var(--white);
}

.section-title.light p {
  color: rgba(255, 255, 255, 0.78);
}

/* Header — ayrı kutu, içerik altına binmez */
.main-header {
  position: relative;
  z-index: 100;
  height: calc(12px + var(--header-h));
}

.header-sticky {
  position: fixed;
  top: 12px;
  left: 15px;
  right: 15px;
  z-index: 100;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(18, 24, 32, 0.04);
  box-shadow: 0 6px 24px rgba(18, 24, 32, 0.05);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.header-sticky.is-scrolled {
  box-shadow: 0 10px 32px rgba(18, 24, 32, 0.1);
  border-color: rgba(18, 24, 32, 0.06);
}

.header-bar {
  position: relative;
  width: min(1240px, calc(100% - 1.75rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.navbar-brand {
  justify-self: start;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 4.1rem;
  height: 4.1rem;
  object-fit: contain;
  border-radius: 0;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}

.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  padding: 0.45rem 0.55rem;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link-mobile-cta {
  display: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-actions--mobile {
  display: none;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1.5px solid rgba(18, 24, 32, 0.12);
  border-radius: 50%;
  color: var(--primary);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-icon:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.header-cta {
  padding: 0.65rem 1.05rem;
  font-size: 0.86rem;
  font-weight: 800;
  margin-left: 0.2rem;
  border-radius: 10px;
}

.b2b-form {
  display: grid;
  gap: 1rem;
}

.b2b-form label {
  display: grid;
  gap: 0.4rem;
}

.b2b-form label span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.b2b-form input {
  width: 100%;
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--primary);
  background: var(--bg);
}

.b2b-form input:focus {
  outline: 2px solid rgba(139, 94, 60, 0.35);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.32rem auto;
  background: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Hero — menünün ALTINDA başlar, arkasına girmez */
.hero {
  margin: 20px 15px 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: calc(100vh - var(--header-h) - 50px);
  min-height: calc(100svh - var(--header-h) - 50px);
  position: relative;
  display: grid;
  align-items: center;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s linear;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(18, 24, 32, 0.78) 0%, rgba(18, 24, 32, 0.45) 55%, rgba(18, 24, 32, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
  max-width: 44rem;
  padding: 4rem 0 4rem;
  color: var(--white);
}

.hero-content .section-label {
  color: #e8c9a8;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 1rem;
}

.hero-content h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: #f0d2b0;
}

.hero-content > p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.hero-chips span {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Generic sections */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  min-width: 7.5rem;
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-badge span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.check-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--primary);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Home about — Backeri style */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.about-home-copy .section-title {
  margin-bottom: 1.25rem;
}

.about-home-copy > p {
  margin: 0 0 1rem;
  max-width: 34rem;
}

.about-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
}

.about-checks li {
  position: relative;
  padding-left: 2rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.98rem;
}

.about-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  line-height: 1;
}

.about-home-visual {
  position: relative;
}

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

.about-home-photos img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
}

.about-circle-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(18, 24, 32, 0.2));
}

.about-circle-badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 18s linear infinite;
}

.about-circle-badge strong {
  position: relative;
  z-index: 1;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--divider);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.35rem 1.5rem;
  border-right: 1px solid var(--divider);
}

.about-feature:first-child {
  padding-left: 0;
}

.about-feature:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-feature-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15rem;
}

.about-feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.about-feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

/* Services / features */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.service-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.6rem 1.35rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(18, 24, 32, 0.08);
}

.service-card .num {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Products preview */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

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

.product-card figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e2db;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.product-card .body {
  padding: 1.1rem 1.15rem 1.35rem;
}

.product-card .body span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card h3 {
  font-size: 1.2rem;
}

/* Special offers style product showcase */
.offers-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 2rem;
  align-items: center;
}

.offers-col {
  display: grid;
  gap: 1.75rem;
}

.offer-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: center;
}

.offer-item img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  background: #ebe5de;
  box-shadow: 0 8px 20px rgba(18, 24, 32, 0.08);
}

.offer-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}

.offer-item p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
}

.offer-meta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}

.offers-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  background: #f7f1ea;
  border-radius: 999px 999px 28px 28px;
  overflow: hidden;
  text-align: center;
}

.offers-spotlight-top {
  padding: 2.4rem 1.5rem 1rem;
}

.offers-spotlight-top h3 {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.offers-spotlight-top p {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 0.95rem;
}

.offers-spotlight-media {
  flex: 1;
  min-height: 280px;
  margin: 0 1rem 1rem;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

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

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem 1.4rem;
  border: 1px solid var(--divider);
}

.step-card .num {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
}

/* Cafe teaser */
.cafe-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cafe-teaser-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.cafe-teaser-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.cafe-teaser-media img:first-child {
  margin-top: 2rem;
}

/* References */
.references {
  padding: 4.5rem 0;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.reference-logo {
  display: grid;
  place-items: center;
  min-height: 6rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 24, 32, 0.08);
}

.reference-logo img {
  width: 100%;
  max-height: 3.4rem;
  object-fit: contain;
}

/* CTA band */
.cta-band {
  margin: 24px 15px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 24, 32, 0.82), rgba(139, 94, 60, 0.72)),
    url("../img/about-bg.jpg") center / cover no-repeat;
  color: var(--white);
}

.cta-band-inner {
  padding: 4.5rem 0;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
}

.cta-band .hero-actions {
  justify-content: center;
}

/* Testimonials dark band */
.testimonials-band {
  margin: 24px 15px 0;
  padding: 3.5rem 0;
  background: var(--primary);
  border-radius: var(--radius);
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.testimonials-copy .section-title {
  margin-bottom: 1.5rem;
}

.testimonials-copy .section-label {
  color: #e8c9a8;
}

.testimonial-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  padding: 4px;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-stat {
  display: grid;
  gap: 0.25rem;
}

.testimonial-stat .stat-icon {
  color: #e8c9a8;
  font-size: 0.85rem;
}

.testimonial-stat strong {
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.1;
}

.testimonial-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

.testimonials-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 460px;
}

.testimonials-visual > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.testimonials-cta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  background: rgba(139, 94, 60, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonials-cta p {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonials-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
}

.testimonials-cta a:hover {
  color: #f0d2b0;
}

/* About page extras */
.approach-grid,
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.approach-visual,
.why-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.approach-visual img,
.why-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.approach-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}

.approach-badge strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.approach-badge span {
  font-size: 0.85rem;
}

.mission-list {
  display: grid;
  gap: 1rem;
}

.mission-item {
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 14px;
}

.mission-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--accent);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
}

.mission-item p {
  margin: 0;
}

.why-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.why-list article {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--divider);
}

.why-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.why-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.why-list p {
  margin: 0;
}

.why-cta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: rgba(139, 94, 60, 0.9);
  color: var(--white);
}

.why-cta p {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.why-cta a {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.what-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 18px;
  overflow: hidden;
}

.what-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.what-card span,
.what-card h3,
.what-card p {
  display: block;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.what-card span {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.what-card h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.25rem;
}

.what-card p {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid var(--divider);
  padding: 0.35rem 1.1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  padding-right: 1.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  padding-top: 0.15rem;
  border-top: 1px solid var(--divider);
  padding-top: 0.85rem;
}

/* Page hero — menüden ayrı, ortalanmış başlık */
.page-hero {
  margin: 20px 15px 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  height: 36vh;
  max-height: 400px;
  position: relative;
  display: grid;
  place-items: center;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

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

.page-hero-veil {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1rem;
  color: var(--white);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0;
  font-weight: 700;
}

.page-hero-content h1 em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.page-hero-content > p:not(.breadcrumb) {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero-content .section-label {
  color: #e8c9a8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
}

.breadcrumb a:hover {
  color: #e8c9a8;
}

.breadcrumb .sep {
  opacity: 0.55;
}

/* Product catalog page */
.product-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--divider);
}

.product-item figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ebe5de;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.product-item .body {
  padding: 1rem 1.1rem 1.25rem;
}

.product-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.product-item p {
  margin: 0;
  font-size: 0.88rem;
}

/* Cafe blocks */
.cafe-list {
  display: grid;
  gap: 2.5rem;
}

.cafe-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--divider);
}

.cafe-block--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.cafe-block--reverse .cafe-media {
  order: 2;
}

.cafe-media {
  margin: 0;
}

.cafe-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cafe-copy {
  padding: 1.75rem;
}

.cafe-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.cafe-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.65rem;
}

.cafe-copy p {
  margin: 0;
}

/* Values / export */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem 1.35rem;
  border: 1px solid var(--divider);
}

.value-card h3 {
  color: var(--accent);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.value-card p {
  margin: 0;
}

.export-page {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.export-visual {
  border-radius: 18px;
  overflow: hidden;
}

.export-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.export-points {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
}

.export-points li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--divider);
  color: var(--primary);
  font-weight: 600;
}

/* Catalog */
.catalog-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.catalog-preview {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: transform 0.35s var(--ease);
}

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

.catalog-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-section {
  padding-top: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: start;
}

.contact-left .section-title {
  margin-bottom: 1.75rem;
}

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

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.15rem;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(18, 24, 32, 0.04);
}

.contact-card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.contact-card a {
  color: var(--text);
  transition: color 0.25s ease;
}

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

.contact-form-panel {
  background: #f7f1ea;
  border-radius: 24px;
  padding: 2rem 1.75rem 1.75rem;
}

.contact-form-panel .section-title {
  margin-bottom: 1.25rem;
}

.contact-form--modern {
  display: grid;
  gap: 0.9rem;
}

.contact-form--modern .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-form--modern label {
  display: block;
}

.contact-form--modern input,
.contact-form--modern textarea {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font: inherit;
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(18, 24, 32, 0.04);
  resize: vertical;
}

.contact-form--modern input:focus,
.contact-form--modern textarea:focus {
  outline: 2px solid rgba(139, 94, 60, 0.35);
}

.contact-form--modern .btn-default {
  justify-self: start;
  margin-top: 0.35rem;
}

.contact-page {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--divider);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--primary);
  background: var(--white);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(139, 94, 60, 0.35);
  border-color: var(--accent);
}

.contact-form .btn-default {
  justify-self: start;
  margin-top: 0.25rem;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-alert--success {
  background: rgba(46, 125, 50, 0.1);
  color: #1b5e20;
}

.form-alert--error {
  background: rgba(198, 40, 40, 0.1);
  color: #b71c1c;
}

.contact-details {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--divider);
  padding: 0.5rem 1.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--divider);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.2rem;
}

.contact-row strong {
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

a.contact-row:hover strong {
  color: var(--accent);
}

.section-cta {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-cta p {
  margin: 0;
}

/* Footer */
.main-footer {
  margin: 24px 15px 15px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 3.5rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 0;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 16rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #e8c9a8;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-col a:hover,
.footer-col a[href]:hover {
  color: #e8c9a8;
}

.footer-col p {
  margin: 0;
}

.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid,
  .products-grid,
  .product-catalog,
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .about-grid,
  .about-home,
  .cafe-teaser,
  .export-page,
  .catalog-inner,
  .contact-grid,
  .cafe-block,
  .cafe-block--reverse,
  .offers-layout,
  .testimonials-grid,
  .approach-grid,
  .why-grid,
  .faq-layout,
  .contact-page,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .approach-visual img,
  .why-visual > img {
    aspect-ratio: 16 / 10;
  }

  .testimonial-stats {
    grid-template-columns: 1fr;
  }

  .testimonials-visual,
  .testimonials-visual > img {
    min-height: 360px;
  }

  .testimonials-band {
    margin-left: 15px;
    margin-right: 15px;
  }

  .offers-spotlight {
    min-height: 420px;
    max-width: 360px;
    margin: 0 auto;
    order: -1;
  }

  .offers-layout .offers-col:first-child {
    order: 1;
  }

  .offers-layout .offers-col:last-child {
    order: 2;
  }

  .cafe-block--reverse .cafe-media {
    order: 0;
  }

  .about-visual img {
    aspect-ratio: 16 / 10;
  }

  .about-home-photos img {
    aspect-ratio: 4 / 5;
  }

  .about-circle-badge {
    width: 120px;
    height: 120px;
  }

  .about-circle-badge strong {
    font-size: 1.9rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-feature {
    border-right: 0;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--divider);
  }

  .about-feature:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .services-grid,
  .products-grid,
  .product-catalog,
  .steps-grid,
  .values-grid,
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cafe-teaser-media img:first-child {
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 0.1rem;
  }

  .nav-link {
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.4rem 0.4rem;
  }

  .nav-link::after {
    left: 0.4rem;
    right: 0.4rem;
  }
}

@media (max-width: 1024px) {
  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions--mobile {
    display: flex;
    flex-wrap: wrap;
    justify-self: stretch;
    padding-top: 0.85rem;
    margin-top: 0.35rem;
    border-top: 1px solid var(--divider);
  }

  .header-actions--mobile .header-cta {
    margin-left: 0;
    flex: 1;
    min-width: 8rem;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    justify-self: stretch;
    display: none;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(18, 24, 32, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 20;
  }

  .main-nav.is-open {
    display: grid;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--divider);
    font-size: 0.98rem;
    font-weight: 700;
    white-space: normal;
  }

  .nav-link::after {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 76px;
  }

  .main-header {
    height: calc(10px + var(--header-h));
  }

  .navbar-brand img {
    width: 3.8rem;
    height: 3.8rem;
  }

  .header-sticky {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .hero,
  .page-hero,
  .bg-panel,
  .cta-band,
  .testimonials-band,
  .main-footer {
    margin-left: 10px;
    margin-right: 10px;
  }

  .services-grid,
  .products-grid,
  .product-catalog,
  .steps-grid,
  .values-grid,
  .references-grid,
  .footer-top,
  .cafe-teaser-media {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-form .form-row,
  .contact-form--modern .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn-default,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-media img,
  .product-card img,
  .product-item img,
  .about-circle-badge svg {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
