/* ---------- Tokens ---------- */
:root {
  --bg: #FAF8F4;
  --green: #1B4F3A;
  --green-deep: #143828;
  --terra: #C0603A;
  --terra-deep: #9E4A28;
  --sand: #F0EBE0;
  --ink: #2A2620;
  --ink-soft: #5B544A;
  --muted: #8A8276;
  --rule: #E5DFD2;

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Inter", -apple-system, system-ui, sans-serif;

  --pad: clamp(20px, 6vw, 40px);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

/* ---------- Type ---------- */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
}

.muted { color: var(--ink-soft); }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section { padding: clamp(56px, 10vw, 110px) 0; }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--sand);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/kitchen-night.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.hero__bg::after {
  /* warm overlay for text legibility — sıcak okunabilirlik katmanı */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 8, 0.55) 0%, rgba(20, 14, 8, 0.35) 35%, rgba(20, 14, 8, 0.55) 75%, rgba(20, 14, 8, 0.75) 100%),
    radial-gradient(120% 80% at 20% 20%, rgba(192, 96, 58, 0.18), transparent 60%);
}

.hero__nav {
  display: none;
}

.brand {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #FAF8F4;
}

.brand em { font-style: normal; color: #E8B89F; }

.hero__nav-right {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.7);
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 100px var(--pad) 80px;
}

.hero__col { max-width: 720px; }

.hero h1 {
  font-size: clamp(36px, 8.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #FAF8F4;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
  font-style: italic;
  color: #E8B89F;
}

.hero__sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(250, 248, 244, 0.85);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.55;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero__caption {
  position: absolute;
  bottom: 28px;
  left: var(--pad);
  right: var(--pad);
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(250, 248, 244, 0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__caption-line {
  width: 32px;
  height: 1px;
  background: #E8B89F;
  flex-shrink: 0;
}

/* Scroll offset so anchor jumps clear the fixed nav */
section[id], [id^="form"], #contact, #story, #top {
  scroll-margin-top: 80px;
}

/* ---------- Sticky site nav ---------- */
.sitenav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.sitenav.is-light {
  /* over light backgrounds, after scrolling past hero */
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--rule);
  padding-top: 12px;
  padding-bottom: 12px;
}

.sitenav__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #FAF8F4;
  text-decoration: none;
  transition: color 0.3s ease;
  /* mobilde tek satır kalsın, gerekirse kısalsın — CTA'yı itmesin */
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* "Bağımsız" kelimesi mobilde gizli (yer kazanmak için), 768px+ görünür */
.nav-opt { display: none; }

.sitenav__brand em { font-style: normal; color: #E8B89F; padding: 0 2px; transition: color 0.3s ease; }

.sitenav.is-light .sitenav__brand { color: var(--green-deep); }
.sitenav.is-light .sitenav__brand em { color: var(--terra); }

.sitenav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sitenav__links {
  display: none;
  gap: 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sitenav__links a {
  color: rgba(250, 248, 244, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitenav__links a:hover { color: #E8B89F; }

.sitenav.is-light .sitenav__links a { color: var(--ink-soft); }
.sitenav.is-light .sitenav__links a:hover { color: var(--terra); }

.sitenav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  min-height: 40px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.sitenav__cta:hover { background: var(--terra-deep); transform: translateY(-1px); }

.sitenav__cta .arrow { display: inline-block; transition: transform 0.25s ease; }
.sitenav__cta:hover .arrow { transform: translateX(3px); }

@media (min-width: 768px) {
  .sitenav { padding: 20px var(--pad); }
  .sitenav__links { display: inline-flex; }
  .sitenav__right { gap: 28px; }
  .sitenav__brand { font-size: 17px; white-space: normal; overflow: visible; }
  .nav-opt { display: inline; }
}

/* ---------- Contact section ---------- */
.contact {
  background: var(--bg);
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
}

.contact__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.contact__head {
  margin-bottom: 40px;
}

.contact__head h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--green-deep);
  margin: 14px 0 12px;
}

.contact__head p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--sand);
  padding: 18px 22px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.contact__row:hover {
  border-left-color: var(--terra);
  transform: translateX(2px);
}

.contact__row-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
}

.contact__row-icon svg { width: 18px; height: 18px; }

.contact__row-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.contact__row-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__row-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--green-deep);
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact__row-arrow {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 18px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact__row:hover .contact__row-arrow {
  transform: translateX(4px);
  color: var(--terra);
}

/* ---------- Consultant ID badge ---------- */
.id-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg);
}

.id-badge strong {
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.id-badge--on-dark {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.id-badge--on-dark strong { color: #fff; }

/* ---------- Functions (capabilities) section ---------- */
.fn-section {
  background: var(--bg);
}

.fn-section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.fn-section__head h2 {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--green-deep);
  margin-top: 16px;
  margin-bottom: 16px;
}

.fn-section__head h2 em { font-style: italic; color: var(--terra); }

.fn-section__head h2 .big {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4em;
  font-weight: 500;
}

.fn-section__head p {
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

.fn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--rule);
}

.fn-cell {
  background: var(--bg);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 110px;
  justify-content: center;
  transition: background 0.25s ease;
}

.fn-cell:hover { background: var(--sand); }

.fn-cell__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--terra);
}

.fn-cell__name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--green-deep);
  line-height: 1.2;
}

.fn-cell__hint {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media (min-width: 600px) {
  .fn-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .fn-grid { grid-template-columns: repeat(4, 1fr); }
  .fn-cell { padding: 28px 22px; min-height: 130px; }
}

/* Cookidoo callout */
.cookidoo {
  margin-top: 56px;
  background: var(--sand);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.cookidoo__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terra);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookidoo__icon svg { width: 28px; height: 28px; }

.cookidoo__body { flex: 1; }

.cookidoo__eyebrow {
  margin-bottom: 10px;
  display: block;
}

.cookidoo h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vw, 28px);
  color: var(--green-deep);
  margin: 0 0 8px;
  font-weight: 500;
}

.cookidoo p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 700px) {
  .cookidoo {
    grid-template-columns: 80px 1fr;
    gap: 32px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 18px 28px;
  min-height: 56px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.btn--wa {
  background: #25D366;
  color: #073B19;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn--wa:hover {
  background: #1FBD5A;
  transform: translateY(-1px);
}

.btn--wa svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn--terra {
  background: var(--terra);
  color: #fff;
}

.btn--terra:hover {
  background: var(--terra-deep);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  box-shadow: inset 0 0 0 1.5px var(--green-deep);
}

.btn--outline:hover {
  background: var(--green-deep);
  color: #fff;
}

.btn--block { width: 100%; }

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Consultant / story ---------- */
.story {
  background: var(--bg);
  position: relative;
}

.story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  padding-left: 0;
}

.story__quote-mark {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 200px);
  color: var(--terra);
  line-height: 0.8;
  position: absolute;
  top: -12px;
  left: -8px;
  opacity: 0.35;
  pointer-events: none;
  font-style: italic;
}

.story__eyebrow {
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.story__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.35;
  color: var(--green-deep);
  margin: 0 0 24px;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}

.story__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 580px;
  text-wrap: pretty;
}

.story__sig {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.story__sig::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terra);
}

/* ---------- Editorial image strip ---------- */
.imgstrip {
  background: var(--bg);
  padding: 0;
  position: relative;
}

.imgstrip__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--sand);
}

.imgstrip__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.imgstrip__caption {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad) 0;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

.imgstrip__caption-num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .imgstrip__frame { aspect-ratio: 21 / 9; }
}

/* ---------- Values (three columns) ---------- */
.values {
  background: var(--sand);
}

.values__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.values__head h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--green-deep);
  margin-bottom: 16px;
}

.values__head p {
  color: var(--ink-soft);
  margin: 0;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.value {
  padding: 0;
  position: relative;
}

.value__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--terra);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.value h3 {
  font-size: 24px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.value p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg);
}

.testimonials__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.testimonials__head h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--green-deep);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tcard {
  background: var(--sand);
  border-left: 3px solid var(--terra);
  padding: 32px 28px;
  border-radius: 2px;
}

.tcard__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--green-deep);
  margin: 0 0 20px;
  text-wrap: pretty;
}

.tcard__author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.tcard__author strong {
  color: var(--ink);
  font-weight: 500;
  margin-right: 6px;
}

/* ---------- Guide bridge ---------- */
.bridge {
  background: var(--sand);
  overflow: hidden;
}

.bridge__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.bridge__text { text-align: center; }

.bridge__img {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bridge__img img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .bridge__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    text-align: left;
  }
  .bridge__text { text-align: left; }
  .bridge__img { max-width: none; aspect-ratio: 4 / 5; }
}

.bridge__eyebrow {
  margin-bottom: 18px;
}

.bridge h2 {
  font-size: clamp(24px, 3.8vw, 34px);
  color: var(--green-deep);
  margin-bottom: 12px;
}

.bridge p {
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.bridge a {
  font-family: var(--sans);
  color: var(--terra);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--terra);
  transition: gap 0.25s ease, color 0.25s ease;
}

.bridge a:hover {
  gap: 16px;
  color: var(--terra-deep);
}

/* ---------- Form ---------- */
.form-section {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 96, 58, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.form-section__inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.form-section .eyebrow {
  color: #E8B89F;
  margin-bottom: 18px;
}

.form-section h2 {
  font-size: clamp(32px, 5.5vw, 52px);
  color: #fff;
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 400;
}

.form-section__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin: 0;
  line-height: 1.55;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.field input,
.field select {
  font-family: var(--sans);
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.28);
  padding: 14px 0;
  min-height: 52px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder { color: rgba(255, 255, 255, 0.4); }

.field input:focus,
.field select:focus {
  border-bottom-color: var(--terra);
}

.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.field select option { background: var(--green-deep); color: #fff; }

.field--invalid input,
.field--invalid select {
  border-bottom-color: #F4A88A;
}

.form__error {
  font-size: 12px;
  color: #F4C2A8;
  margin-top: 4px;
  min-height: 0;
  display: none;
}

.field--invalid .form__error { display: block; }

.form__submit {
  margin-top: 16px;
  background: var(--terra);
  color: #fff;
}

.form__submit:hover { background: var(--terra-deep); }

.form__legal {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.form__success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form__success.is-active { display: block; }

.form__success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terra);
  margin-bottom: 24px;
}

.form__success h3 {
  font-size: 32px;
  color: #fff;
  font-style: italic;
  margin-bottom: 16px;
}

.form__success p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.form.is-hidden { display: none; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg);
  padding: 48px var(--pad) 56px;
  text-align: center;
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--green-deep);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__row a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__row a:hover { color: var(--terra); }

.footer__legal {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
  font-style: italic;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ≥ 768 ---------- */
@media (min-width: 768px) {
  body { font-size: 17px; }

  .values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .hero__cta-row {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .form {
    /* keep single column on form for clarity */
  }
}

@media (min-width: 1024px) {
  .story__inner { padding-left: 80px; }
}

/* ---------- Kampanya görselleri ---------- */
.campaign-banners {
  padding: 56px 0;
}
.campaign-banners__head {
  text-align: center;
  margin-bottom: 30px;
}
.campaign-banners__head h2 {
  margin-top: 12px;
}
.campaign-banners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .campaign-banners__grid { grid-template-columns: 1fr 1fr; }
}
.campaign-banner {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.campaign-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}
.campaign-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Floating WhatsApp FAB (tüm sayfalarda) ---------- */
.wa-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #073B19;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.6s ease-in-out infinite;
}

.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.wa-fab svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .wa-fab__label-long { display: none; }
}
@media (min-width: 601px) {
  .wa-fab__label-short { display: none; }
}
