/* ============================================================
   SZYNATUREL - Global Stylesheet (Graza-inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --green:        #1C322B;
  --green-mid:    #2A4A40;
  --green-light:  #e0e8e4;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE7D9;
  --cream-darker: #E3DBCB;
  --gold:         #C8963E;
  --gold-dark:    #a87830;
  --gold-light:   #f5e4c4;
  --charcoal:     #1C1C1C;
  --charcoal-soft:#3a3a3a;
  --white:        #FFFFFF;
  --grey:         #7A7A7A;
  --border:       #D5CEC2;

  --font-heading: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --announce-h: 40px;
  --nav-h:      68px;
  --radius:     3px;
  --radius-lg:  8px;
  --transition: 0.2s ease;

  --container:  1260px;
}

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.875rem 2.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: var(--charcoal-soft); border-color: var(--charcoal-soft); }

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-mid); border-color: var(--green-mid); }

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

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--green); }

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); border-color: var(--cream); color: var(--green); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ── Section label ── */
.label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  height: var(--announce-h);
  background: var(--green);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.announce-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.announce-track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 2.5rem;
}
.announce-track .dot {
  color: var(--gold);
  padding: 0;
  font-size: 1rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
/* inner pages need offset since they have no full-bleed hero */
.page-hero { padding-top: calc(5rem + var(--nav-h)); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo - left */
.logo-placeholder {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  transition: color 0.35s ease;
}
.navbar.scrolled .logo-placeholder { color: var(--green); }
.logo-placeholder .logo-leaf {
  color: var(--gold);
  font-size: 1.1rem;
}
.logo-placeholder .logo-img {
  height: 54px;
  width: auto;
  display: block;
  position: relative;
  top: 4px;
}
.footer-brand .logo-placeholder .logo-img { height: 88px; }

/* Story (Hikayemiz) two-column layout */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.story-media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream, #f4ede0);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-media { aspect-ratio: 4/5; max-height: none; }
  .story-media img { object-position: center; }
  .story-grid .story-text { text-align: center; }
}

/* Nav left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}
.nav-left a,
.nav-right a:not(.btn) {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.35s ease, background var(--transition);
}
.navbar.scrolled .nav-left a,
.navbar.scrolled .nav-right a:not(.btn) { color: var(--charcoal-soft); }
.nav-left a:hover,
.nav-right a:not(.btn):hover { color: var(--green); background: var(--cream-dark); }
.nav-left a.active,
.nav-right a.active { font-weight: 700; }
.navbar.scrolled .nav-left a.active,
.navbar.scrolled .nav-right a.active { color: var(--green); }
.nav-right .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background 0.35s ease;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { /* no offset needed, navbar is sticky */ }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-image: url('hero.jpg?v=3');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  height: max(46.875vw, 520px);
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .container { max-width: 1200px; }
.hero-content { max-width: 520px; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0) 70%);
}
.hero > * { position: relative; z-index: 1; }
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  max-width: 600px;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--gold); }
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-image-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.hero-img-block {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
}
.hero-img-block .ph-icon { font-size: 3rem; opacity: 0.5; }
.hero-img-block.tall { aspect-ratio: 2/3; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--charcoal);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-inner span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 2rem;
}
.marquee-inner .sep {
  color: var(--gold);
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-home {
  padding: 5.5rem 0;
  background: var(--cream);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.75rem;
  gap: 1rem;
}
.section-header-text {}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.product-img {
  background: var(--green-light);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}
.product-img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-img .ph-icon { font-size: 4rem; opacity: 0.4; color: var(--green); }
.product-img .ph-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); opacity: 0.6; font-weight: 600; }

/* Product image slider */
.product-slider { padding: 0; }
.product-slider .slider-track {
  position: absolute;
  inset: 0;
}
.product-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-slider .slide.active { opacity: 1; }
.product-slider { cursor: pointer; }
.product-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.25s ease, background 0.25s ease;
  z-index: 3;
}
.product-slider:hover .slider-btn { opacity: 1; }
.product-slider .slider-btn:hover { background: var(--white); }
.product-slider .slider-prev { left: 10px; }
.product-slider .slider-next { right: 10px; }
.product-slider .slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.product-slider .dot {
  width: 7px; height: 7px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.product-slider .dot.active { background: var(--white); transform: scale(1.25); }
.product-slider .dot { z-index: 3; position: relative; }
.product-slider .product-badge { z-index: 4; }

/* Product sizes */
.product-sizes {
  margin: 0.75rem 0 1.25rem;
}
.sizes-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.size-box {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  margin: 0 0.4rem 0.4rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
}
.product-sizes .sizes-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-right: 0.25rem;
}
.size-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: var(--green-light);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.size-note {
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  font-style: italic;
}
.products-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.products-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.products-note a:hover { color: var(--green-mid); }

/* Home page products preview (4 in a row) */
.home-products {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.home-products-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.home-products-header .label {
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.home-products-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  white-space: nowrap;
}
.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.home-products-grid .product-card {
  text-decoration: none;
  color: inherit;
}
.home-products-grid .product-img {
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
}
.home-products-grid .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.home-products-grid .product-card:hover .product-img img { transform: scale(1.04); }
.home-products-grid .product-body {
  padding: 1rem 1.1rem 1.25rem;
}
.home-products-grid .product-body h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.home-products-grid .product-body p {
  font-size: 0.8rem;
  margin-bottom: 0;
}
.home-products-cta {
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 960px) {
  .home-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-products-grid { grid-template-columns: 1fr; }
}

/* Wide product card (spans both columns) - used for "Coming Soon" */
.product-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
}
.product-card-wide .product-img {
  aspect-ratio: auto;
  flex: 1 1 50%;
  min-height: 100%;
}
.product-card-wide .product-body {
  flex: 1 1 50%;
  justify-content: center;
}
.product-coming-soon {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-coming-soon .coming-soon-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  text-align: center;
}
@media (max-width: 768px) {
  .product-card-wide { flex-direction: column; }
  .product-card-wide .product-img { aspect-ratio: 1; flex: none; }
}
.product-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.product-body {
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body .btn {
  white-space: normal;
  text-align: center;
}
.product-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.product-body p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.product-body .btn {
  align-self: flex-start;
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
}

/* ============================================================
   ABOUT SPLIT SECTION
   ============================================================ */
.about-split {
  background: var(--green);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-split-img {
  background: var(--green-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 500px;
}
.about-split-img .ph-icon { font-size: 4rem; }
.about-split-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split-text .label { color: var(--gold); }
.about-split-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.about-split-text h2 em { color: var(--gold); }
.about-split-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}
.about-split-text .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  background: var(--cream);
  padding: 3rem 0;
}
.stats-row .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  background: var(--cream);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============================================================
   VALUES ROW (3 columns with icons)
   ============================================================ */
.values-row {
  padding: 6rem 0;
  background: var(--cream);
}
.values-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.values-header .label {
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.values-header .section-title {
  color: var(--green);
  margin-bottom: 1rem;
}
.values-intro {
  font-size: 1rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-item {
  background: var(--white);
  padding: 3rem 2.25rem 2.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -18px rgba(28,50,43,0.25);
}
.value-num {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.value-num::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.value-item h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.value-item p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
}

/* Values strip (above footer, icon-row style) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.values-strip {
  background: var(--white);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
}
.values-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.value-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}
.value-strip-item .value-icon {
  width: 52px;
  height: 52px;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.value-strip-item .value-icon svg {
  width: 100%;
  height: 100%;
}
.value-strip-item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.65rem;
  letter-spacing: -0.005em;
}
.value-strip-item p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .values-strip-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   CERTIFICATIONS STRIP
   ============================================================ */
.cert-strip {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.cert-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cert-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-right: 1.5rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal-soft);
}
.cert-badge .cert-icon { font-size: 1rem; }

/* ============================================================
   FULL-WIDTH CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.cta-band h2 em { }
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-inline: auto;
}
.cta-band .btn { background: var(--white); color: var(--green); border-color: var(--white); }
.cta-band .btn:hover { background: var(--cream); border-color: var(--cream); color: var(--green); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  background: var(--green);
  padding: 5rem 0 6.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold); }
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE - Story
   ============================================================ */
.story-section {
  padding: 6rem 0;
  background: var(--cream);
}
.story-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-wrap {
  position: relative;
}
.story-img-main {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.story-img-main .ph-icon { font-size: 3.5rem; opacity: 0.4; }
.story-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 160px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  color: var(--white);
  border: 3px solid var(--cream);
}
.story-img-accent .accent-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.story-img-accent .accent-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}
.story-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.story-text p {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.story-text .btn { margin-top: 1.5rem; }

/* ============================================================
   ABOUT PAGE - Core Values (full redesign)
   ============================================================ */
.core-values-section {
  padding: 5.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.core-values-section .section-header {
  margin-bottom: 3rem;
  justify-content: center;
  text-align: center;
}

/* ============================================================
   ABOUT PAGE - Timeline
   ============================================================ */
.timeline-section {
  padding: 5.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.timeline-section .section-header { margin-bottom: 3rem; }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: 1.5rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  padding: 2rem 0 2rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 2.4rem;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--cream-dark);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  padding-top: 0.15rem;
}
.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS PAGE - Filter + Grid
   ============================================================ */
.products-page {
  padding: 4.5rem 0 6rem;
  background: var(--cream);
}
.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--charcoal-soft);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 880px;
  margin: 0 auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  padding: 5rem 0 6rem;
  background: var(--cream);
}
.contact-layout .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 720px;
}
.contact-col-left h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.contact-col-left > p {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-item-text strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.2rem;
}
.contact-item-text span { font-size: 0.9375rem; color: var(--charcoal); }

.map-ph {
  margin-top: 2rem;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.map-ph .ph-icon { font-size: 2rem; opacity: 0.45; }

/* Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}
.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 0.45rem;
}
.form-group label .req { color: var(--gold); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,80,22,0.1);
  background: var(--white);
}
.form-control::placeholder { color: var(--grey); opacity: 0.65; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; text-align: center; padding: 0.95rem; font-size: 0.875rem; }
.form-note { font-size: 0.75rem; color: var(--grey); text-align: center; margin-top: 0.75rem; }

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 960px;
  margin-inline: auto;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.faq-item p { font-size: 0.875rem; color: var(--charcoal-soft); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-placeholder {
  color: var(--green);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }

/* Footer certificates grid */
.footer-certs .cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  max-width: 240px;
}
.footer-certs .cert-item {
  aspect-ratio: 1;
  background: transparent;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.footer-certs .cert-item:hover { transform: translateY(-2px); }
.footer-certs .cert-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-certs { grid-column: span 3; }
  .footer-certs .cert-grid { max-width: 320px; }
}
@media (max-width: 768px) {
  .footer { padding-top: 2rem; }
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.75rem 1rem;
    padding-bottom: 2.25rem;
  }
  /* Logo üstte, açıklama altında */
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
  }
  .footer-brand .logo-placeholder { margin-bottom: 0.6rem; }
  .footer-brand .logo-placeholder .logo-img { height: 72px; }
  .footer-brand p { margin: 0; max-width: 420px; font-size: 0.82rem; }
  /* 3 sütun navigasyon */
  .footer-col h4 { margin-bottom: 0.75rem; }
  .footer-col ul li a { font-size: 0.8rem; }
  /* Sertifikalar en altta tam genişlik */
  .footer-certs { grid-column: 1 / -1; }
  .footer-certs .cert-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 280px;
    gap: 0.5rem;
  }
}
.footer-top {
  border-bottom: 1px solid var(--border);
}
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); }
.footer-bottom a { font-size: 0.8rem; color: var(--grey); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }

/* ============================================================
   RESPONSIVE - 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-img { min-height: 300px; aspect-ratio: 16/7; }
  .about-split-text { padding: 4rem 2.5rem; }
  .story-section .container { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-certs { grid-column: 1 / -1; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* Nav */
  .navbar .container { grid-template-columns: auto 1fr auto; }
  .logo-placeholder { justify-self: start; }
  .nav-left { display: none; }
  .hamburger { display: flex; justify-self: end; }
  .nav-right {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.1rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 14px 28px -14px rgba(0,0,0,0.3);
    z-index: 800;
  }
  .nav-right.open { display: flex; }
  .nav-right a:not(.btn) {
    color: var(--charcoal);
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
  .nav-right a:not(.btn):hover { color: var(--green); background: var(--cream-dark); }
  .nav-right .btn { margin-top: 0.5rem; text-align: center; }
  /* kaydırınca hamburger görünür kalsın */
  .navbar.scrolled .hamburger span { background: var(--charcoal); }

  /* Ürünler başlığı: mobilde sığması için sarmaya izin ver */
  .home-products-header h2 { white-space: normal; }

  /* Hero */
  .hero {
    height: max(46.875vw, 600px);
    padding: calc(var(--nav-h) + 1.75rem) 0 3rem;
    background-image: url('urunler.jpg?v=2');
    background-position: center top;
    text-align: center;
    align-items: flex-start;
  }
  .hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.34) 45%, rgba(0,0,0,0.1) 100%);
  }
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    max-width: none;
    margin: 0 auto 0.85rem;
  }
  .hero-sub {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
    max-width: 340px;
    margin: 0 auto 1.5rem;
  }
  .hero-cta { display: none; }
  .hero-image-row { grid-template-columns: 1fr 1fr; }
  .hero-image-row > *:last-child { display: none; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-page-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-row .container { grid-template-columns: 1fr 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* About */
  .story-section .container { grid-template-columns: 1fr; }
  .story-img-accent { display: none; }

  /* Timeline */
  .timeline-item { grid-template-columns: 80px 1fr; gap: 1rem; }

  /* Contact */
  .contact-layout .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-page-grid { grid-template-columns: 1fr; }
  .stats-row .container { grid-template-columns: 1fr 1fr; }
  .hero-image-row { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 1.75rem 1.25rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
}
