@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --color-bg: #faf6ef;
  --color-bg-alt: #f1e8d6;
  --color-ink: #1b1512;
  --color-ink-soft: #3a2e28;
  --color-red: #8c1f1a;
  --color-red-bright: #a8261f;
  --color-gold: #a9832b;
  --color-gold-soft: #d8c48a;
  --color-white: #ffffff;
  --color-border: #e3d9c6;
  --color-muted: #6b5d4f;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(27, 21, 18, 0.06);
  --shadow-md: 0 12px 32px rgba(27, 21, 18, 0.12);
  --shadow-lg: 0 24px 60px rgba(27, 21, 18, 0.22);

  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 160ms;
  --duration-base: 280ms;

  color-scheme: light;
}

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; font-weight: 800; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--duration-fast) var(--ease-standard);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  display: inline-block;
}

.section {
  padding-block: var(--space-2xl);
}
.section--alt { background: var(--color-bg-alt); }
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-lg);
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-top: 0.75rem;
  color: var(--color-ink);
}
.section-head p {
  margin-top: var(--space-sm);
  color: var(--color-muted);
  font-size: 1.05rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--duration-fast) var(--ease-standard),
    background-color var(--duration-base) var(--ease-standard),
    color var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard);
  min-height: 44px;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-red-bright); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-ink);
}
.btn--outline:hover { background: var(--color-ink); color: var(--color-white); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-gold-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--color-ink);
}
.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}

.main-nav {
  display: none;
}
.main-nav ul { display: flex; align-items: center; gap: var(--space-md); }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
  position: relative;
  padding-block: 0.25rem;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--duration-base) var(--ease-standard);
}
.main-nav a:hover::after,
.main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { color: var(--color-red); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.icon-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-ink);
  transition: background-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.icon-link:hover { background: var(--color-ink); color: var(--color-white); }
.icon-link svg { width: 20px; height: 20px; }

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-bg);
  z-index: 99;
  padding: 6rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-standard);
  overflow-y: auto;
}
.nav-open .mobile-nav { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav ul a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .btn {
  margin-top: var(--space-lg);
  font-size: 1rem;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 960px) {
  .mobile-nav { display: none; }
}

body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #2a1f1a 0%, var(--color-ink) 55%, #120d0b 100%);
  color: var(--color-white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 38, 31, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 38, 31, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 80% 20%, black, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 131, 43, 0.25), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-block: var(--space-2xl) var(--space-xl);
  display: grid;
  gap: var(--space-lg);
}
.hero .eyebrow { color: var(--color-gold-soft); }
.hero .eyebrow::before { background: var(--color-gold-soft); }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  margin-top: var(--space-sm);
  max-width: 15ch;
  color: var(--color-white);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-gold-soft);
}
.hero-lede {
  margin-top: var(--space-md);
  max-width: 52ch;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-sm);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-lg);
  max-width: 720px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1.4rem;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold-soft);
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--color-ink);
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  padding-block: var(--space-lg);
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.trust-item .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(169, 131, 43, 0.18);
  color: var(--color-gold-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-item .icon-badge svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item span { font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); }

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
}
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold-soft);
}
.product-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  color: var(--color-red);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-sm);
}
.product-card .icon-badge svg { width: 28px; height: 28px; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.product-card p { color: var(--color-muted); font-size: 0.92rem; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}
.why-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.why-card .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-sm);
}
.why-card .icon-badge svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.why-card p { color: var(--color-muted); font-size: 0.92rem; }

/* ---------- Social proof ---------- */
.proof {
  background: var(--color-ink);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -30%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 31, 26, 0.35), transparent 65%);
}
.proof-inner {
  position: relative;
  display: grid;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}
@media (min-width: 860px) {
  .proof-inner { grid-template-columns: auto 1fr auto; text-align: left; }
}
.proof-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--color-gold-soft);
  line-height: 1;
}
.proof-number span { display: block; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.5rem; font-weight: 700; }
.proof-copy h2 { color: var(--color-white); font-size: clamp(1.6rem, 3vw, 2.1rem); }
.proof-copy p { margin-top: 0.6rem; color: rgba(255, 255, 255, 0.75); max-width: 46ch; }
.proof-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
@media (min-width: 860px) { .proof-actions { align-items: flex-end; } }

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-2xl); align-items: start; }
}
.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}
.info-row:last-child { border-bottom: none; }
.info-row .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-row .icon-badge svg { width: 20px; height: 20px; }
.info-row h3 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.2rem; }
.info-row p { color: var(--color-muted); font-size: 0.92rem; }
.info-row a:hover { color: var(--color-red); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table tr { display: flex; justify-content: space-between; gap: 0.75rem; }
.hours-table td { padding: 0.2rem 0; color: var(--color-muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--color-ink); white-space: nowrap; }
.hours-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-gold);
  background: rgba(169, 131, 43, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  min-height: 340px;
  height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--color-red) 0%, var(--color-red-bright) 100%);
  color: var(--color-white);
  text-align: center;
}
.cta-banner h2 { color: var(--color-white); font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.cta-banner p { margin-top: 0.6rem; color: rgba(255, 255, 255, 0.88); }
.cta-banner .btn--outline-light { border-color: rgba(255,255,255,0.7); }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  margin-top: var(--space-md);
  color: var(--color-white);
}
.cta-phone svg { width: 30px; height: 30px; }
.cta-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #120d0b;
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--space-xl) var(--space-md);
}
.footer-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand .brand-name { color: var(--color-white); }
.footer-brand p { margin-top: 0.85rem; max-width: 34ch; font-size: 0.92rem; }
.footer-social {
  margin-top: var(--space-sm);
  display: flex;
  gap: 0.6rem;
}
.footer-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: var(--space-sm);
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: var(--color-gold-soft); }
.footer-contact li { margin-bottom: 0.7rem; font-size: 0.92rem; display: flex; gap: 0.6rem; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--color-gold-soft); }
.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-standard), transform 600ms var(--ease-standard);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), visibility var(--duration-base);
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 22px; height: 22px; }

/* ---------- Illustrations: hero medallion ---------- */
.hero-inner {
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: var(--space-xl);
  }
  .hero-copy { grid-column: 1; }
  .hero-visual { grid-column: 2; }
}
.hero-visual {
  display: none;
  position: relative;
}
@media (min-width: 980px) {
  .hero-visual { display: block; }
}
.hero-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-ring .ring-dash {
  animation: spin-slow 40s linear infinite;
  transform-origin: 160px 160px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-ring .ring-dash { animation: none; }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.hero-logo-frame {
  position: relative;
  width: 82%;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
  border: 4px solid var(--color-gold-soft);
  box-shadow: var(--shadow-lg);
}
.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Product media: photo tile ---------- */
.product-card { padding: 0; overflow: hidden; }
.product-card .product-body { padding: var(--space-md); }
.product-card .icon-badge { display: none; }
.product-media {
  aspect-ratio: 16 / 11;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-base) var(--ease-standard);
}
.product-card:hover .product-media img { transform: scale(1.05); }

.media--beef { background: linear-gradient(155deg, #6f1a16, #8c1f1a 55%, #a8261f); }
.media--lamb { background: linear-gradient(155deg, #b98f2f, #a9832b 55%, #8c6a20); }
.media--chicken { background: linear-gradient(155deg, #c9a24a, #d8c48a 55%, #b98f2f); }
.media--mince { background: linear-gradient(155deg, #2a201b, #3a2e28 55%, #4a3a30); }
.media--sucuk { background: linear-gradient(155deg, #f1e8d6, #e3d9c6 60%, #d8c48a); }
.media--kavurma { background: linear-gradient(155deg, #3a2e28, #1b1512 60%, #241a15); }
.media--kontrfile { background: linear-gradient(155deg, #7a1c17, #8c1f1a 55%, #5c1512); }
.media--burger { background: linear-gradient(155deg, #4a3a30, #3a2e28 55%, #241a15); }

/* ---------- Product showcase (priority section) ---------- */
.section--products { padding-block: var(--space-xl) var(--space-2xl); }
.product-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 560px) {
  .product-grid { gap: var(--space-md); }
}
@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card--featured { grid-column: span 2; }
@media (min-width: 700px) {
  .product-card--featured .product-media { aspect-ratio: 32 / 11; }
}
.product-card .product-media { position: relative; }
.product-card h3 { font-size: 1.25rem; }
.section-head .lede-strong { color: var(--color-ink); font-weight: 700; }

/* Compact catalog-style tiles for the two-up mobile grid — the
   featured card stays full-width and keeps normal type. */
@media (max-width: 699px) {
  .product-card:not(.product-card--featured) .product-body {
    padding: 0.75rem 0.75rem 0.9rem;
  }
  .product-card:not(.product-card--featured) h3 {
    font-size: 0.92rem;
    line-height: 1.25;
    margin-bottom: 0.2rem;
  }
  .product-card:not(.product-card--featured) p {
    font-size: 0.76rem;
    line-height: 1.4;
  }
}

/* ---------- Compact about strip (secondary section) ---------- */
.about-strip { padding-block: var(--space-lg); }
.about-strip-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
@media (min-width: 860px) {
  .about-strip-grid { grid-template-columns: auto 1fr; gap: var(--space-xl); }
}
.about-badge {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-gold-soft);
  display: grid;
  place-items: center;
  text-align: center;
  flex-shrink: 0;
  margin-inline: auto;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; }
.about-badge span { display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }
.about-strip-copy p { color: var(--color-ink-soft); font-size: 1rem; max-width: 62ch; }
.about-strip-copy .eyebrow { margin-bottom: 0.5rem; }

/* ================================================================
   MOBILE REFINEMENTS — phone is the priority breakpoint
   ================================================================ */

/* Safety net: header never overflows horizontally, whatever the
   viewport — brand truncates before the layout breaks. */
.header-inner { flex-wrap: nowrap; }
.brand { min-width: 0; flex-shrink: 1; }
.brand-text { min-width: 0; }
.brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.header-actions { flex-shrink: 0; }

/* Compact header below tablet: icon-only call button, no subtitle,
   tighter gaps. Prevents the logo + full phone number + icons from
   overflowing on real phone widths (320–428px). */
@media (max-width: 699px) {
  .site-header .container { padding-inline: 1rem; }
  .header-inner { gap: 0.6rem; padding-block: 0.7rem; }
  .brand { gap: 0.55rem; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 1.05rem; }
  .header-actions { gap: 0.5rem; }
  .header-actions .btn--primary {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
  }
  .header-actions .btn--primary .btn-label { display: none; }
  .header-actions .btn--primary svg { width: 19px; height: 19px; }
}

/* Tighter section rhythm + smaller display type on phones so the
   page doesn't feel like endless scrolling. */
@media (max-width: 640px) {
  .section { padding-block: var(--space-xl); }
  .section--products { padding-block: var(--space-lg) var(--space-xl); }
  .about-strip { padding-block: var(--space-lg); }
  .hero-inner { padding-block: var(--space-lg) var(--space-lg); }
  .section-head h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); max-width: 13ch; }
  .hero-lede { font-size: 1rem; }
}

/* Hero cover image: full-bleed, near-full-viewport opening screen on
   phones (previously a small 220px card) — the photo IS the first
   screen; headline/CTAs/stats are what scrolling reveals next. */
.hero-visual {
  display: flex;
  justify-content: center;
  order: -1;
}
@media (max-width: 979px) {
  .hero-inner { padding-top: 0; }
  .hero-copy { padding-top: var(--space-lg); }
  .hero-visual {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    margin-bottom: 0;
  }
  .hero-ring { display: none; }
  .hero-logo-frame {
    width: 100%;
    /* Taller than the source photo's native ratio (1856:2304 ≈ 0.81)
       so the image fills much more of the screen. The title text sits
       with ~15% margin on the left but almost none on the right, so
       object-position below crops only from the left — measured to
       stay inside that margin and never touch the lettering. */
    aspect-ratio: 3 / 4;
    margin-inline: 0;
    border-radius: 0;
    border: none;
    border-bottom: 4px solid var(--color-gold-soft);
    box-shadow: none;
  }
  .hero-logo-frame img { object-position: right center; }
}
@media (min-width: 980px) {
  .hero-visual { max-width: none; margin-inline: 0; order: 0; }
}

/* Hero stats: keep a steady 3-up row instead of an uneven 2+1 wrap,
   with padding/type that fit a narrow screen. */
@media (max-width: 520px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .hero-stat { padding: 0.85rem 0.5rem; }
  .hero-stat strong { font-size: 1.1rem; }
  .hero-stat span { font-size: 0.66rem; line-height: 1.3; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* Trust strip: two cramped columns of wrapping text read poorly on
   a phone — stack to one column so each item stays legible. */
@media (max-width: 479px) {
  .trust-grid { grid-template-columns: 1fr; gap: 0.9rem; padding-block: var(--space-md); }
}

/* Location info card: desktop padding is too heavy on a 320–428px
   viewport, eating into the already-narrow text column. */
@media (max-width: 479px) {
  .info-card { padding: var(--space-md); }
  .map-frame { min-height: 260px; }
  .map-frame iframe { min-height: 260px; }
}

/* CTA phone number: avoid it ever needing to wrap awkwardly. */
@media (max-width: 380px) {
  .cta-phone { font-size: 1.4rem; }
}
