/* ==========================================================================
   Kahve Hikayesi - kahvehikayesi.com.tr
   Single-Origin Coffee Subscription — Storytelling Longread Style
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  interpolate-size: allow-keywords;
  --bg: #FDF8F0;
  --surface: #F3EBE0;
  --surface-2: #EDE3D5;
  --ink: #3D1E10;
  --ink-soft: #6B4C3A;
  --accent: #8C1C3A;
  --accent-2: #C7956D;
  --line: rgba(61, 30, 16, 0.12);
  --line-strong: rgba(61, 30, 16, 0.25);
  --header-h: 72px;
  --container: 1180px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: -0.01em;
  line-height: 1.65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   3. SKIP LINK
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  font-size: 14px;
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   4. CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* --------------------------------------------------------------------------
   5. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  letter-spacing: -0.012em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.section-eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 24px;
}

.handwriting {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.long-text,
.footer__contact a,
td {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1), transform 180ms, box-shadow 240ms, color 240ms;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: #FDF8F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(140, 28, 58, 0.35);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary::after {
  content: '\2192';
  transition: transform 240ms;
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms, transform 180ms, color 240ms;
  text-decoration: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   7. HEADER (sticky-with-morph)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1080;
  background: rgba(253, 248, 240, 0.92);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 0;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: none;
  z-index: 1;
}

.site-header.scrolled {
  background: rgba(253, 248, 240, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
  text-decoration: none;
  color: var(--ink);
}

.logo__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.logo__text {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 1.15rem;
}

/* --------------------------------------------------------------------------
   8. NAVIGATION
   -------------------------------------------------------------------------- */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 240ms;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2, .7, .2, 1);
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link.is-active {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--surface) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 240ms, color 240ms, transform 180ms;
}

.nav-cta:hover {
  background: var(--accent);
  color: #FDF8F0 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(140, 28, 58, 0.3);
}

.nav-desktop .nav-cta::after {
  display: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   9. NAV TOGGLE (hamburger)
   -------------------------------------------------------------------------- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1), opacity 240ms;
  transform-origin: center;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   10. MOBILE DRAWER
   -------------------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed; height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
  padding: calc(var(--header-h) + 24px) 32px 32px;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  z-index: 2;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1), color 240ms;
}

.drawer-close:hover {
  background: var(--surface);
  color: var(--accent);
}

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer__link {
  display: block;
  padding: 14px 0;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}

.mobile-drawer__link:hover,
.mobile-drawer__link.is-active {
  color: var(--accent);
  padding-left: 8px;
}

/* --------------------------------------------------------------------------
   11. MAIN CONTENT OFFSET
   -------------------------------------------------------------------------- */
main {
  padding-top: var(--header-h);
}

/* --------------------------------------------------------------------------
   12. HERO SECTION (full-bleed with parallax)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/assets/images/hero-coffee-origin.jpg') center/cover no-repeat;
  will-change: transform;
  overflow: hidden;
}
.hero__bg .hero__img { display: none; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(61, 30, 16, 0.35) 0%, rgba(61, 30, 16, 0.65) 100%);
}

.hero__img {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 0;
  width: 100%; max-width: 1480px;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: clamp(2rem, 8vw, 6rem) clamp(16px, 4vw, 32px);
  color: #FDF8F0;
}

.hero__eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero__title {
  color: #FDF8F0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.92;
  color: #FDF8F0;
}

.hero__cta .btn-primary {
  background: var(--accent);
  color: #FDF8F0;
}

.hero__cta .btn-primary:hover {
  background: var(--accent-2);
  color: var(--ink);
}

/* Steam decoration */
.hero__steam {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 28px;
  margin-bottom: 28px;
}

.hero__steam .steam-line {
  position: relative;
  left: auto;
}

/* Trust strip */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(253, 248, 240, 0.88);
  letter-spacing: 0.04em;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   13. COFFEE BEAN JOURNEY LINE (theme-signature SVG line on left)
   -------------------------------------------------------------------------- */
.bean-journey {
  position: fixed;
  left: clamp(16px, 3vw, 48px);
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 10;
  pointer-events: none;
}

.bean-journey__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bean-journey__bean {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 600ms;
}

.bean-journey__bean.is-visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .bean-journey {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   14. SECTION STYLES
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section--surface {
  background: var(--surface);
}

.section--dark {
  background: var(--ink);
  color: var(--bg);
}

.section--dark h2,
.section--dark h3 {
  color: var(--bg);
}

.section--dark .section-eyebrow {
  color: var(--accent-2);
}

/* Center vertical line decoration */
.section--timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background: var(--line-strong);
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .section--timeline::before {
    left: 24px;
  }
}

/* --------------------------------------------------------------------------
   15. TIMELINE / JOURNEY SECTION (#yolculuk)
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}

.timeline__item:nth-child(odd) .timeline__content {
  grid-column: 1;
  text-align: right;
  padding-right: 32px;
}

.timeline__item:nth-child(odd) .timeline__image {
  grid-column: 3;
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 3;
  padding-left: 32px;
}

.timeline__item:nth-child(even) .timeline__image {
  grid-column: 1;
}

.timeline__dot {
  grid-column: 2;
  grid-row: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  margin: 6px auto 0;
  position: relative;
  z-index: 2;
}

.timeline__step {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.timeline__content h3 {
  margin-bottom: 10px;
}

.timeline__content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: box-shadow 360ms cubic-bezier(.2, .7, .2, 1);
}

.timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms;
}

.timeline__image:hover img {
  transform: scale(1.03);
  filter: brightness(1.05) saturate(1.1);
}

.timeline__image:hover {
  box-shadow: 0 8px 24px -8px rgba(140, 28, 58, 0.2);
}

@media (max-width: 768px) {
  .timeline__item {
    grid-template-columns: 32px 1fr;
  }

  .timeline__dot {
    grid-column: 1;
  }

  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
    text-align: left;
    padding: 0 0 0 16px;
  }

  .timeline__item:nth-child(odd) .timeline__image,
  .timeline__item:nth-child(even) .timeline__image {
    grid-column: 2;
    margin-top: 16px;
  }
}

/* --------------------------------------------------------------------------
   16. ORIGIN / FARM SECTION (#ciftlik)
   -------------------------------------------------------------------------- */
.origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.origin__image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.origin__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.origin__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 30, 16, 0.2), transparent 40%);
}

.origin__details {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.origin__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.origin__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.origin__tag svg {
  width: 14px;
  height: 14px;
}

.origin__notes {
  margin-top: 24px;
}

.origin__notes h4 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  margin-bottom: 8px;
}

.origin__notes p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.tasting-wheel {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.tasting-note {
  padding: 8px 16px;
  border: 1px solid var(--accent-2);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: background 240ms, color 240ms, transform 240ms, box-shadow 240ms;
}

.tasting-note:hover {
  background: var(--accent);
  color: #FDF8F0;
  box-shadow: 0 2px 10px -3px rgba(140, 28, 58, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .origin {
    grid-template-columns: 1fr;
  }

  .origin__image {
    max-width: 100%;
  }
}

/* --------------------------------------------------------------------------
   17. BOX CONTENTS (#kutu)
   -------------------------------------------------------------------------- */
.box-contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.box-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px 16px;
  padding: 24px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1), box-shadow 360ms;
  min-width: 0;
}

.box-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(140, 28, 58, 0.18);
}

.box-item__icon {
  grid-column: 1; grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  color: var(--accent);
  align-self: start;
}

.box-item h4 {
  grid-column: 2; grid-row: 1;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1rem;
  margin: 0 0 4px;
  min-width: 0;
}

.box-item p {
  grid-column: 2; grid-row: 2;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .box-item { padding: 18px; gap: 6px 12px; }
  .box-item__icon { width: 32px; height: 32px; }
}

/* --------------------------------------------------------------------------
   18. SUBSCRIPTION PLANS (#abonelik)
   -------------------------------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.plan-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  text-align: center;
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1), box-shadow 360ms;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -14px rgba(140, 28, 58, 0.2);
}

.plan-card--featured {
  border-color: var(--accent);
  background: var(--surface);
}

.plan-card--featured::before {
  content: 'Pop\00FCler';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FDF8F0;
  padding: 4px 18px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card__name {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.plan-card__amount {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.plan-card__price {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.plan-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.plan-card__period {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.plan-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.plan-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

.plan-card__excluded {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.plan-card__excluded li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: line-through;
  opacity: 0.6;
}

.plan-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.plan-card--featured .btn-primary {
  background: var(--accent);
}

@media (max-width: 768px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   19. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1), box-shadow 360ms;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -10px rgba(140, 28, 58, 0.12);
}

.testimonial::before {
  content: '\201C';
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 4rem;
  color: var(--accent-2);
  position: absolute;
  top: 16px;
  left: 20px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding-top: 24px;
  font-style: italic;
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.88rem;
}

.testimonial__meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   20. PROCESS STEPS
   -------------------------------------------------------------------------- */
.process {
  counter-reset: step;
  margin-top: 40px;
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), background 280ms;
  border-radius: 4px;
}

.process__step:hover {
  transform: translateX(4px);
  background: rgba(199, 149, 109, 0.04);
}

.process__number {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-2);
  opacity: 0.6;
  line-height: 1;
}

.process__number::before {
  content: counter(step, decimal-leading-zero) '.';
}

.process__body h3 {
  margin-bottom: 6px;
}

.process__body p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.process__time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
  display: inline-block;
  padding: 2px 10px;
  background: rgba(140, 28, 58, 0.08);
  border-radius: 4px;
}

@media (max-width: 640px) {
  .process__step {
    grid-template-columns: 1fr;
  }

  .process__number {
    font-size: 1.6rem;
  }
}

/* --------------------------------------------------------------------------
   21. FAQ (pure CSS animated, NO JS)
   -------------------------------------------------------------------------- */
.faq {
  margin-top: 40px;
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1);
}

.faq-item:hover {
  transform: translateX(2px);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  color: var(--ink);
  transition: color 240ms;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-2);
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item > .faq-answer {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4, 0, .2, 1), padding-block-end 360ms cubic-bezier(.4, 0, .2, 1);
}

.faq-item[open] > .faq-answer {
  height: auto;
  padding-block-end: 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-answer {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   22. REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2, .7, .2, 1), transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

html.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Allow hover/focus transforms to override reveal end-state */
.reveal.is-in.btn--primary:hover,
.reveal.is-in.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(140, 28, 58, 0.35);
}
.reveal.is-in.btn--outline:hover,
.reveal.is-in.btn--outline:focus-visible {
  transform: translateY(-2px);
}
.reveal.is-in.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -14px rgba(140, 28, 58, 0.2);
}
.reveal.is-in.box-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(140, 28, 58, 0.18);
}
.reveal.is-in.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -10px rgba(140, 28, 58, 0.15);
}
.reveal.is-in.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px -10px rgba(140, 28, 58, 0.12);
}
.reveal.is-in.process__step:hover {
  transform: translateX(4px);
}
.reveal.is-in.faq-item:hover {
  transform: translateX(2px);
}

/* Stagger support */
.reveal[style*="--i:1"] { transition-delay: calc(1 * 80ms); }
.reveal[style*="--i:2"] { transition-delay: calc(2 * 80ms); }
.reveal[style*="--i:3"] { transition-delay: calc(3 * 80ms); }
.reveal[style*="--i:4"] { transition-delay: calc(4 * 80ms); }
.reveal[style*="--i:5"] { transition-delay: calc(5 * 80ms); }
.reveal[style*="--i:6"] { transition-delay: calc(6 * 80ms); }
.reveal[style*="--i:7"] { transition-delay: calc(7 * 80ms); }
.reveal[style*="--i:8"] { transition-delay: calc(8 * 80ms); }

/* --------------------------------------------------------------------------
   23. COUNTER / STATS
   -------------------------------------------------------------------------- */
.stat {
  text-align: center;
}

.stat__number {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.stats-row {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0;
}

/* --------------------------------------------------------------------------
   24. MARQUEE
   -------------------------------------------------------------------------- */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.marquee-strip__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
}

.marquee-strip__item {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.marquee-strip__item::after {
  content: '\00B7';
  color: var(--accent-2);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-strip__track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   25. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(253, 248, 240, 0.8);
  padding: clamp(3rem, 8vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(24px, 4vw, 48px);
}

.footer__brand .logo {
  color: var(--bg);
  margin-bottom: 16px;
}

.footer__brand .logo__icon {
  color: var(--accent-2);
}

.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer__est {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer__heading {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.9rem;
  color: var(--bg);
  margin-bottom: 16px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.88rem;
  color: rgba(253, 248, 240, 0.7);
  transition: color 240ms, padding-left 240ms;
}

.footer__nav a:hover {
  color: var(--accent-2);
  padding-left: 4px;
}

.footer__contact p {
  font-size: 0.88rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer__contact a {
  color: rgba(253, 248, 240, 0.8);
  transition: color 240ms;
}

.footer__contact a:hover {
  color: var(--accent-2);
}

.footer__bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 20px 0;
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   26. COOKIE BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2, .7, .2, 1), opacity 240ms;
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.4);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner__text a {
  color: var(--accent-2);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 44px;
  transition: background 240ms, color 240ms, transform 180ms;
}

.cookie-btn--accept {
  background: var(--accent);
  color: #FDF8F0;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--accept:hover {
  background: var(--accent-2);
  color: var(--ink);
  box-shadow: 0 4px 12px -4px rgba(199, 149, 109, 0.4);
}

.cookie-btn--reject {
  background: rgba(253, 248, 240, 0.15);
  color: var(--bg);
}

.cookie-btn--reject:hover {
  background: rgba(253, 248, 240, 0.25);
  color: var(--bg);
}

.cookie-btn--settings {
  background: transparent;
  color: rgba(253, 248, 240, 0.7);
  border: 1px solid rgba(253, 248, 240, 0.2);
}

.cookie-btn--settings:hover {
  background: rgba(253, 248, 240, 0.1);
  color: var(--bg);
}

@media (min-width: 1024px) {
  .cookie-banner {
    left: 24px;
    right: auto;
    max-width: 420px;
  }
}

/* --------------------------------------------------------------------------
   27. PAGE HEADER (for inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--surface);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  text-align: center;
  position: relative;
}

.page-header__eyebrow {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-header__sub {
  max-width: 600px;
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   28. TABLE SCROLL WRAPPER
   -------------------------------------------------------------------------- */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}

:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}

table {
  border-collapse: collapse;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--surface);
  color: var(--ink);
}

td {
  color: var(--ink-soft);
}

tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   29. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-channels {
  display: grid;
  gap: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4, 0, .2, 1), background 240ms;
  border-radius: 4px;
  padding-left: 8px;
  padding-right: 8px;
}

.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface);
}

.contact-row__icon {
  width: 20px;
  height: 20px;
  color: var(--ink-soft);
  margin-top: 2px;
  transition: color 240ms;
}

.contact-row:hover .contact-row__icon {
  color: var(--accent);
}

.contact-row__label {
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.contact-row__value {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact-row__value a {
  color: var(--ink-soft);
  transition: color 240ms;
}

.contact-row__value a:hover {
  color: var(--accent);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 240ms, box-shadow 240ms;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(140, 28, 58, 0.1);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.field-checkbox label {
  font-size: 0.85rem;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.field-error {
  font-size: 0.8rem;
  color: var(--accent);
  display: none;
}

.field.has-error .field-error {
  display: block;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--accent);
}

.form-status {
  padding: 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  display: none;
}

.form-status--success {
  display: block;
  background: rgba(34, 139, 34, 0.1);
  color: #228B22;
  border: 1px solid rgba(34, 139, 34, 0.2);
}

.form-status--error {
  display: block;
  background: rgba(140, 28, 58, 0.08);
  color: var(--accent);
  border: 1px solid rgba(140, 28, 58, 0.15);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

/* --------------------------------------------------------------------------
   30. LEGAL PAGE BODY
   -------------------------------------------------------------------------- */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3rem, 8vw, 5rem);
}

.legal-body h2 {
  margin: clamp(2rem, 4vw, 3rem) 0 16px;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.legal-body h3 {
  margin: 24px 0 12px;
  font-size: 1.1rem;
}

.legal-body p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.92rem;
}

.legal-body ul,
.legal-body ol {
  margin: 12px 0 20px 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.legal-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-body strong {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   31. ABOUT PAGE — TEAM CARDS
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1), box-shadow 360ms;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -10px rgba(140, 28, 58, 0.15);
}

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--surface);
  overflow: hidden;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   32. FOCUS VISIBLE
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   33. NICHE-SPECIFIC ANIMATIONS (coffee themed)
   -------------------------------------------------------------------------- */

/* 1. Steam rising from coffee cup */
@keyframes steam {
  0% { transform: translateY(0) scaleX(1) rotate(0deg); opacity: 0; }
  15% { opacity: 0.5; }
  50% { transform: translateY(-16px) scaleX(1.4) rotate(4deg); opacity: 0.25; }
  100% { transform: translateY(-32px) scaleX(0.6) rotate(-3deg); opacity: 0; }
}

.steam-line {
  position: absolute;
  width: 2px;
  height: 22px;
  background: linear-gradient(to top, var(--accent-2), rgba(199, 149, 109, 0.2));
  border-radius: 4px;
  opacity: 0;
  animation: steam 3s cubic-bezier(.4, 0, .2, 1) infinite;
}

.steam-line:nth-child(2) {
  animation-delay: 0.8s;
  left: 10px;
  height: 18px;
}

.steam-line:nth-child(3) {
  animation-delay: 1.6s;
  left: 20px;
  height: 16px;
}

/* 2. Bean float / drift */
@keyframes beanFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(6deg); }
}

.bean-float {
  animation: beanFloat 4s ease-in-out infinite;
}

/* 3. Pour / drip animation on CTA active */
@keyframes pour {
  0% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

.btn-primary:active::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  border-radius: inherit;
  animation: pour 300ms ease-out forwards;
}

/* 4. Grinding / roast shimmer on cards */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.plan-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 30%, rgba(199, 149, 109, 0.08) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

/* 5. Coffee ring stain decoration */
@keyframes ringPulse {
  0%, 100% { opacity: 0.06; transform: scale(1); }
  50% { opacity: 0.1; transform: scale(1.02); }
}

.coffee-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  opacity: 0.06;
  animation: ringPulse 10s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .steam-line,
  .bean-float,
  .coffee-ring,
  .plan-card--featured::after {
    animation: none;
  }

  .btn-primary:active::before {
    animation: none;
  }

  .marquee-strip__track {
    animation: none;
  }

  .plan:hover,
  .plan--featured:hover,
  .box-item:hover,
  .team-card:hover,
  .testimonial:hover,
  .process__step:hover,
  .faq-item:hover,
  .timeline__image:hover,
  .cookie-btn:hover,
  a.hero__cta:hover,
  .btn--primary:hover,
  .btn--outline:hover,
  .reveal.is-in.btn--primary:hover,
  .reveal.is-in.btn--outline:hover,
  .reveal.is-in.hero__cta:hover,
  .reveal.is-in.plan:hover,
  .reveal.is-in.box-item:hover,
  .reveal.is-in.team-card:hover,
  .reveal.is-in.testimonial:hover,
  .reveal.is-in.process__step:hover,
  .reveal.is-in.faq-item:hover,
  .cta-band__btn:hover,
  .reveal.is-in.cta-band__btn:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   34. SITE MAP PAGE
   -------------------------------------------------------------------------- */
.sitemap-list {
  list-style: none;
}

.sitemap-list li {
  padding: 8px 0;
}

.sitemap-list a {
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 240ms, padding-left 240ms;
}

.sitemap-list a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.sitemap-list a::before {
  content: '\2192';
  color: var(--accent-2);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   35. 404 PAGE
   -------------------------------------------------------------------------- */
.error-page {
  text-align: center;
  padding: clamp(4rem, 12vw, 8rem) 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page__code {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--accent-2);
  opacity: 0.3;
  line-height: 1;
}

.error-page h1 {
  margin: 16px 0 12px;
}

.error-page p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* --------------------------------------------------------------------------
   36. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .nav-toggle,
  .mobile-drawer,
  .drawer-backdrop,
  .cookie-banner,
  .bean-journey,
  .marquee-strip {
    display: none !important;
  }

  main {
    padding-top: 0 !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   37. PLAN CARDS (HTML class compat)
   -------------------------------------------------------------------------- */
.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  text-align: center;
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1), box-shadow 360ms;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -14px rgba(140, 28, 58, 0.2);
}

.plan--featured {
  border-color: var(--accent);
  background: var(--surface);
}

.plan--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 30%, rgba(199, 149, 109, 0.08) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #FDF8F0;
  padding: 4px 18px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

.plan__name {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.plan__amount {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.plan__price {
  margin-bottom: 4px;
}

.plan__price-value {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}

.plan__price-currency {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.plan__body {
  text-align: left;
  margin: 24px 0;
}

.plan__includes-title,
.plan__excludes-title {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
  margin-top: 16px;
}

.plan__includes-title:first-child {
  margin-top: 0;
}

.plan__list {
  list-style: none;
  margin-bottom: 8px;
}

.plan__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan__list--included li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  flex-shrink: 0;
}

.plan__list--excluded li {
  color: var(--ink-soft);
  text-decoration: line-through;
  opacity: 0.6;
}

.plan__list--excluded li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
  flex-shrink: 0;
}

.plan__footer {
  margin-top: 8px;
}

.plan__footer a {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   38. BUTTON ALIASES (btn--primary / btn--outline)
   -------------------------------------------------------------------------- */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--surface);
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4, 0, .2, 1), transform 180ms, box-shadow 240ms, color 240ms;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent);
  color: #FDF8F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -6px rgba(140, 28, 58, 0.35);
}

.btn--primary::after {
  content: '\2192';
  transition: transform 240ms;
}

.btn--primary:hover::after {
  transform: translateX(4px);
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 240ms, transform 180ms, color 240ms;
  text-decoration: none;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px -6px rgba(61, 30, 16, 0.15);
}

.plan--featured:hover {
  box-shadow: 0 18px 44px -14px rgba(140, 28, 58, 0.25), 0 0 0 1px var(--accent);
}

.plan--featured .btn--primary {
  background: var(--accent);
  color: #FDF8F0;
}

a.hero__cta {
  background: var(--accent);
  color: #FDF8F0;
}

a.hero__cta:hover,
a.hero__cta:focus-visible {
  background: var(--accent-2);
  color: var(--ink);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px -6px rgba(199, 149, 109, 0.55), 0 0 20px -4px rgba(199, 149, 109, 0.25);
}

.reveal.is-in.hero__cta:hover,
.reveal.is-in.hero__cta:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px -6px rgba(199, 149, 109, 0.55), 0 0 20px -4px rgba(199, 149, 109, 0.25);
}

a.hero__cta::after {
  content: '\2192';
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1);
}

a.hero__cta:hover::after {
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   39. ORIGIN GRID (HTML class compat for #ciftlik)
   -------------------------------------------------------------------------- */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.origin-grid__image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.origin-grid__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1), filter 600ms;
}

.origin-grid__image:hover img {
  transform: scale(1.03);
  filter: brightness(1.04) saturate(1.08);
}

.origin-grid__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 30, 16, 0.2), transparent 40%);
}

.origin-grid__details {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

@media (max-width: 768px) {
  .origin-grid {
    grid-template-columns: 1fr;
  }
}

.origin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.origin-meta__tag {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 16px;
  background: var(--surface);
  border-radius: 8px;
}

.origin-meta__label {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.origin-meta__value {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.88rem;
}

.tasting-notes {
  margin-top: 24px;
}

.tasting-notes__title {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.tasting-notes__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.origin-story {
  margin-top: 24px;
}

.origin-story p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   40. TRUST BADGES
   -------------------------------------------------------------------------- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(253, 248, 240, 0.88);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   41. PROCESS CONTENT (HTML class compat)
   -------------------------------------------------------------------------- */
.process__step .process__number::before {
  content: none;
}

.process__content h3 {
  margin-bottom: 6px;
}

.process__content p {
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.process__duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
  display: inline-block;
  padding: 2px 10px;
  background: rgba(140, 28, 58, 0.08);
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   42. TESTIMONIAL HTML STRUCTURE
   -------------------------------------------------------------------------- */
.testimonial__body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-top: 24px;
  font-style: italic;
}

.testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial__author {
  font-weight: 700;
  font-size: 0.88rem;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   43. LONGREAD INTRO & MISC
   -------------------------------------------------------------------------- */
.longread-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.longread-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  text-indent: 2em;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  max-width: var(--container);
  margin: 0 auto;
}

.cta-band {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.cta-band__title {
  color: var(--bg);
  margin-bottom: 16px;
}

.cta-band__text {
  color: rgba(253, 248, 240, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-band__btn:hover,
.cta-band__btn:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px -6px rgba(199, 149, 109, 0.5);
}

.reveal.is-in.cta-band__btn:hover,
.reveal.is-in.cta-band__btn:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px -6px rgba(199, 149, 109, 0.5);
}

.section-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.section-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
}

.plans__delivery {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 28px;
}

.page-header__subtitle {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.contact-form-wrapper h2 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   44. FOOTER VARIANTS (iletisim / hakkimizda compat)
   -------------------------------------------------------------------------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  color: var(--bg);
  margin-bottom: 16px;
}

.footer-brand .logo__icon {
  color: var(--accent-2);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(253, 248, 240, 0.7);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.9rem;
  color: var(--bg);
  margin-bottom: 6px;
}

.footer-col a,
.footer-col p {
  font-size: 0.88rem;
  color: rgba(253, 248, 240, 0.7);
  transition: color 240ms, padding-left 240ms;
}

.footer-col a:hover {
  color: var(--accent-2);
  padding-left: 4px;
}

.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 20px 0;
  border-top: 1px solid rgba(253, 248, 240, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  color: rgba(253, 248, 240, 0.6);
  font-size: 0.78rem;
  transition: color 240ms;
}

.footer-legal a:hover {
  color: var(--accent-2);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h4 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.9rem;
  color: var(--bg);
  margin-bottom: 6px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(253, 248, 240, 0.7);
  transition: color 240ms, padding-left 240ms;
}

.footer__links a:hover {
  color: var(--accent-2);
  padding-left: 4px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg);
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo .logo__icon {
  color: var(--accent-2);
}

.footer__logo span {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 1.15rem;
}

/* header-inner compat (iletisim variant) */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* nav-toggle bare spans compat */
.nav-toggle > span:not([class]) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1), opacity 240ms;
  transform-origin: center;
}

.nav-toggle.is-open > span:not([class]):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open > span:not([class]):nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open > span:not([class]):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile-drawer bare nav compat */
.mobile-drawer nav:not(.mobile-drawer__nav) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer nav:not(.mobile-drawer__nav) a {
  display: block;
  padding: 14px 0;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}

.mobile-drawer nav:not(.mobile-drawer__nav) a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--surface) !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
  transition: background 240ms;
  border-bottom: none !important;
}

.nav-cta-mobile:hover {
  background: var(--accent);
  color: #FDF8F0 !important;
  padding-left: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .plan--featured::after {
    animation: none;
  }
}

/* drawer-close hidden — hamburger handles close */
.drawer-close { display: none !important; }
