:root {
  --bg-ivory: #f7f2ea;
  --bg-sand: #ece0d0;
  --paper: #fffcf8;
  --panel: rgba(255, 253, 249, 0.78);
  --ink-strong: #272017;
  --ink-soft: #5f564b;
  --brand: #8a512c;
  --brand-deep: #65381b;
  --line: #dcc8b3;
  --ring: rgba(138, 81, 44, 0.35);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --container-width: 1160px;
  --shadow-soft: 0 14px 30px rgba(59, 41, 24, 0.1);
  --shadow-hard: 0 28px 46px rgba(48, 28, 10, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.55;
  color: var(--ink-strong);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(151, 95, 56, 0.2), transparent 36%),
    radial-gradient(circle at 86% 14%, rgba(92, 122, 101, 0.22), transparent 40%),
    linear-gradient(160deg, var(--bg-ivory) 0%, #f2eadf 45%, var(--bg-sand) 100%);
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(2px);
}

body::before {
  width: 360px;
  height: 360px;
  left: -130px;
  top: 100px;
  background: rgba(138, 81, 44, 0.12);
}

body::after {
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: 60px;
  background: rgba(107, 140, 116, 0.15);
}

main {
  position: relative;
}

main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 36px;
  height: 340px;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 42%, rgba(138, 81, 44, 0.13) 0 16%, transparent 17%),
    radial-gradient(circle at 73% 24%, rgba(92, 122, 101, 0.1) 0 14%, transparent 15%),
    repeating-linear-gradient(120deg, rgba(138, 81, 44, 0.045) 0 3px, transparent 3px 26px);
  mask-image: linear-gradient(180deg, #000 34%, transparent 100%);
  z-index: -1;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 241, 231, 0.66);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 200, 179, 0.55);
}

.site-header .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-decoration: none;
}

.logo-mark {
  color: var(--brand-deep);
}

.logo span:last-child {
  color: var(--brand);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.1rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(138, 81, 44, 0.35);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.86);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active-link {
  color: var(--brand-deep);
  border-color: rgba(138, 81, 44, 0.45);
}

.hero {
  position: relative;
  padding: 5.6rem 0 3.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: 3%;
  top: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(138, 81, 44, 0.18), transparent 72%);
  filter: blur(5px);
  pointer-events: none;
  opacity: 0.6;
}

.hero .container {
  background: linear-gradient(130deg, rgba(255, 252, 247, 0.74), rgba(255, 248, 240, 0.52));
  border: 1px solid rgba(220, 200, 179, 0.65);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3.5vw, 2.8rem);
  position: relative;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 1.25rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero .container::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -210px;
  background: radial-gradient(circle, rgba(138, 81, 44, 0.28), transparent 68%);
}

.hero-orb-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin-inline: auto;
  display: grid;
  place-items: center;
}

.hero-ring-text {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: spin-ring 16s linear infinite;
  will-change: transform;
}

.hero-ring-text text {
  fill: rgba(101, 56, 27, 0.9);
  letter-spacing: 0.18em;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-orb-core {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(245, 229, 210, 0.9) 45%, rgba(203, 157, 120, 0.8) 100%);
  border: 1px solid rgba(138, 81, 44, 0.35);
  box-shadow: inset 0 12px 20px rgba(255, 255, 255, 0.35), 0 16px 28px rgba(65, 40, 18, 0.22);
}

.hero-orb-core span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-deep);
}

.eyebrow {
  width: fit-content;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 81, 44, 0.26);
  color: var(--brand-deep);
  background: rgba(138, 81, 44, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.74rem;
  margin-bottom: 1rem;
}

.hero h1,
.inner-hero h1,
.section-head h2,
.preview h2,
.content-block h2,
.category-head h2,
.feature-card h2,
.page-link-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  max-width: 15ch;
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 62ch;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-cta,
.hero-ghost,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-cta,
.contact-form button {
  padding: 0.7rem 1.28rem;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(132deg, var(--brand) 0%, #bf7443 100%);
  box-shadow: 0 14px 22px rgba(96, 52, 23, 0.26);
}

.hero-ghost {
  border: 1px solid rgba(138, 81, 44, 0.35);
  background: rgba(255, 252, 247, 0.8);
  color: var(--brand-deep);
  padding: 0.68rem 1.22rem;
}

.hero-cta:hover,
.hero-cta:focus-visible,
.hero-ghost:hover,
.hero-ghost:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
}

.featured {
  margin: 2.2rem auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.page-link-card,
.content-shell,
.preview,
.categories {
  background: var(--panel);
  border: 1px solid rgba(220, 200, 179, 0.72);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.1rem;
  transform: translateY(12px);
  opacity: 0;
  animation: float-in 0.6s ease forwards;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.2rem;
}

.feature-card p,
.page-link-card p,
.content-block p,
.content-block li,
.inner-hero p,
.category-head p,
.mini-card p,
.site-footer p {
  color: var(--ink-soft);
}

.categories,
.preview,
.content-shell {
  border-radius: var(--radius-xl);
  padding: 1.35rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 220px);
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.25rem 0.12rem 0.8rem;
  margin-bottom: 0.4rem;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.menu-strip-card {
  scroll-snap-align: start;
  border-radius: 14px;
  border: 1px solid rgba(220, 200, 179, 0.86);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(53, 35, 20, 0.1);
  overflow: hidden;
  min-height: 170px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-strip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(53, 35, 20, 0.16);
}

.menu-strip-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s ease;
}

.menu-strip-card:hover img {
  transform: scale(1.04);
}

.menu-strip-card h3 {
  font-size: 0.94rem;
  line-height: 1.25;
  padding: 0.62rem 0.72rem 0.8rem;
}

.section-head h2,
.preview h2,
.content-block h2,
.category-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.35rem);
  line-height: 1;
}

.search-wrap {
  min-width: 250px;
  display: grid;
  gap: 0.28rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.search-wrap input,
.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(220, 200, 179, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-strong);
  font: inherit;
  padding: 0.62rem 0.75rem;
}

.search-wrap input:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.card:focus-visible,
.recipe-item:focus-visible,
.modal-close:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.categories .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 0.76rem;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 200, 179, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-strong);
  text-align: center;
  cursor: pointer;
  padding: 1rem 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(138, 81, 44, 0.05));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(53, 35, 20, 0.14);
}

.card:hover::after,
.card.active::after {
  opacity: 1;
}

.card.active {
  border-color: rgba(138, 81, 44, 0.7);
  background: linear-gradient(145deg, rgba(138, 81, 44, 0.15), rgba(255, 252, 247, 0.84));
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin: 0 auto 0.35rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(138, 81, 44, 0.12), rgba(92, 122, 101, 0.09));
  color: var(--brand-deep);
  border: 1px solid rgba(138, 81, 44, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover .icon,
.card.active .icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 8px 16px rgba(53, 35, 20, 0.16);
}

.cat-icon {
  width: 23px;
  height: 23px;
  display: block;
}

.card small {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  display: block;
}

.preview {
  margin: 1.5rem auto 2.4rem;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.carousel-controls {
  display: inline-flex;
  gap: 0.45rem;
}

#currentCat {
  color: var(--brand-deep);
}

.recipes-list {
  margin-top: 0.9rem;
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.2rem 0.15rem 0.8rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.recipes-list.is-switching {
  opacity: 0.35;
  transform: translateY(4px);
}

.recipes-list li {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  scroll-snap-align: start;
  border: 1px solid rgba(220, 200, 179, 0.72);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(250, 242, 232, 0.74));
  padding: 0.76rem;
  box-shadow: 0 14px 24px rgba(56, 38, 20, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipes-list li.reveal {
  animation: item-in 0.32s ease both;
}

.recipes-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px rgba(56, 38, 20, 0.15);
}

.recipe-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(220, 200, 179, 0.86);
  flex-shrink: 0;
}

.recipe-info {
  width: 100%;
  display: grid;
  gap: 0.4rem;
}

.recipe-item {
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
}

.badge {
  border-radius: 999px;
  background: #eddccc;
  color: #704222;
  padding: 0.3rem 0.64rem;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.empty {
  color: var(--ink-soft);
  font-style: italic;
  min-height: 84px;
  display: flex;
  align-items: center;
}

.page-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 2.4rem;
}

.page-link-card {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: 1.05rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.page-link-card:hover,
.page-link-card:focus-visible {
  transform: perspective(900px) rotateX(2deg) translateY(-6px);
  box-shadow: var(--shadow-hard);
}

.page-link-card h2 {
  font-size: 1.62rem;
  margin-bottom: 0.2rem;
}

.inner-hero {
  padding: 4.3rem 0 2rem;
}

.inner-hero .container {
  background: linear-gradient(140deg, rgba(255, 253, 249, 0.76), rgba(252, 243, 233, 0.5));
  border: 1px solid rgba(220, 200, 179, 0.7);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-soft);
}

.inner-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.7rem;
}

.inner-hero p {
  max-width: 66ch;
}

.content-shell {
  margin-bottom: 2.1rem;
}

.stack {
  display: grid;
  gap: 1rem;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.content-block {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 200, 179, 0.8);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
}

.content-block h2 {
  margin-bottom: 0.4rem;
}

.content-block ul {
  margin-left: 1.1rem;
}

.categories-page {
  gap: 1.2rem;
}

.category-block {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.8), rgba(255, 248, 240, 0.7));
}

.category-head {
  margin-bottom: 0.8rem;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(220, 200, 179, 0.8);
}

.category-kicker {
  width: fit-content;
  border: 1px solid rgba(138, 81, 44, 0.25);
  border-radius: 999px;
  background: rgba(138, 81, 44, 0.09);
  color: var(--brand-deep);
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: center;
  gap: 0.72rem;
  border-radius: 14px;
  border: 1px solid rgba(220, 200, 179, 0.84);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(61, 40, 21, 0.14);
}

.mini-card img {
  width: 98px;
  height: 74px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(220, 200, 179, 0.88);
}

.mini-card h4 {
  margin-bottom: 0.2rem;
}

.mini-meta {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.mini-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #efe2d5;
  color: #7a4725;
  font-weight: 700;
  font-size: 0.73rem;
  padding: 0.2rem 0.56rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.specials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.special-card {
  grid-template-columns: 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.special-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(220, 200, 179, 0.6);
}

.special-card > div {
  padding: 0.72rem 0.78rem 0.8rem;
}

.testimonials {
  display: grid;
  gap: 0.75rem;
}

.testimonial-slider {
  display: grid;
  gap: 0.65rem;
}

.testimonial-item {
  display: none;
  border-radius: 14px;
  border: 1px solid rgba(220, 200, 179, 0.84);
  background: rgba(255, 255, 255, 0.86);
  padding: 0.95rem;
}

.testimonial-item.active {
  display: block;
  animation: item-in 0.25s ease;
}

.testimonial-item p {
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.testimonial-item cite {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-deep);
}

.slider-actions {
  display: flex;
  gap: 0.5rem;
}

.slider-btn {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
}

.faq-list {
  display: grid;
  gap: 0.5rem;
}

.faq-list details {
  border-radius: 12px;
  border: 1px solid rgba(220, 200, 179, 0.85);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.7rem 0.85rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-strong);
}

.faq-list p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
}

.map-wrap {
  margin-top: 0.65rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(220, 200, 179, 0.84);
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.menu-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: min(100%, 420px);
}

.menu-tools label {
  display: grid;
  gap: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.menu-tools input,
.menu-tools select,
.newsletter input {
  border: 1px solid rgba(220, 200, 179, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-strong);
  font: inherit;
  padding: 0.62rem 0.75rem;
}

.newsletter {
  width: min(100%, 420px);
  display: grid;
  gap: 0.4rem;
}

.newsletter label {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.newsletter-row .hero-cta {
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0.7rem 1rem;
}

.newsletter-info {
  color: #2d6639;
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-note {
  white-space: nowrap;
}

.contact-list li {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 200, 179, 0.84);
  border-radius: 12px;
  padding: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
}

.contact-form label {
  display: grid;
  gap: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form select {
  border: 1px solid rgba(220, 200, 179, 0.96);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-strong);
  font: inherit;
  padding: 0.62rem 0.75rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235f564b' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
}

.contact-form select:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.form-success {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(92, 140, 100, 0.14);
  border: 1px solid rgba(92, 140, 100, 0.35);
  color: #2d6639;
  font-weight: 600;
}

/* ─── Hakkımızda – İstatistikler ─────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(220, 200, 179, 0.8);

.recipe-summary {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.recipe-meta span,
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 0.75rem;
}

.stat-item strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand-deep);

.recipe-meta span {
  background: rgba(111, 151, 119, 0.2);
  color: #355943;
  padding: 0.25rem 0.55rem;
}

.badge {
  width: fit-content;
}
}

.stat-item span {
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Hakkımızda – Ekip ──────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.team-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(220, 200, 179, 0.84);
  background: rgba(255, 255, 255, 0.84);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(53, 35, 20, 0.12);
}

.team-avatar {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.team-card h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}

@media (max-width: 920px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  border-top: 1px solid rgba(220, 200, 179, 0.75);
  background: rgba(248, 238, 226, 0.75);
}

.site-footer .container {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 18, 9, 0.48);
  backdrop-filter: blur(3px);
}

.modal-content {
  position: relative;
  width: min(100%, 700px);
  border-radius: var(--radius-lg);
  background: #fffcf9;
  border: 1px solid rgba(220, 200, 179, 0.95);
  box-shadow: var(--shadow-hard);
  padding: 1.15rem;
  animation: modal-in 0.24s ease;
}

.modal-content h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

#modalImage {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(220, 200, 179, 0.88);
  margin-bottom: 0.6rem;
  display: block;
}

.modal-content h4 {
  margin: 0.55rem 0 0.25rem;
}

.modal-content ul,
.modal-content ol {
  margin-left: 1.1rem;
  color: var(--ink-soft);
}

.modal-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  background: rgba(138, 81, 44, 0.15);
  color: var(--brand-deep);
  font-size: 1rem;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin-ring {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .featured,
  .page-links,
  .split,
  .menu-grid,
  .specials-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrap {
    min-width: 0;
  }

  .hero::before {
    width: 170px;
    height: 170px;
    right: 2%;
    top: 24px;
    opacity: 0.6;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-orb-wrap {
    width: 190px;
    height: 190px;
  }

  .hero-orb-core {
    inset: 34px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.2rem, var(--container-width));
  }

  .site-header .container {
    align-items: center;
    padding: 0.65rem 0;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .logo {
    justify-content: flex-start;
    font-size: 1.7rem;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
  }

  .nav-open .main-nav {
    display: block;
  }

  .main-nav ul {
    width: 100%;
    margin: 0;
    padding: 0.15rem;
    gap: 0.5rem;
    flex-direction: column;
  }

  .main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 200, 179, 0.7);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.8);
    padding: 0.35rem 0.7rem;
    width: 100%;
    font-size: 0.86rem;
    border-bottom-width: 1px;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero .container,
  .inner-hero .container,
  .categories,
  .preview,
  .content-shell,
  .modal-content {
    padding: 1rem;
  }

  .recipes-list {
    grid-auto-columns: minmax(200px, 78vw);
  }

  .recipe-thumb,
  .mini-card img {
    width: 100%;
    height: 170px;
  }

  .recipe-info,
  .mini-card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .card {
    padding: 0.8rem 0.7rem;
  }

  .card .icon {
    width: 40px;
    height: 40px;
  }

  .section-head h2,
  .preview h2 {
    font-size: clamp(1.55rem, 8.2vw, 2rem);
  }

  .preview-head {
    align-items: flex-start;
  }

  .carousel-controls {
    width: 100%;
  }

  .carousel-controls .slider-btn {
    flex: 1;
    justify-content: center;
  }

  .hero h1,
  .inner-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-cta,
  .hero-ghost {
    flex: 1 1 100%;
  }

  .search-wrap input,
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  main::before,
  .hero::before,
  body::before,
  body::after {
    opacity: 0.45;
  }

  .site-footer .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
  }

  .newsletter {
    width: 100%;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
  }

  .menu-tools {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .categories .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .menu-strip {
    grid-auto-columns: minmax(160px, 78vw);
  }

  .card strong {
    font-size: 0.9rem;
  }

  .card small {
    font-size: 0.74rem;
  }

  .modal {
    padding: 0.6rem;
  }

  .modal-content {
    max-height: 88vh;
    overflow-y: auto;
  }
}

/* ─── Marquee Şeridi ─────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--brand-deep) 0%, #a5603a 50%, var(--brand-deep) 100%);
  border-top: 1px solid rgba(101, 56, 27, 0.4);
  border-bottom: 1px solid rgba(101, 56, 27, 0.4);
  padding: 0.7rem 0;
  width: 100%;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}

.marquee-track span {
  color: rgba(255, 245, 230, 0.95);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-dot {
  color: rgba(255, 220, 180, 0.6) !important;
  font-size: 0.5rem !important;
  letter-spacing: 0 !important;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Rakam Bar (Stats) ─────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem auto 2.2rem;
}

.stat-pill {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(220, 200, 179, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem 1.1rem;
  text-align: center;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stat-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #c07840);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.stat-pill:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hard);
}

.stat-pill strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.85rem;
  line-height: 1;
  color: var(--brand-deep);
  margin-bottom: 0.18rem;
}

.stat-pill span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 680px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Feature Kart İkon ─────────────────────────── */
.feature-card {
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #c07840);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(138, 81, 44, 0.13), rgba(138, 81, 44, 0.06));
  border: 1px solid rgba(138, 81, 44, 0.22);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.08) translateY(-1px);
}

/* ─── Hero CTA Parlaklık (Shimmer) ──────────────── */
.hero-cta,
.contact-form button {
  position: relative;
  overflow: hidden;
}

.hero-cta::after,
.contact-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 80%
  );
  transform: translateX(-100%);
  animation: shimmer-cta 3.5s ease-in-out infinite 1.2s;
}

@keyframes shimmer-cta {
  0%   { transform: translateX(-100%); }
  40%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ─── Page-Link Kartları ─────────────────────────── */
.page-link-card {
  position: relative;
  overflow: hidden;
}

.page-link-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.55rem;
  display: block;
  transition: transform 0.24s ease;
}

.page-link-card:hover .page-link-icon {
  transform: scale(1.12);
}

.page-link-arrow {
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  font-size: 1.25rem;
  color: var(--brand);
  opacity: 0.55;
  transition: transform 0.24s ease, opacity 0.24s ease;
  line-height: 1;
}

.page-link-card:hover .page-link-arrow,
.page-link-card:focus-visible .page-link-arrow {
  transform: translateX(5px);
  opacity: 1;
}

.page-link-orange::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #bf7443, #e09256);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.page-link-green::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5a8a65, #7ab88a);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.page-link-blue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4a7ba0, #6a9fc0);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ─── Scroll Reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header üst çizgisi ─────────────────────────── */
.site-header {
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-deep), #c07840, var(--brand-deep));
  z-index: 1;
}

/* ─── Testimonial tırnak süslemesi ───────────────── */
.testimonial-item {
  position: relative;
}

.testimonial-item::before {
  content: "\201C";
  position: absolute;
  top: -0.4rem;
  left: 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(138, 81, 44, 0.15);
  pointer-events: none;
  z-index: 0;
}

/* ─── Footer üst gradyan çizgisi ─────────────────── */
.site-footer {
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
  pointer-events: none;
}

/* ─── Aktif kategori kart nabız efekti ───────────── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(138, 81, 44, 0.3); }
  70%  { box-shadow: 0 0 0 8px rgba(138, 81, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(138, 81, 44, 0); }
}

.card.active {
  animation: pulse-ring 2.2s ease-out 0.4s;
}

/* ═══════════════════════════════════════════════════
   KAPSAMLİ MOBİL DÜZENLEMELERİ
   Tüm sayfalar için: 920px tablet + 680px mobil + 460px küçük
   ═══════════════════════════════════════════════════ */

/* ── Yatay taşmayı önle ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── 920px: Tablet ── */
@media (max-width: 920px) {
  .inner-hero {
    padding: 2.8rem 0 1.5rem;
  }

  .page-link-card {
    padding: 1rem 1rem 2rem;
  }

  .page-link-card:hover,
  .page-link-card:focus-visible {
    transform: translateY(-4px);
  }

  .specials-grid {
    grid-template-columns: 1fr;
  }

  .special-card {
    grid-template-columns: 130px 1fr;
    align-items: center;
  }

  .special-card img {
    width: 130px;
    aspect-ratio: unset;
    height: 100px;
    border-radius: 10px;
    border: 1px solid rgba(220,200,179,.6);
    border-bottom: none;
  }

  .special-card > div {
    padding: 0.6rem 0.8rem;
  }

  .content-block {
    padding: 1.2rem;
  }
}

/* ── 680px: Mobil ── */
@media (max-width: 680px) {
  /* Yatay overflow'u kes */
  .container, main, section, article, header, footer {
    max-width: 100%;
  }

  /* Hero orb'u mobilde gizle, sadece metin göster */
  .hero-orb-wrap {
    display: none;
  }

  /* Hero metni tam genişlik */
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
    max-width: 100%;
  }

  .hero-text {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* İç sayfa hero padding azalt */
  .inner-hero {
    padding: 2rem 0 1.2rem;
  }

  .inner-hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  /* Eyebrow pill mobil */
  .eyebrow {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }

  /* İçerik blok padding küçült */
  .content-block {
    padding: 0.9rem;
  }

  /* Page-link kartları mobilde düz kutu */
  .page-links {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .page-link-card {
    padding: 0.9rem 0.9rem 1.6rem;
    border-radius: var(--radius-lg);
  }

  .page-link-card h2 {
    font-size: 1.35rem;
  }

  .page-link-card p {
    font-size: 0.88rem;
  }

  /* Specials grid: yatay kartlar */
  .specials-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .special-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
  }

  .special-card img {
    width: 100px;
    height: 80px;
    aspect-ratio: unset;
    border-radius: 10px 0 0 10px;
    border: none;
    border-right: 1px solid rgba(220,200,179,.5);
    border-bottom: none;
  }

  .special-card > div {
    padding: 0.55rem 0.75rem;
  }

  .special-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
  }

  /* Mini-kart: mobil düzeni */
  .mini-card {
    grid-template-columns: 80px 1fr;
    gap: 0.6rem;
  }

  .mini-card img {
    width: 80px;
    height: 64px;
  }

  /* Stats bar: 2 sütun kalır ama sayı küçür */
  .stat-pill strong {
    font-size: 2.2rem;
  }

  .stat-pill {
    padding: 0.9rem 0.6rem;
  }

  /* Feature kartlar tam genişlik */
  .featured {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .feature-card {
    padding: 0.9rem;
  }

  /* Section header: arama ve başlık alt alta */
  .section-head {
    gap: 0.6rem;
  }

  /* Testimonial & FAQ: tam genişlik */
  .split {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .testimonial-item {
    padding: 0.8rem;
  }

  .faq-list details {
    padding: 0.65rem 0.75rem;
  }

  .faq-list summary {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* İletişim formu */
  .contact-form {
    gap: 0.55rem;
  }

  .contact-form label {
    font-size: 0.85rem;
  }

  /* Footer: taşmayı düzelt */
  .footer-note {
    white-space: normal;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .footer-brand h2 {
    font-size: 1.4rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  /* Header: logo küçük ekranda sığsın */
  .logo {
    font-size: 1.5rem;
  }

  /* Marquee biraz yavaş */
  .marquee-track {
    animation-duration: 28s;
  }

  /* Content shell margin azalt */
  .content-shell {
    margin-bottom: 1.2rem;
  }

  /* Preview alanı */
  .preview {
    margin: 1rem auto 1.5rem;
  }
}

/* ── 460px: Küçük telefon ── */
@media (max-width: 460px) {
  .hero .container {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-lg);
  }

  .hero h1 {
    font-size: clamp(1.65rem, 10vw, 2rem);
  }

  .hero-text {
    font-size: 0.88rem;
  }

  .hero-cta,
  .hero-ghost {
    font-size: 0.88rem;
    padding: 0.6rem 1rem;
  }

  .stat-pill strong {
    font-size: 1.9rem;
  }

  .stat-pill span {
    font-size: 0.68rem;
  }

  .page-link-card {
    padding: 0.8rem 0.8rem 1.5rem;
  }

  .page-link-icon {
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
  }

  .page-link-card h2 {
    font-size: 1.2rem;
  }

  .content-block {
    padding: 0.75rem;
  }

  .inner-hero {
    padding: 1.6rem 0 1rem;
  }

  .inner-hero h1 {
    font-size: clamp(1.5rem, 10vw, 1.9rem);
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .categories,
  .preview,
  .content-shell {
    padding: 0.75rem;
  }

  /* Sponsor hero (Gumusall sayfası) */
  .sponsor-hero {
    padding: 2rem 1rem 1.5rem;
  }
}
