/* =====================================================================
   LOKMACI EFE — Ana Stil Dosyası (Açık / Şık Tema)
   Tasarım dili: "Şerbet ve Krema" — ferah krem/beyaz zemin, sıcak
   amber-şerbet vurguları, yumuşak gölgeler ve gerçek ürün fotoğrafları.
   ===================================================================== */

:root {
  /* Renk paleti — açık versiyon */
  --bg-dark: #fffaf2;          /* en açık zemin (eskiden koyu kahve) */
  --bg-darker: #fdf3e2;        /* topbar / hafif kontrast zemin */
  --bg-dark-2: #ffffff;        /* kart zemini */
  --cream: #fbf1de;            /* krem panel zemini */
  --cream-2: #f6e3c1;
  --amber: #e8a33b;
  --amber-light: #f4c06a;
  --amber-deep: #c97e1c;
  --syrup: #c2470f;
  --syrup-light: #e8732f;
  --text-light: #3a2a16;       /* header üstü açık zeminde koyu metin */
  --text-dark: #2c1d10;
  --ink-muted: #6b5640;
  --ink-muted-dark: #6b5840;
  --line: rgba(194, 122, 30, 0.18);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-deep: 0 24px 50px -28px rgba(120, 70, 20, 0.35);
  --shadow-soft: 0 14px 30px -18px rgba(120, 70, 20, 0.25);
  --container-w: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; line-height: 1.1; font-weight: 600; color: var(--text-dark); }
p { margin: 0 0 1em; line-height: 1.65; color: var(--ink-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

:focus-visible {
  outline: 3px solid var(--amber-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------- Topbar */
.topbar { background: var(--text-dark); border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.02em; }
.topbar__inner { display: flex; align-items: center; gap: 24px; padding: 8px 24px; color: var(--cream-2); }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__item--muted { display: none; }
.topbar__cta { margin-left: auto; color: var(--amber-light); font-weight: 600; }
@media (min-width: 640px) { .topbar__item--muted { display: inline-flex; } }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -22px rgba(120,70,20,0.4); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { color: var(--syrup); display: inline-flex; flex-shrink: 0; }
.brand__title { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.01em; }
.brand__sub { display: block; font-size: 0.68rem; color: var(--ink-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.brand--footer { margin-bottom: 14px; }

.main-nav { display: none; align-items: center; gap: 30px; font-weight: 500; }
.main-nav a { padding: 6px 2px; color: var(--ink-muted); border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.main-nav a:hover, .main-nav a.is-active { color: var(--syrup); border-color: var(--amber); }
.main-nav__cta { background: var(--syrup); color: #fff !important; padding: 10px 20px; border-radius: 999px; font-weight: 700; border-bottom: none !important; }
.main-nav__cta:hover { background: var(--syrup-light); }

.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 36px; background: transparent; border: none; padding: 6px; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--text-dark); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
}
@media (max-width: 899px) {
  .main-nav {
    position: fixed; inset: 0; top: 0;
    flex-direction: column; justify-content: center; align-items: center;
    background: #fffaf2;
    gap: 28px; font-size: 1.3rem;
    transform: translateY(-100%); opacity: 0;
    transition: transform .35s ease, opacity .3s ease;
    z-index: 49;
  }
  .main-nav.is-open { display: flex; transform: translateY(0); opacity: 1; }
  .main-nav__cta { margin-top: 10px; }
}

/* ---------------------------------------------------------------- Flash */
.flash-wrap { padding-top: 18px; }
.flash { padding: 12px 18px; border-radius: var(--radius-sm); margin-bottom: 12px; font-size: 0.92rem; border: 1px solid; }
.flash--basarili { background: rgba(76,150,65,0.1); border-color: rgba(76,150,65,0.35); color: #2f6b27; }
.flash--hata { background: rgba(196,76,60,0.1); border-color: rgba(196,76,60,0.35); color: #a8392a; }
.flash--bilgi, .flash--uyari { background: rgba(217,154,52,0.12); border-color: rgba(217,154,52,0.4); color: var(--amber-deep); }

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; background: radial-gradient(ellipse 120% 80% at 50% -10%, var(--cream), var(--bg-dark) 65%); padding: 56px 0 0; }
.hero__inner { position: relative; z-index: 2; display: grid; gap: 48px; padding-bottom: 70px; align-items: center; }
.eyebrow { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--syrup); margin-bottom: 14px; }
.eyebrow--dark { color: var(--syrup); }

.hero__title { font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--text-dark); }
.hero__title-accent { color: var(--syrup); font-style: italic; font-weight: 500; }
.hero__lead { font-size: 1.08rem; max-width: 540px; color: var(--ink-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink-muted); }
.hero__badge-ring { width: 9px; height: 9px; border-radius: 50%; background: var(--syrup); box-shadow: 0 0 0 4px rgba(194,71,15,0.16); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__oil { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.bubble { position: absolute; bottom: -40px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(194,71,15,0.18), rgba(194,71,15,0.02) 70%); opacity: 0; animation: rise 9s linear infinite; }
.b1 { left: 6%; width: 10px; height: 10px; animation-delay: 0s; }
.b2 { left: 16%; width: 6px; height: 6px; animation-delay: 1.4s; }
.b3 { left: 28%; width: 14px; height: 14px; animation-delay: 2.6s; }
.b4 { left: 45%; width: 8px; height: 8px; animation-delay: 0.8s; }
.b5 { left: 62%; width: 12px; height: 12px; animation-delay: 3.4s; }
.b6 { left: 75%; width: 7px; height: 7px; animation-delay: 1.9s; }
.b7 { left: 86%; width: 11px; height: 11px; animation-delay: 4.2s; }
.b8 { left: 94%; width: 5px; height: 5px; animation-delay: 2.2s; }
@keyframes rise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  10% { opacity: 0.8; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-560px) scale(1.1); opacity: 0; }
}

/* Hero — gerçek fotoğraf yığını */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero-photo-stack { position: relative; width: min(380px, 82vw); aspect-ratio: 1 / 1.05; }
.hero-photo { position: absolute; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); border: 6px solid #fff; }
.hero-photo--main { width: 78%; height: 78%; top: 14%; left: 4%; z-index: 1; }
.hero-photo--top { width: 52%; height: 52%; bottom: 0; right: 0; z-index: 2; animation: float-soft 5s ease-in-out infinite; }
@keyframes float-soft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-photo__badge {
  position: absolute; top: 6%; right: 2%; z-index: 3;
  background: #fff; border-radius: 999px; padding: 12px 18px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.hero-photo__badge strong { font-family: var(--font-display); color: var(--syrup); font-size: 1.05rem; line-height: 1.1; }
.hero-photo__badge span { font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }

@media (min-width: 940px) { .hero__inner { grid-template-columns: 1.15fr 0.85fr; } }

/* ----------------------------------------------------------- Dividers */
.syrup-divider { color: var(--bg-dark); line-height: 0; }
.syrup-divider svg { width: 100%; height: 32px; display: block; }
.syrup-divider--hero { position: relative; z-index: 2; color: var(--cream); margin-top: -2px; }
.section--cream + .site-footer .syrup-divider,
.site-footer .syrup-divider { color: var(--cream); }

/* ----------------------------------------------------------------- Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--whatsapp { background: #25D366; color: #08381c; box-shadow: 0 14px 26px -12px rgba(37,211,102,0.45); }
.btn--whatsapp:hover { background: #2fe273; }
.btn--ghost { border-color: rgba(44,29,16,0.25); color: var(--text-dark); }
.btn--ghost:hover { border-color: var(--syrup); color: var(--syrup); }
.btn--dark { background: var(--syrup); color: #fff; }
.btn--dark:hover { background: var(--syrup-light); }
.btn--outline { border-color: var(--ink-muted-dark); color: var(--text-dark); }
.btn--outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--danger { background: rgba(196,76,60,0.1); color: #a8392a; border-color: rgba(196,76,60,0.35); }
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 8px 16px; font-size: 0.82rem; }

/* ----------------------------------------------------------------- Sections */
.section { padding: 88px 0; }
.section--cream { background: var(--cream); color: var(--text-dark); }
.section--cream p, .section--cream .section-head__lead { color: var(--ink-muted-dark); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.section--cream h2 { color: var(--text-dark); }
.section h2 { color: var(--text-dark); }
.section-cta { text-align: center; margin-top: 44px; }

/* Reveal-on-scroll — sadece JS çalışıyorsa ve tarayıcı destekliyorsa gizlenir.
   JS kapalıysa veya hata verirse içerik daima görünür kalır (bkz. html.js-reveal). */
html.js-reveal [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js-reveal [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------- Features */
.features { padding-top: 64px; padding-bottom: 64px; }
.features__grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 22px; box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.feature-card h3 { font-size: 1.05rem; color: var(--text-dark); }
.feature-card p { font-size: 0.92rem; margin-bottom: 0; }
.feature-card__ico { display: inline-flex; width: 46px; height: 46px; border-radius: 50%; margin-bottom: 16px; background: radial-gradient(circle at 35% 30%, var(--amber-light), var(--amber) 60%, var(--syrup)); box-shadow: 0 8px 16px -10px rgba(120,70,20,0.5); position: relative; }
.feature-card__ico::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); }
.ico-saat::after { border-radius: 0; inset: 13px; border: none; border-top: 2px solid rgba(255,255,255,0.75); border-right: 2px solid rgba(255,255,255,0.75); transform: rotate(20deg); }

/* ----------------------------------------------------------------- Lezzet kartları */
.lezzet-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.lezzet-grid--full { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.lezzet-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; text-align: center; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; }
.lezzet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.lezzet-card h3 { font-size: 1.12rem; color: var(--text-dark); }
.lezzet-card p { font-size: 0.9rem; margin-bottom: 0; }

.lezzet-card__visual { position: relative; width: 132px; height: 132px; margin: 0 auto 18px; border-radius: 50%; background: radial-gradient(circle at 50% 60%, var(--cream-2), var(--cream)); border: 1px solid var(--line); }
.lezzet-card__visual::before, .lezzet-card__visual::after { content: ""; position: absolute; border-radius: 50%; background: radial-gradient(circle at 32% 28%, var(--amber-light), var(--amber) 55%, var(--syrup)); box-shadow: 0 8px 14px -6px rgba(120,70,20,0.3); }

/* Gerçek fotoğraflı lezzet kartı görseli */
.lezzet-card__visual--photo { border-radius: 50%; overflow: hidden; background: none; border: 3px solid var(--cream-2); box-shadow: var(--shadow-soft); }
.lezzet-card__visual--photo img { width: 100%; height: 100%; object-fit: cover; }

.ico-big-lokma::before { width: 46px; height: 46px; top: 32px; left: 28px; }
.ico-big-lokma::after { width: 38px; height: 38px; top: 54px; left: 64px; }

.ico-big-simit { border-style: solid; }
.ico-big-simit::before { width: 76px; height: 76px; top: 28px; left: 28px; background: radial-gradient(circle, transparent 38%, var(--amber) 40%, var(--amber-light) 65%, var(--syrup) 100%); }
.ico-big-simit::after { width: 0; height: 0; }

.ico-big-acma::before { width: 88px; height: 88px; top: 22px; left: 22px; border-radius: 46% 54% 50% 50% / 50% 48% 52% 50%; background: radial-gradient(circle at 35% 30%, var(--amber-light), var(--amber-deep) 70%); }
.ico-big-acma::after { width: 0; height: 0; }

.ico-big-serbet::before { width: 42px; height: 42px; top: 30px; left: 30px; background: radial-gradient(circle at 32% 28%, var(--syrup-light), var(--syrup)); }
.ico-big-serbet::after { width: 36px; height: 36px; top: 56px; left: 62px; background: radial-gradient(circle at 32% 28%, var(--syrup-light), var(--syrup)); }

.ico-big-kase::before { width: 96px; height: 64px; top: 40px; left: 18px; border-radius: 50% 50% 46% 46%; background: linear-gradient(180deg, #fbf2dd, #e8cf9c); box-shadow: inset 0 6px 10px rgba(138,84,30,0.18); }
.ico-big-kase::after { width: 0; height: 0; box-shadow: 16px -2px 0 4px var(--syrup), -18px 4px 0 4px var(--amber), 4px 10px 0 3px var(--amber-light); top: 46px; left: 46px; }

.ico-big-kup::before { width: 34px; height: 34px; top: 36px; left: 36px; border-radius: 8px; background: linear-gradient(135deg, rgba(255,255,255,0.95), var(--cream-2)); box-shadow: 24px 10px 0 0 rgba(255,255,255,0.85), -4px 28px 0 0 rgba(244,196,104,0.5); }
.ico-big-kup::after { width: 0; height: 0; }

.ico-big-helva::before { width: 92px; height: 60px; top: 44px; left: 20px; border-radius: 50% 50% 40% 40%; background: radial-gradient(circle at 35% 25%, var(--amber-light), var(--amber-deep) 70%); }
.ico-big-helva::after { width: 14px; height: 14px; top: 36px; left: 60px; background: radial-gradient(circle, #7a8c4a, #56652f); box-shadow: 14px 4px 0 -2px #7a8c4a, -10px 6px 0 -3px #8a3214; }

/* ----------------------------------------------------------------- Organizasyonlar */
.org-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.org-pill { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 14px 20px; font-weight: 600; font-size: 0.92rem; color: var(--text-dark); box-shadow: var(--shadow-soft); transition: border-color .2s ease, transform .2s ease; }
.org-pill:hover { border-color: var(--amber); transform: translateY(-2px); }
.org-pill__ico { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; background: radial-gradient(circle at 32% 28%, var(--amber-light), var(--syrup)); }

/* ----------------------------------------------------------------- CTA band */
.cta-band { background: linear-gradient(120deg, var(--syrup-light), var(--syrup) 70%); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.2rem); margin-bottom: 0.3em; }
.cta-band p { margin-bottom: 0; color: #fff; opacity: 0.92; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----------------------------------------------------------------- Page hero (sub pages) */
.page-hero { padding: 64px 0 70px; background: radial-gradient(ellipse 120% 80% at 50% -10%, var(--cream), var(--bg-dark) 65%); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3rem); color: var(--text-dark); }
.page-hero__lead { max-width: 560px; margin: 0 auto; }

/* ----------------------------------------------------------------- Gallery */
.gallery-section { padding-top: 0; }
.gallery-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); border: 6px solid #fff; }

/* ----------------------------------------------------------------- Contact */
.contact-grid { display: grid; gap: 50px; grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-info h2, .contact-form-wrap h2 { color: var(--text-dark); font-size: 1.5rem; margin-bottom: 22px; }
.contact-info__item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-info__item strong { display: block; color: var(--text-dark); font-size: 0.95rem; }
.contact-info__item span { font-size: 0.86rem; color: var(--ink-muted-dark); }
.ico { display: inline-flex; width: 38px; height: 38px; border-radius: 50%; background: var(--syrup); flex-shrink: 0; position: relative; }
.ico::after { content: ""; position: absolute; inset: 11px; border: 2px solid #fff; }
.ico-phone::after { border-radius: 50% 50% 50% 0; }
.ico-whatsapp { background: #1f6b3a; }
.ico-whatsapp::after { border-radius: 50%; }
.ico-mail::after { border-radius: 3px; }
.ico-pin::after { border-radius: 50% 50% 50% 0; transform: rotate(45deg) translate(1px,-1px); }
.topbar .ico-phone { width: 16px; height: 16px; background: transparent; }
.topbar .ico-phone::after { inset: 3px; border-width: 1.5px; border-color: var(--amber-light); }

.contact-hours { margin-top: 26px; background: var(--cream); border-radius: var(--radius-md); padding: 18px 20px; }
.contact-hours h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: 10px; }
.contact-hours__row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }
.contact-hours__note { font-size: 0.82rem; margin: 8px 0 0; }

.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-deep); border: 1px solid var(--line); }
.form-row { margin-bottom: 18px; }
.form-row--split { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row--split { grid-template-columns: 1fr 1fr; } }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.input { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(44,29,16,0.16); background: #fffdf9; font-family: inherit; font-size: 0.95rem; color: var(--text-dark); transition: border-color .2s ease, box-shadow .2s ease; }
.input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,154,52,0.18); outline: none; }
.input--error { border-color: #c9483a; }
.form-error { display: block; font-size: 0.78rem; color: #c9483a; margin-top: 4px; }
textarea.input { resize: vertical; min-height: 100px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-dark); margin: 6px 0 18px; }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--text-dark); color: var(--cream-2); position: relative; }
.site-footer .syrup-divider { color: var(--bg-dark); }
.footer__grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); padding: 50px 24px 30px; }
.footer__col h3 { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; margin-bottom: 8px; font-size: 0.92rem; color: var(--cream-2); opacity: 0.85; }
.footer__col a:hover { color: var(--amber-light); opacity: 1; }
.footer__tagline { font-size: 0.88rem; max-width: 260px; color: var(--cream-2); opacity: 0.85; }
.site-footer .brand__title { color: #fff; }
.site-footer .brand__mark { color: var(--amber-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
.footer__bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; font-size: 0.8rem; color: var(--cream-2); opacity: 0.7; }

/* ----------------------------------------------------------------- WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 22px; right: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #08381c; display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 30px -10px rgba(20,80,40,0.45); animation: fab-pulse 2.6s ease-in-out infinite; }
@keyframes fab-pulse { 0%,100% { box-shadow: 0 16px 30px -10px rgba(20,80,40,0.45), 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 16px 30px -10px rgba(20,80,40,0.45), 0 0 0 10px rgba(37,211,102,0); } }

/* ----------------------------------------------------------------- Blog */
.blog-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.blog-card__visual { display: block; position: relative; height: 150px; background: radial-gradient(circle at 50% 60%, var(--cream-2), var(--cream)); }
.blog-card__visual::before, .blog-card__visual::after { content: ""; position: absolute; border-radius: 50%; background: radial-gradient(circle at 32% 28%, var(--amber-light), var(--amber) 55%, var(--syrup)); box-shadow: 0 8px 14px -6px rgba(120,70,20,0.3); }
.blog-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-family: var(--font-mono); font-size: 0.74rem; color: var(--syrup); text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.1rem; margin: 8px 0 8px; color: var(--text-dark); }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--syrup); }
.blog-card p { font-size: 0.9rem; flex: 1; }
.blog-card__link { font-weight: 700; font-size: 0.86rem; color: var(--syrup); align-self: flex-start; }
.blog-card__link:hover { color: var(--syrup-light); }

.page-hero--blog { padding-bottom: 56px; }

.blog-detail-grid { display: flex; justify-content: center; }
.blog-detail { max-width: 760px; width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-deep); }
.blog-detail__visual { position: relative; height: 200px; border-radius: var(--radius-md); margin-bottom: 28px; background: radial-gradient(circle at 50% 60%, var(--cream-2), var(--cream)); }
.blog-detail__visual::before, .blog-detail__visual::after { content: ""; position: absolute; border-radius: 50%; background: radial-gradient(circle at 32% 28%, var(--amber-light), var(--amber) 55%, var(--syrup)); box-shadow: 0 8px 14px -6px rgba(120,70,20,0.3); }
.blog-detail__body p { color: var(--text-dark); opacity: 0.85; font-size: 1.02rem; margin-bottom: 1.2em; }
.blog-detail__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.btn--ghost-dark { border-color: rgba(44,29,16,0.3); color: var(--text-dark); }
.btn--ghost-dark:hover { border-color: var(--syrup); color: var(--syrup); }

.empty-state { text-align: center; padding: 30px 0; color: var(--ink-muted-dark); }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 38px; }
  .hero-photo__badge { padding: 9px 13px; }
}
