/* Yerinde Tatlar — tek sayfa tema (krem, adaçayı, terrakota) */
:root {
  --cream: #f4efe6;
  --cream-dark: #e8dfd0;
  --sage: #5f6f52;
  --sage-dark: #4a5741;
  --sage-soft: rgba(95, 111, 82, 0.12);
  --terra: #b85c3c;
  --terra-dark: #9a4a30;
  --ink: #2c2824;
  --ink-muted: #5c5650;
  --white: #fff;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 18px 50px rgba(44, 40, 36, 0.08);
  --shadow-card: 0 12px 40px rgba(44, 40, 36, 0.06);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 80% at 100% -10%, rgba(184, 92, 60, 0.08), transparent 45%),
    radial-gradient(ellipse 80% 50% at 0% 100%, rgba(95, 111, 82, 0.1), transparent 50%);
  min-height: 100vh;
}

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

a {
  color: var(--sage-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95, 111, 82, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  border-radius: 50%;
  box-shadow: var(--shadow-card);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--sage-dark);
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--ink-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

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

.btn-nav {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 0.75rem;
  background: var(--sage-soft);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  background: var(--sage-dark);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.5rem 1.75rem;
    background: rgba(244, 239, 230, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(95, 111, 82, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .nav-list a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1.1rem;
  }

  .btn-nav {
    text-align: center;
    width: 100%;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(95, 111, 82, 0.35);
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--sage-soft);
  box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(44, 40, 36, 0.15);
}

.btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra-dark);
}

.btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 92, 60, 0.12), transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(95, 111, 82, 0.1), transparent 38%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

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

  .hero-badges {
    justify-content: center;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.accent-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 4rem);
  color: var(--sage-dark);
  display: inline-block;
  margin-inline: 0.15em;
  vertical-align: -0.15em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  max-width: 36ch;
}

@media (max-width: 900px) {
  .hero-lead {
    margin-inline: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-badges li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
  background: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
  max-width: 22rem;
  text-align: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(135deg, rgba(184, 92, 60, 0.35), rgba(95, 111, 82, 0.25));
  z-index: -1;
  opacity: 0.6;
}

.hero-logo {
  margin-inline: auto;
  border-radius: 50%;
}

.hero-card-caption {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.section-title.centered {
  text-align: center;
}

.section-sub {
  margin: 0;
  color: var(--ink-muted);
}

.section-products {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55));
}

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

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(95, 111, 82, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.product-icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.product-title {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--sage-dark);
}

.product-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* About split */
.section-about {
  background: var(--cream-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split-visual {
    min-height: 12rem;
  }
}

.split-visual {
  position: relative;
  min-height: 16rem;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}

.blob-1 {
  width: 220px;
  height: 220px;
  background: rgba(184, 92, 60, 0.25);
  top: 10%;
  left: 10%;
}

.blob-2 {
  width: 180px;
  height: 180px;
  background: rgba(95, 111, 82, 0.2);
  bottom: 5%;
  right: 5%;
}

.pullquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 20rem;
}

.pullquote p {
  margin: 0;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--sage-dark);
  line-height: 1.3;
}

.split-copy p {
  color: var(--ink-muted);
}

/* Why */
.section-why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(95, 111, 82, 0.1);
}

.why-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* CTA */
.section-cta {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.cta-box {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(74, 87, 65, 0.35);
  overflow: hidden;
}

.cta-inner {
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
}

.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
}

.cta-text {
  margin: 0 0 1.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cta-box .btn-primary {
  background: var(--white);
  color: var(--sage-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.cta-box .btn-primary:hover {
  background: var(--cream);
  color: var(--sage-dark);
}

.cta-box .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.cta-box .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.cta-note {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.5;
}

.cta-note code {
  font-size: 0.78em;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

/* Policies */
.section-policies {
  background: var(--cream-dark);
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.policy-acc {
  max-width: 800px;
  margin-inline: auto;
}

.policy-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(95, 111, 82, 0.12);
  overflow: hidden;
}

.policy-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--sage-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.policy-item summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--terra);
  border-bottom: 2px solid var(--terra);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.policy-item[open] summary::after {
  transform: rotate(-135deg);
}

.policy-body {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid rgba(95, 111, 82, 0.08);
}

.prose p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--ink);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }

  .footer-copy {
    text-align: right;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .footer-brand {
    justify-content: flex-start;
  }
}

.footer-brand img {
  border-radius: 50%;
}

.footer-tag {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-copy a {
  color: inherit;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.4s;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 -8px 40px rgba(44, 40, 36, 0.12);
  border: 1px solid rgba(95, 111, 82, 0.12);
}

.cookie-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  flex: 1;
  min-width: min(100%, 280px);
}

.cookie-actions {
  flex-shrink: 0;
}
