:root {
  --ink: #222429;
  --ink-soft: #3d424b;
  --muted: #6f7784;
  --line: #e7e9ed;
  --paper: #ffffff;
  --soft: #f6f7f9;
  --warm: #fff6eb;
  --accent: #f6a72a;
  --accent-strong: #e97d20;
  --green: #1f8d58;
  --red: #d83f3f;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(34, 36, 41, 0.12);
  --font: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(231, 233, 237, 0.85);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(34, 36, 41, 0.08);
}

.header-row {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand span {
  display: none;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.nav .nav-cta {
  margin-left: 6px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #fff;
  background: #111317;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 19, 22, 0.88) 0%, rgba(18, 19, 22, 0.66) 42%, rgba(18, 19, 22, 0.12) 100%),
    linear-gradient(0deg, rgba(18, 19, 22, 0.4), rgba(18, 19, 22, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 82px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(246, 167, 42, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffc65b;
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #fff;
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #111317;
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-facts {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 700;
}

.quick-order {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-order-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.quick-order strong {
  display: block;
  font-size: 1.15rem;
}

.quick-order span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.quick-order .btn {
  background: #fff;
  color: var(--ink);
  flex: 0 0 auto;
}

.section {
  padding: 82px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head-left {
  margin: 0;
  text-align: left;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.promise-copy > p,
.location-card > p {
  color: var(--muted);
  font-size: 1rem;
}

.flavors {
  background: #fff;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flavor-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background-image: linear-gradient(0deg, rgba(16, 17, 19, 0.88), rgba(16, 17, 19, 0.1)), url("../img/hermutfak-hero.jpg");
  background-size: cover;
  box-shadow: var(--shadow);
}

.flavor-card:hover,
.flavor-card:focus-visible {
  transform: translateY(-3px);
}

.flavor-card-taco { background-position: 86% 58%; }
.flavor-card-pasta { background-position: 48% 72%; }
.flavor-card-rice { background-position: 20% 18%; }
.flavor-card-meat { background-position: 71% 12%; }

.flavor-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.flavor-card strong {
  margin-top: 14px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.flavor-card small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.steps {
  background: var(--soft);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step,
.location-card,
.promise-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step {
  padding: 26px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.step h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.step p,
.faq p,
.promise-panel span {
  margin: 0;
  color: var(--muted);
}

.promise {
  background: var(--warm);
}

.promise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.promise-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.promise-panel {
  display: grid;
  gap: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.promise-panel strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 1.2rem;
}

.promise-panel strong:first-child {
  margin-top: 0;
}

.location {
  background: #fff;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.location-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.map-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(34, 36, 41, 0.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(225deg, rgba(34, 36, 41, 0.06) 25%, transparent 25%) 0 0 / 24px 24px,
    #eef1f4;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.map-fallback {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(320px, calc(100% - 36px));
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(34, 36, 41, 0.92);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.map-fallback strong,
.map-fallback span,
.map-fallback a {
  display: block;
}

.map-fallback span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.map-fallback a {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 800;
}

.faq {
  background: var(--soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 0 18px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq p {
  padding: 0 0 18px;
}

.footer {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 120px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand img {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer p,
.footer-bottom,
.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer a {
  display: block;
  margin: 8px 0;
  font-weight: 600;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.mobile-order-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(34, 36, 41, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.mobile-order-bar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.mobile-order-bar a:first-child {
  background: var(--accent);
}

@media (min-width: 760px) {
  .brand span {
    display: block;
  }
}

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

  .nav {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a,
  .nav .nav-cta {
    width: 100%;
    margin: 0;
    justify-content: flex-start;
  }

  .flavor-grid,
  .step-grid,
  .promise-layout,
  .location-layout,
  .faq-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-row {
    height: 66px;
  }

  .brand img {
    height: 40px;
    width: auto;
  }

  .nav {
    top: 66px;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18, 19, 22, 0.9) 0%, rgba(18, 19, 22, 0.64) 52%, rgba(18, 19, 22, 0.08) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-content {
    padding: 112px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .hero-actions .btn,
  .quick-order .btn,
  .location-actions .btn {
    width: 100%;
  }

  .hero-facts {
    gap: 8px;
  }

  .hero-facts span {
    width: 100%;
  }

  .quick-order-row {
    align-items: stretch;
    flex-direction: column;
    padding: 18px 0;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .flavor-card {
    min-height: 250px;
  }

  .footer {
    padding-bottom: 104px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-order-bar {
    display: grid;
  }
}
