@import url("buttons.css");

/* Göbeklitepe — Franchise */
:root {
  --gt-earth-900: #3d2618;
  --gt-earth-800: #4a2f1f;
  --gt-earth-700: #734931;
  --gt-earth-600: #8b5a3c;
  --gt-earth-500: #a67c52;
  --gt-cream-50: #fffef8;
  --gt-cream-100: #faf6eb;
  --gt-cream-200: #fef6c1;
  --gt-cream-300: #ede4b8;
  --gt-spice: #c41e2a;
  --gt-spice-hover: #9e1822;
  --gt-spice-light: #e85a4a;

  --brown-900: var(--gt-earth-900);
  --brown-800: var(--gt-earth-800);
  --brown-700: var(--gt-earth-700);
  --brown-600: var(--gt-earth-600);
  --brown-500: var(--gt-earth-500);
  --cream-50: var(--gt-cream-50);
  --cream-100: var(--gt-cream-100);
  --cream-200: var(--gt-cream-200);
  --cream-300: var(--gt-cream-300);
  --accent: var(--gt-spice);
  --accent-hover: var(--gt-spice-hover);
  --white: #ffffff;
  --text: var(--gt-earth-900);
  --text-muted: #5c4a3a;
  --text-on-dark: var(--gt-cream-200);
  --border: rgba(115, 73, 49, 0.14);
  --shadow: 0 4px 24px rgba(61, 38, 24, 0.08);
  --shadow-lg: 0 20px 48px rgba(61, 38, 24, 0.14);
  --shadow-card: 0 1px 3px rgba(61, 38, 24, 0.06), 0 8px 24px rgba(61, 38, 24, 0.08);
  --btn-shadow: 0 4px 14px rgba(61, 38, 24, 0.22);
  --btn-shadow-spice: 0 4px 16px rgba(196, 30, 42, 0.28);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --topbar-h: 38px;
  --header-h: 92px;
  --safe-top: env(safe-area-inset-top, 0px);
  --site-top: calc(var(--topbar-h) + var(--safe-top));
  --site-offset: calc(var(--site-top) + var(--header-h));
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1400px;
  --container-wide: 1680px;
  --container-pad: clamp(1.25rem, 3vw, 2.5rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-offset) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(115, 73, 49, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(115, 73, 49, 0.05), transparent 45%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23734931' fill-opacity='0.04'%3E%3Crect x='34' y='4' width='12' height='36'/%3E%3Crect x='16' y='36' width='48' height='10'/%3E%3C/g%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.container {
  width: min(var(--container-max), calc(100% - var(--container-pad) * 2));
  margin-inline: auto;
}

.container-wide {
  width: min(var(--container-wide), calc(100% - var(--container-pad) * 2));
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  min-height: calc(var(--topbar-h) + var(--safe-top));
  padding-top: var(--safe-top);
  box-sizing: border-box;
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--border);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  height: var(--topbar-h);
}

.top-bar-badge {
  background: var(--gt-cream-200);
  color: var(--gt-earth-800);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: auto;
}

.top-bar-link {
  font-weight: 500;
  transition: color var(--transition);
}

.top-bar-link:hover { color: var(--gt-earth-700); }

.top-bar-divider { opacity: 0.35; }

/* Header */
.site-header {
  position: fixed;
  top: var(--site-top);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brown-900);
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-600);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover { color: var(--gt-earth-700); }

.nav-link.is-active {
  color: var(--gt-earth-900);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gt-earth-700), var(--gt-spice));
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--brown-700);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home slider */
.site-slider {
  position: relative;
  margin-top: var(--site-offset);
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.site-slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1718 / 916;
  max-height: min(85vh, 916px);
}

.site-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 0;
  overflow: hidden;
}

.site-slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.site-slider-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.site-slider-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.site-slider-ui {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.site-slider-btn {
  position: absolute;
  top: 50%;
  pointer-events: auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  min-height: 0;
  padding: 0;
  border: 1.5px solid rgba(115, 73, 49, 0.2);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--gt-earth-700);
  box-shadow: 0 2px 12px rgba(61, 38, 24, 0.12);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.site-slider-btn:hover {
  background-color: var(--gt-earth-700);
  border-color: var(--gt-earth-700);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(61, 38, 24, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.site-slider-btn:active {
  transform: translateY(-50%) scale(0.97);
}

.site-slider-btn--prev { left: 1.25rem; }
.site-slider-btn--next { right: 1.25rem; }

.site-slider-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.92) 100%);
}

.site-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}

.site-slider-dot {
  width: 2rem;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: width var(--transition), background var(--transition);
}

.site-slider-dot.is-active {
  width: 2.75rem;
  background: linear-gradient(90deg, var(--gt-earth-700), var(--gt-spice));
}

.site-slider-dot:hover { background: var(--gt-earth-600); }

.site-slider-counter {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  pointer-events: none;
}

.site-slider-counter-sep {
  margin: 0 0.2rem;
  opacity: 0.55;
}

@media (max-width: 768px) {
  .site-slider-viewport {
    aspect-ratio: 1718 / 916;
    max-height: none;
  }

  .site-slider-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .site-slider-btn--prev { left: 0.65rem; }
  .site-slider-btn--next { right: 0.65rem; }

  .site-slider-footer {
    padding: 1rem 1rem 1.1rem;
  }

  .site-slider-counter {
    right: 1rem;
  }

  .site-slider-dot { width: 1.5rem; }
  .site-slider-dot.is-active { width: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .site-slider-slide {
    transition: none;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--site-offset) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--gt-earth-800) 0%, var(--gt-earth-900) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
}

.page-home .hero.hero-home {
  padding: 4rem 0;
  background: var(--cream-100);
  color: var(--text);
}

.page-home .hero.hero-home .hero-bg { display: none; }

.page-home .hero.hero-home .hero-ornament {
  color: rgba(15, 23, 42, 0.06);
}

.page-home .hero.hero-home .hero-eyebrow {
  color: var(--accent);
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.15);
}

.page-home .hero.hero-home .hero-title {
  color: var(--text);
}

.page-home .hero.hero-home .hero-title em {
  color: var(--brown-700);
}

.page-home .hero.hero-home .hero-lead {
  color: var(--text-muted);
}

.page-home .hero.hero-home .hero-trust {
  border-top-color: var(--border);
}

.page-home .hero.hero-home .hero-trust li {
  color: var(--text-muted);
}

.page-home .hero.hero-home .btn-outline {
  color: var(--text);
  border-color: var(--border);
}

.page-home .hero.hero-home .btn-outline:hover {
  background: var(--white);
  border-color: var(--brown-500);
  color: var(--text);
}

.page-home .hero.hero-home .hero-panel-badge {
  background: var(--brown-800);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.35) 100%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f1f5f9' fill-opacity='0.05'%3E%3Crect x='42' y='8' width='16' height='48'/%3E%3Crect x='18' y='50' width='64' height='14'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  color: rgba(248, 250, 252, 0.12);
  pointer-events: none;
  z-index: 0;
}

.hero-ornament svg {
  width: clamp(48px, 8vw, 88px);
  height: auto;
}

.hero-ornament--left {
  left: 2%;
  top: 28%;
  transform: rotate(-6deg);
}

.hero-ornament--right {
  right: 2%;
  bottom: 18%;
  transform: rotate(8deg);
}

.hero-eyebrow-icon {
  margin-right: 0.35rem;
  opacity: 0.85;
}

.hero-panel {
  position: relative;
}

.hero-panel-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--brown-700);
  color: var(--cream-200);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream-200);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(254, 246, 193, 0.2);
  border-radius: 4px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: var(--cream-100);
}

.hero-title em {
  font-style: normal;
  color: var(--cream-200);
}

.hero-lead {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: rgba(254, 246, 193, 0.88);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(254, 246, 193, 0.15);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(254, 246, 193, 0.85);
}

.hero-trust svg { flex-shrink: 0; opacity: 0.9; }

.hero-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero-panel-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
}

.hero-logo {
  width: min(100%, 280px);
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
}

.hero-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.stat-box {
  text-align: center;
  padding: 0.5rem;
}

.stat-box strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brown-700);
  margin-bottom: 0.15rem;
}

.stat-box span {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Metrics */
.metrics-bar {
  background: var(--brown-700);
  color: var(--cream-200);
  padding: 2rem 0;
  border-bottom: 4px solid var(--cream-200);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.8125rem;
  opacity: 0.88;
  line-height: 1.4;
}

.metric-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--brown-900);
  color: var(--text-on-dark);
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brown-600);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--cream-300); }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown-900);
  margin: 0 0 1rem;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 32rem;
}

.section-header-center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-header-center p { margin-inline: auto; }

.section-header-light h2 { color: var(--cream-100); }
.section-header-light .section-desc { color: rgba(254, 246, 193, 0.8); }

.section-desc {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
}

.link-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brown-700);
  transition: color var(--transition);
}

.link-arrow:hover { color: var(--brown-900); }

/* Split section */
.section-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.pillar-grid {
  display: grid;
  gap: 1rem;
}

.pillar-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--brown-700);
  transition: box-shadow var(--transition);
}

.pillar-card:hover { box-shadow: var(--shadow); }

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: var(--radius);
  color: var(--brown-700);
}

.pillar-icon svg { width: 22px; height: 22px; }

.pillar-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--brown-900);
}

.pillar-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  grid-column: 2;
}

.pillar-card h3 { grid-column: 2; }
.pillar-icon { grid-row: 1 / 3; }

/* Product gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-item-wide {
  grid-column: span 2;
}

.product-figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-100);
}

.product-item-featured .product-figure,
.product-item-wide .product-figure {
  aspect-ratio: 16 / 10;
}

.product-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-item:hover .product-figure img {
  transform: scale(1.04);
}

.product-item-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-700);
  background: var(--cream-200);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.product-item-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.4rem;
  color: var(--brown-900);
  line-height: 1.25;
}

.product-item-featured .product-item-body h3,
.product-item-wide .product-item-body h3 {
  font-size: 1.3125rem;
}

.product-item-body p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
}

.product-gallery-note {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.product-gallery-note a {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--brown-700);
}

.product-gallery-note a:hover {
  color: var(--brown-900);
}

/* Production */
.production-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.prod-card {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(254, 246, 193, 0.12);
  border-radius: var(--radius-lg);
}

.prod-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream-300);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.prod-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--cream-100);
}

.prod-card p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(254, 246, 193, 0.75);
  line-height: 1.6;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--brown-600);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--brown-900);
}

.service-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.package-card:hover { box-shadow: var(--shadow); }

.package-card-featured {
  border-color: var(--brown-700);
  border-width: 2px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.package-tier {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-600);
  margin-bottom: 0.75rem;
}

.package-card-featured .package-tier {
  background: var(--brown-700);
  color: var(--cream-200);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 0 0 0.5rem;
  color: var(--brown-900);
}

.package-desc {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  flex-grow: 0;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.package-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--brown-700);
  border-radius: 50%;
}

.package-invest {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.package-invest strong { color: var(--brown-900); }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  max-width: 100%;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--brown-700);
  color: var(--cream-200);
  border-radius: 50%;
}

.timeline-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--brown-900);
}

.timeline-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Why */
.why-section { background: var(--cream-100); }

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.why-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.why-list li:first-child { padding-top: 0; }

.why-list strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--brown-900);
  margin-bottom: 0.25rem;
}

.why-list span {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* CTA */
.cta-banner {
  padding: 3.5rem 0;
  background: var(--brown-700);
  color: var(--cream-200);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--cream-100);
}

.cta-banner p {
  margin: 0;
  opacity: 0.9;
  max-width: 28rem;
}

.cta-banner-actions .btn {
  flex-shrink: 0;
}

/* Apply */
.apply-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.apply-contacts { margin-top: 2rem; }

.apply-map-btn {
  margin-top: 1.25rem;
}

.footer-col a {
  color: inherit;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--cream-100);
}

.apply-contact-item {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.apply-contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-600);
  margin-bottom: 0.2rem;
}

.apply-contact-value {
  font-weight: 600;
  color: var(--brown-900);
}

.apply-contact-item:hover .apply-contact-value { color: var(--brown-700); }

.apply-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1.5rem;
  color: var(--brown-900);
}

.form-row { margin-bottom: 1.125rem; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--brown-800);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-50);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brown-600);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.12);
}

.form-row textarea { resize: vertical; min-height: 80px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.form-check input { width: auto; margin-top: 0.25rem; flex-shrink: 0; }

.form-check label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.form-notice {
  margin: 0 0 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-notice--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-notice--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--brown-900);
  color: rgba(254, 246, 193, 0.85);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(254, 246, 193, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cream-100);
  margin-bottom: 1rem;
}

.footer-brand img {
  border-radius: 50%;
  object-fit: contain;
}

.footer-about {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.8;
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-200);
  margin: 0 0 1rem;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer-col a:hover { opacity: 1; color: var(--cream-100); }

.footer-col p {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  opacity: 0.65;
}

.footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .section-split,
  .split-block,
  .apply-grid,
  .why-grid { grid-template-columns: 1fr; }

  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-item-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .product-item-wide {
    grid-column: span 2;
  }

  .production-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 80px;
  }

  .top-bar-inner {
    justify-content: center;
    flex-wrap: nowrap;
    height: var(--topbar-h);
    padding: 0;
    gap: 0.5rem;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 140;
    flex-shrink: 0;
  }

  body.nav-open .site-header {
    z-index: 130;
  }

  body.nav-open .top-bar {
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 0;
    height: 100dvh;
    max-height: 100dvh;
    padding:
      calc(var(--header-h) + var(--safe-top) + 1rem)
      max(1.5rem, env(safe-area-inset-right, 0px))
      calc(1.25rem + env(safe-area-inset-bottom, 0px))
      max(1.5rem, env(safe-area-inset-left, 0px));
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }

  .main-nav ul {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .main-nav a { font-size: 1.125rem; }

  .nav-cta {
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
  }

  .hero {
    padding-top: calc(var(--site-offset) + 2rem);
  }

  .page-hero-copy {
    padding: 1rem 1.125rem;
    width: 100%;
  }

  .page-hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-panel-stats { grid-template-columns: 1fr; }
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-item-featured,
  .product-item-wide {
    grid-column: span 1;
  }

  .production-grid,
  .services-grid,
  .timeline { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .top-bar-divider,
  .top-bar-badge { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Page hero (inner pages) — yükseklik = banner oranı (1920×480) */
.page-hero {
  position: relative;
  display: block;
  padding: 0;
  margin: var(--site-offset) 0 0;
  background: var(--gt-earth-900);
  color: var(--text-on-dark);
  overflow: hidden;
}

.page-hero--short .page-hero-bg {
  max-height: 400px;
}

.page-hero-bg {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 480;
  min-height: 220px;
  max-height: 480px;
  z-index: 0;
  background-color: var(--gt-earth-900);
  background-image: url("../img/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Yarı saydam katman — görsel üzerinde */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30, 18, 12, 0.32);
  pointer-events: none;
}

/* Solda hafif koyulaştırma — yazı okunaklı */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(35, 22, 14, 0.68) 0%,
      rgba(35, 22, 14, 0.45) 32%,
      rgba(35, 22, 14, 0.12) 55%,
      transparent 78%
    ),
    linear-gradient(180deg, transparent 0%, rgba(35, 22, 14, 0.18) 100%);
  pointer-events: none;
}

.page-hero-inner,
.article-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem
    max(1.25rem, calc((100% - min(var(--container-max), calc(100% - var(--container-pad) * 2))) / 2));
  box-sizing: border-box;
  text-align: left;
  pointer-events: none;
}

.page-hero-inner a,
.page-hero-inner button,
.article-hero-inner a {
  pointer-events: auto;
}

.page-hero-inner.container,
.article-hero-inner.container {
  margin-inline: 0;
  width: 100%;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  width: min(34rem, 100%);
  max-width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(35, 22, 14, 0.42);
  border: 1px solid rgba(254, 246, 193, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-hero .breadcrumb,
.article-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  color: rgba(254, 246, 193, 0.8);
}

.page-hero .breadcrumb a,
.article-hero .breadcrumb a {
  color: var(--cream-300);
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover,
.article-hero .breadcrumb a:hover {
  color: var(--cream-50);
}

.page-hero .breadcrumb span[aria-hidden="true"] {
  opacity: 0.45;
  user-select: none;
}

.page-hero .breadcrumb > span:last-child,
.article-hero .breadcrumb > span:last-child {
  color: var(--cream-50);
  font-weight: 600;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.625rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--cream-50);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.page-hero-desc {
  margin: 0;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 500;
  color: rgba(255, 254, 248, 0.92);
  line-height: 1.55;
  max-width: 28rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* Split blocks */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-block-reverse .split-media { order: -1; }

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.split-content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-media-tall img { aspect-ratio: 3 / 4; }

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-head-row .section-header { margin-bottom: 0; }

/* Preview cards (home) */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.preview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-card-body {
  padding: 1.25rem;
}

.preview-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.preview-card-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.package-grid-compact .package-card {
  padding: 1.75rem;
}

.home-dealer-link {
  margin: -1rem 0 2rem;
  font-size: 0.9375rem;
}

.home-dealer-link a {
  font-weight: 600;
  color: var(--brown-700);
}

.home-dealer-link a:hover {
  color: var(--brown-900);
}

.package-grid-compact .package-features,
.package-grid-compact .package-invest,
.package-grid-compact .btn-block {
  display: none;
}

/* About page */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.story-content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.story-visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.story-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  z-index: 2;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
  background: var(--brown-700);
}

.story-img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  border-color: var(--brown-500);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-200));
  border-radius: var(--radius);
  color: var(--brown-700);
  margin-bottom: 1.25rem;
}

.value-icon svg { width: 24px; height: 24px; }

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.value-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
  font-weight: 500;
  color: var(--brown-800);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--brown-700);
  border-bottom: 2px solid var(--brown-700);
  transform: rotate(-45deg);
}

.pillar-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar-card-dark {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(254, 246, 193, 0.12);
  border-radius: var(--radius-lg);
  border-left: none;
  display: block;
}

.pillar-card-dark h3 {
  color: var(--cream-100);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.pillar-card-dark p {
  color: rgba(254, 246, 193, 0.75);
  font-size: 0.875rem;
  margin: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.location-info > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.location-details li {
  margin-bottom: 1.25rem;
}

.location-details strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-600);
  margin-bottom: 0.25rem;
}

.location-details span,
.location-details a {
  font-weight: 600;
  color: var(--brown-900);
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  min-height: 320px;
}

.location-map iframe,
.location-map-full iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.location-map-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Contact page */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brown-500);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  color: var(--brown-700);
}

.contact-card-icon svg { width: 26px; height: 26px; }

.contact-card-icon--wa {
  background: #e8f8ee;
  color: #25d366;
}

.contact-card h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.35rem;
}

.contact-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .split-block,
  .split-block-reverse,
  .story-grid,
  .location-grid,
  .values-grid,
  .preview-grid,
  .pillar-grid-4,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .split-block-reverse .split-media { order: 0; }
  .story-logo { width: 56px; height: 56px; }
}

@media (max-width: 768px) {
  .nav-link.is-active::after { display: none; }

  .section-head-row {
    flex-direction: column;
    align-items: stretch;
  }

  .section-head-row .btn { width: 100%; }

  .cta-banner-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-banner-actions .btn { width: 100%; }
}

/* Bayilerimiz */
.dealer-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dealer-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dealer-filter-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.dealer-filter-btn:hover {
  border-color: var(--brown-600);
  color: var(--brown-800);
}

.dealer-filter-btn.is-active {
  background: var(--brown-700);
  border-color: var(--brown-700);
  color: var(--cream-200);
}

.dealer-count {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.dealer-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.dealer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.dealer-card.is-hidden {
  display: none;
}

.dealer-card-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.dealer-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  background: var(--cream-100);
  color: var(--brown-700);
  margin-bottom: 0.75rem;
}

.dealer-badge--merkez {
  background: var(--brown-700);
  color: var(--cream-200);
}

.dealer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  line-height: 1.25;
  color: var(--brown-900);
}

.dealer-city {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-600);
}

.dealer-meta {
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.dealer-meta li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.dealer-meta li:last-child { margin-bottom: 0; }

.dealer-meta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--brown-600);
}

.dealer-meta a {
  font-weight: 600;
  color: var(--brown-800);
  transition: color var(--transition);
}

.dealer-meta a:hover { color: var(--brown-700); }

.dealer-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dealer-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
}

.dealer-empty p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 500;
}

.dealer-grow-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.dealer-grow-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  margin: 0 0 0.75rem;
}

.dealer-grow-content p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

.dealer-grow-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  min-height: 280px;
}

.dealer-grow-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.is-hidden { display: none !important; }

/* SSS */
.container-narrow {
  width: min(760px, 100% - 2.5rem);
  margin-inline: auto;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brown-700);
  color: var(--brown-900);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(15, 23, 42, 0.25);
}

.faq-item[open] {
  border-color: var(--brown-600);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brown-900);
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brown-700);
  border-bottom: 2px solid var(--brown-700);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item[open] summary {
  background: var(--cream-100);
  border-bottom: 1px solid var(--border);
}

.faq-answer {
  padding: 0 1.25rem 1.125rem;
}

.faq-answer p {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-answer a {
  font-weight: 600;
  color: var(--brown-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--brown-900);
}

/* Blog */
.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.blog-featured-media {
  display: block;
  min-height: 280px;
  overflow: hidden;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.03);
}

.blog-featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.blog-featured-body h2 a:hover {
  color: var(--brown-700);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-meta--light {
  color: rgba(254, 246, 193, 0.8);
}

.blog-meta--light .blog-category {
  background: rgba(15, 23, 42, 0.6);
  color: var(--cream-200);
}

.blog-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--cream-200);
  color: var(--brown-800);
}

.blog-read::before {
  content: "·";
  margin-right: 0.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.blog-card-body p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex-grow: 1;
}

.blog-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-700);
}

.blog-card-link:hover {
  color: var(--brown-900);
}

/* Article */
.container-article {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

.article-hero {
  position: relative;
  display: block;
  padding: 0;
  margin: var(--site-offset) 0 0;
  background: var(--gt-earth-900);
  color: var(--text-on-dark);
  overflow: hidden;
}

.article-hero-bg {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 480;
  min-height: 220px;
  max-height: 480px;
  z-index: 0;
  background-color: var(--gt-earth-900);
  background-image: url("../img/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30, 18, 12, 0.32);
  pointer-events: none;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(35, 22, 14, 0.68) 0%,
      rgba(35, 22, 14, 0.45) 32%,
      rgba(35, 22, 14, 0.12) 55%,
      transparent 78%
    ),
    linear-gradient(180deg, transparent 0%, rgba(35, 22, 14, 0.18) 100%);
  pointer-events: none;
}

.article-hero .blog-meta--light {
  margin: 0;
  font-size: 0.75rem;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cream-50);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

.article-prose {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.article-lead {
  font-size: 1.1875rem;
  color: var(--brown-800);
  line-height: 1.65;
  margin: 0 0 2rem;
  font-weight: 500;
}

.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--brown-900);
  margin: 2rem 0 0.75rem;
}

.article-prose p {
  margin: 0 0 1.25rem;
}

.article-prose ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.article-prose li {
  margin-bottom: 0.5rem;
}

.article-prose a {
  color: var(--brown-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-prose a:hover {
  color: var(--brown-900);
}

.article-prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--brown-700);
  background: var(--cream-100);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-prose blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--brown-800);
  font-style: italic;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--site-offset) + 1rem);
}

.sidebar-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.sidebar-card h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--brown-900);
}

.sidebar-posts li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-posts li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.sidebar-posts a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-700);
  line-height: 1.4;
}

.sidebar-posts a:hover {
  color: var(--brown-900);
}

.sidebar-card-cta p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    min-height: 220px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .dealer-grow-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .dealer-toolbar { flex-direction: column; align-items: stretch; }
  .dealer-filter { justify-content: flex-start; }
  .dealer-card-actions .btn { flex: 1; min-width: 120px; }
}

/* Göbeklitepe heritage & rich home sections */
.section-pattern {
  position: relative;
}

.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23734931' fill-opacity='0.025'%3E%3Crect x='24' y='6' width='12' height='28'/%3E%3Crect x='10' y='30' width='40' height='8'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.heritage-ribbon {
  overflow: hidden;
  background: var(--brown-900);
  border-block: 1px solid rgba(254, 246, 193, 0.1);
  padding: 1rem 0;
}

.heritage-ribbon-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: heritage-scroll 35s linear infinite;
  padding-left: 1.25rem;
}

.heritage-ribbon-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) invert(94%) sepia(0.12) saturate(1.2) hue-rotate(358deg);
  transition: opacity var(--transition), transform var(--transition);
}

.heritage-ribbon-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

@keyframes heritage-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.split-media-stack {
  position: relative;
  display: grid;
  gap: 1rem;
}

.split-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-img-accent {
  width: 55%;
  margin-left: auto;
  margin-top: -3rem;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}

.heritage-section {
  position: relative;
  overflow: hidden;
}

.heritage-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(254, 246, 193, 0.06), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(166, 124, 82, 0.08), transparent 35%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fef6c1' fill-opacity='0.04'%3E%3Crect x='50' y='10' width='20' height='60'/%3E%3Crect x='20' y='64' width='80' height='18'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.heritage-section .container {
  position: relative;
}

.heritage-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.heritage-milestone {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(254, 246, 193, 0.12);
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
}

.heritage-milestone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(254, 246, 193, 0.25);
}

.heritage-milestone--highlight {
  background: rgba(15, 23, 42, 0.45);
  border-color: var(--cream-300);
}

.heritage-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-200);
  margin-bottom: 0.5rem;
}

.heritage-milestone h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--cream-100);
}

.heritage-milestone p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(254, 246, 193, 0.78);
  line-height: 1.55;
}

.heritage-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.heritage-pillar {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.heritage-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.heritage-pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  border-radius: 50%;
  color: var(--brown-700);
}

.heritage-pillar-icon svg,
.heritage-pillar-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.symbol-showcase {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--cream-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.symbol-showcase img {
  width: 100%;
  max-width: 56px;
  height: auto;
  margin-inline: auto;
  opacity: 0.88;
  transition: opacity var(--transition), transform var(--transition);
}

.symbol-showcase img:hover {
  opacity: 1;
  transform: scale(1.08);
}

.heritage-pillar h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--brown-900);
}

.heritage-pillar p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 0.75rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mosaic-item span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream-100);
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-item--tall {
  grid-row: span 2;
}

.mosaic-item--wide {
  grid-column: span 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-step {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--brown-700);
}

.process-step::after {
  content: "→";
  position: absolute;
  right: -0.65rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--brown-500);
  z-index: 1;
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-200);
  background: var(--brown-700);
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.35rem;
  color: var(--brown-900);
}

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.preview-card-blog time {
  display: block;
  font-size: 0.75rem;
  color: var(--brown-600);
  margin-bottom: 0.35rem;
}

.preview-card-blog h3 a {
  color: inherit;
  transition: color var(--transition);
}

.preview-card-blog h3 a:hover {
  color: var(--brown-700);
}

.quote-band {
  margin: 0;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-200));
  border-block: 1px solid var(--border);
}

.quote-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 42rem;
  margin-inline: auto;
}

.quote-ornament {
  color: var(--brown-600);
  opacity: 0.35;
}

.quote-ornament svg {
  width: 40px;
  height: auto;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.55;
  color: var(--brown-900);
  margin: 0;
}

.quote-band cite {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  color: var(--brown-600);
}

.cta-banner--rich {
  position: relative;
  overflow: hidden;
}

.cta-banner-pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fef6c1' fill-opacity='0.06'%3E%3Crect x='34' y='8' width='12' height='40'/%3E%3Crect x='14' y='44' width='52' height='10'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner--rich .cta-banner-inner {
  position: relative;
}

.cta-banner-label {
  color: var(--cream-300);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-heritage {
  background: var(--brown-900);
  color: var(--cream-300);
  padding: 1rem 0;
  border-top: 3px solid var(--brown-700);
}

.footer-heritage-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-heritage-inner p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-heritage-icon {
  color: rgba(254, 246, 193, 0.25);
  flex-shrink: 0;
}


@media (max-width: 1024px) {
  .heritage-timeline,
  .heritage-pillars,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .mosaic-item--large,
  .mosaic-item--wide {
    grid-column: span 2;
  }

  .process-step::after {
    display: none;
  }

  .hero-ornament {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .heritage-timeline,
  .heritage-pillars,
  .process-steps,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 100px;
  }

  .mosaic-item--large,
  .mosaic-item--tall,
  .mosaic-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .split-img-accent {
    width: 70%;
    margin-top: -2rem;
  }

  .heritage-ribbon-track {
    animation-duration: 28s;
  }

  .symbol-showcase {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-heritage-icon {
    display: none;
  }

  .hero-panel-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* WhatsApp floating button (pill) */
.whatsapp-float {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem 0.625rem 0.75rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18), 0 2px 10px rgba(37, 211, 102, 0.35);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition), background var(--transition);
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.whatsapp-float-icon svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float-label {
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22), 0 4px 14px rgba(37, 211, 102, 0.45);
  color: #fff;
}

body.nav-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .whatsapp-float:hover {
    transform: none;
  }

  .heritage-ribbon-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 1rem 1.75rem;
    padding: 0 1rem;
  }

  .heritage-ribbon-icon:hover {
    transform: none;
  }

  .product-item:hover,
  .preview-card:hover,
  .contact-card:hover,
  .dealer-card:hover,
  .heritage-pillar:hover,
  .mosaic-item:hover img {
    transform: none;
  }

  .product-item:hover .product-figure img {
    transform: none;
  }
}
