/* Ortak tasarım: renkler, yazı tipleri ve tüm sayfa düzenleri. */
:root {
  --ink: #181a17;
  --dark: #151713;
  --cream: #f6f3eb;
  --paper: #ede9df;
  --accent: #c65028;
  --muted: #aeb0a5;
  --line: rgba(255, 255, 255, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --width: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 400 17px/1.7 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
p {
  margin-bottom: 1.2em;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}
h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.6rem);
  letter-spacing: -0.05em;
}
h2 {
  font-size: clamp(2.4rem, 4.1vw, 4.1rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}
em {
  font-weight: 400;
  color: var(--accent);
}
::selection {
  background: var(--accent);
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.container {
  width: min(var(--width), calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}
.section-kicker {
  color: #98411f;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 100;
  background: var(--cream);
  padding: 12px 20px;
  color: var(--ink);
}
.skip-link:focus {
  top: 12px;
}
.topline {
  background: #22251e;
  color: #c5c7bd;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.topline .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 20px;
}
.topline a {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.site-header {
  background: var(--dark);
  color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  height: 102px;
  display: flex;
  align-items: center;
  gap: 38px;
  justify-content: space-between;
}
.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.31em;
  text-align: center;
  margin-top: 9px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.88rem;
  color: #d9d9d1;
  position: relative;
  padding: 12px 0;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #ef966e;
}
.nav-links a[aria-current="page"]:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}
.nav-call {
  font-size: 0.84rem;
  border: 1px solid #696d60;
  padding: 11px 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.nav-call:hover {
  border-color: var(--accent);
  color: #ef966e;
}
.icon {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.menu-toggle {
  display: none;
  background: none;
  color: inherit;
  border: 1px solid #777b6c;
  padding: 10px 13px;
  align-items: center;
  gap: 8px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 17px 25px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 54px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #b94722;
  border-color: #b94722;
  transform: translateY(-2px);
}
.button-outline {
  background: transparent;
  border-color: #75796b;
  color: var(--cream);
}
.button-outline:hover {
  background: #2b2e25;
  border-color: #b2b4a7;
}
.button-dark {
  background: var(--ink);
  border-color: var(--ink);
}
.button-dark:hover {
  background: #363b2f;
  border-color: #363b2f;
}
.button-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.button-light:hover {
  background: #fff;
  border-color: #fff;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
}
.text-link:hover {
  color: var(--accent);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.hero {
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  min-height: 655px;
  gap: 15px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 66px 0 60px;
}
.hero .eyebrow {
  color: #d1b49c;
}
.hero h1 {
  margin-bottom: 25px;
  max-width: 710px;
}
.h1-brand {
  display: block;
  font: 500 0.85rem/1.5 var(--sans);
  letter-spacing: 0.09em;
  margin-bottom: 17px;
}
.hero h1 em {
  display: block;
}
.hero-description {
  color: #babeb0;
  max-width: 445px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-visual {
  height: 570px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: calc(100% + 56px);
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: brightness(0.88);
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0 -57px 0 -1px;
  background:
    linear-gradient(90deg, var(--dark) 0%, transparent 18%),
    linear-gradient(
      0deg,
      var(--dark),
      transparent 14%,
      transparent 87%,
      var(--dark)
    );
}
.fire-seal {
  z-index: 1;
  border: 1px solid #a98964;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  position: absolute;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #efd6b7;
  background: #171912e0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  transform: rotate(12deg);
}
.fire-seal .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 6px;
}
.hero-caption {
  color: #a2a797;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  position: absolute;
  left: 50px;
  bottom: 20px;
  z-index: 1;
}
.hero-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: #c4c6ba;
  font-size: 0.82rem;
}
.hero-bottom .local-note {
  display: flex;
  align-items: center;
  gap: 12px;
}
.qualities {
  display: flex;
  gap: 28px;
}
.qualities span + span:before {
  content: "·";
  margin-right: 28px;
  color: #d58458;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 65px;
}
.intro-grid h2 {
  font-size: 3.25rem;
}
.intro-grid p {
  color: #686d60;
  font-size: 1rem;
}
.intro-grid .eyebrow {
  align-self: start;
}
.chapter-no {
  font-size: 0.8rem;
  color: #777d6c;
  border-bottom: 1px solid #c9c9bc;
  padding-bottom: 16px;
  margin-bottom: 28px;
  letter-spacing: 0.12em;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}
.section-heading h2 {
  margin: 0;
  max-width: 690px;
}
.section-heading p {
  max-width: 380px;
  font-size: 1rem;
  color: #686d60;
}
.menu-preview {
  background: var(--paper);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.food-card {
  position: relative;
  border-top: 1px solid #b9bcae;
  padding: 25px 0;
}
.food-card .card-number {
  color: #767d6b;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}
.food-card h3 {
  margin: 24px 0 12px;
}
.food-card p {
  color: #636a5c;
  font-size: 1rem;
  max-width: 340px;
}
.food-card .text-link {
  margin-top: 10px;
}
.story-strip {
  background: #30372a;
  color: var(--cream);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-grid p {
  color: #c4cbbb;
  font-size: 1rem;
}
.chef-signature {
  font: italic 2.5rem var(--serif);
  margin-top: 28px;
  color: #e7c29d;
}
.chef-signature small {
  display: block;
  font: 400 0.75rem var(--sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 10px;
  color: #adb7a1;
}
.delivery-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  background: #b94d2b;
  color: white;
  padding: 58px 62px;
}
.delivery-banner h2 {
  font-size: 3.25rem;
  margin-bottom: 14px;
}
.delivery-banner p {
  max-width: 710px;
  margin: 0;
  color: #fff0e7;
  font-size: 1rem;
}
.contact-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.contact-summary h2 {
  margin-bottom: 30px;
}
.address-block {
  border-top: 1px solid #bcc0b0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}
.address-block strong {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.address-block address {
  font-style: normal;
  font-size: 1rem;
  color: #626857;
}
.address-block a {
  font-size: 1.4rem;
  font-family: var(--serif);
}
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 60px 0 22px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-main .brand {
  width: max-content;
}
.footer-main p {
  font-size: 0.9rem;
  color: #a7af9a;
  margin-top: 25px;
  max-width: 300px;
}
.footer-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #a8b09c;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: #ef966e;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: #909984;
}
.footer-phone {
  font: 1.6rem var(--serif);
}
/* Tipografi ve alternatif bölüm düzenleri. */
.hero-typography {
  padding: 35px 0 35px 60px;
  height: auto;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero-typography:after {
  display: none;
}
.hero-wordmark {
  font: italic 12rem/0.9 var(--serif);
  color: #cf784e;
  text-align: center;
  border: 1px solid #5e5c49;
  border-radius: 50%;
  width: 225px;
  height: 225px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 24px 0;
  margin-bottom: 40px;
}
.hero-wordmark span {
  font: 500 0.66rem/1 var(--sans);
  letter-spacing: 0.26em;
  margin-top: 6px;
  padding-left: 10px;
}
.hero-service-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid #474c3d;
  font: 1.35rem/1.35 var(--serif);
}
.hero-service-links a:hover {
  color: #ef966e;
}
.hero-service-links small {
  display: block;
  font: 500 0.63rem/1.5 var(--sans);
  letter-spacing: 0.14em;
  color: #aeb49f;
  margin-bottom: 5px;
}
.hero-service-links a > span:last-child {
  font-size: 1.3rem;
  color: #cb754d;
}
.about-manifesto {
  background: #30372a;
  color: var(--cream);
  padding: 55px 40px;
}
.manifesto-title {
  font: 3.7rem/1.15 var(--serif);
  letter-spacing: -0.035em;
  padding: 20px 0 35px;
  margin: 0;
}
.manifesto-bottom {
  border-top: 1px solid #737b62;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #bdc6af;
}
@media (max-width: 1100px) {
  .hero-typography {
    padding-left: 35px;
  }
  .hero-wordmark {
    width: 185px;
    height: 185px;
    font-size: 10rem;
  }
  .manifesto-title {
    font-size: 3rem;
  }
  .about-manifesto {
    padding: 40px 30px;
  }
}
@media (max-width: 900px) {
  .hero-typography {
    min-height: 0;
    padding: 26px 0 30px;
    margin-top: 0;
  }
  .hero-wordmark {
    display: none;
  }
  .hero-service-links {
    display: flex;
    gap: 16px;
    border-top: 1px solid #474c3d;
  }
  .hero-service-links a {
    flex: 1;
    font-size: 1.05rem;
    padding: 19px 0 0;
    border: 0;
    align-items: start;
  }
  .hero-service-links small {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
  }
  .hero-service-links a > span:last-child {
    display: none;
  }
  .manifesto-title {
    font-size: 3.3rem;
  }
  .about-manifesto {
    padding: 35px 28px;
  }
}
/* Alt sayfalar */
.page-hero {
  background: var(--dark);
  color: var(--cream);
  padding: 24px 0 67px;
}
.breadcrumbs {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.75rem;
  color: #a6ad99;
  margin-bottom: 50px;
}
.breadcrumbs a:hover {
  color: #ef966e;
}
.page-hero .eyebrow {
  color: #d1b49c;
}
.page-hero h1 {
  font-size: clamp(3.4rem, 5.9vw, 5.9rem);
  margin-bottom: 24px;
  max-width: 1100px;
}
.page-lead {
  font-size: 1.05rem;
  max-width: 660px;
  color: #b8c0ab;
  margin-bottom: 0;
}
.small-note {
  font-size: 0.88rem;
  color: #686f5e;
}
.section-contact {
  padding-top: 0;
}
.category-bar {
  border-bottom: 1px solid #cccdbf;
}
.category-links {
  display: flex;
  gap: 42px;
  padding-block: 25px;
}
.category-links a {
  font-size: 0.86rem;
  font-weight: 600;
}
.category-links a:hover {
  color: #a74622;
}
.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 90px;
  align-items: start;
}
.menu-section {
  margin-bottom: 65px;
  scroll-margin-top: 32px;
}
.menu-section:last-child {
  margin-bottom: 0;
}
.menu-section h2 {
  font-size: 3.2rem;
  margin-bottom: 28px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #c5c9ba;
  padding: 26px 0;
}
.menu-item h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}
.menu-item p {
  font-size: 0.98rem;
  max-width: 470px;
  color: #626a56;
  margin: 0;
}
.item-category {
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  color: #59634a;
  white-space: nowrap;
  padding-top: 7px;
}
.menu-aside {
  background: var(--dark);
  color: var(--cream);
  position: sticky;
  top: 30px;
}
.menu-aside > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.aside-body {
  padding: 30px;
}
.aside-body .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.aside-body h3 {
  font-size: 2.25rem;
}
.aside-body > p {
  font-size: 0.95rem;
  color: #bec7b0;
}
.aside-body .button {
  width: 100%;
}
.aside-body .aside-note {
  font-size: 0.78rem;
  margin: 24px 0 0;
  color: #aab49c;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.about-grid > div > p:not(.eyebrow) {
  font-size: 1rem;
  color: #646c59;
}
.about-image {
  margin: 0;
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-image figcaption {
  font-size: 0.75rem;
  color: #6b735f;
  margin-top: 14px;
}
.center-cta {
  border-top: 1px solid #c4c7b8;
  margin-top: 25px;
  padding-top: 40px;
}
.delivery-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
}
.body-lead {
  color: #636c57;
  max-width: 580px;
  font-size: 1.02rem;
}
.order-steps {
  list-style: none;
  margin: 35px 0 0;
  padding: 0;
}
.order-steps li {
  display: flex;
  gap: 24px;
  padding: 25px 0;
  border-top: 1px solid #c5c9ba;
}
.step-number {
  font-size: 0.85rem;
  color: #a84524;
  padding-top: 3px;
}
.order-steps h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.order-steps p {
  font-size: 0.95rem;
  color: #646c59;
  margin-bottom: 0;
}
.order-steps a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.call-panel {
  background: #30372a;
  color: var(--cream);
  padding: 45px;
}
.call-panel .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}
.call-panel h2 {
  font-size: 3.4rem;
}
.big-phone {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-family: var(--serif);
  display: block;
  margin: 36px 0 25px;
}
.call-panel .button {
  width: 100%;
}
.call-panel > p:last-child {
  color: #bfc8b1;
  font-size: 0.83rem;
  margin-top: 23px;
  margin-bottom: 0;
}
.faq-section {
  background: var(--paper);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.faq-list details {
  border-top: 1px solid #bfc3b2;
  padding: 23px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid #bfc3b2;
}
.faq-list summary {
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-list summary:after {
  content: "+";
  font-weight: 400;
  font-size: 1.5rem;
  color: #a74622;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list p {
  font-size: 0.97rem;
  color: #626c55;
  margin: 20px 0 0;
  max-width: 630px;
}
.faq-list a {
  color: #9c4020;
  text-decoration: underline;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 75px;
  align-items: start;
}
.contact-page-grid .actions {
  margin-top: 32px;
}
.map-panel {
  min-width: 0;
}
.map-panel iframe {
  width: 100%;
  height: 415px;
  border: 0;
  background: #e2e4d9;
  display: block;
}
.map-caption {
  background: #30372a;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  font-size: 0.78rem;
}
.map-caption > span {
  letter-spacing: 0.08em;
}
.map-caption a {
  border-bottom: 1px solid #98a687;
  padding-bottom: 4px;
}
.map-panel > .small-note {
  margin-top: 14px;
  font-size: 0.77rem;
}
.contact-bottom {
  padding-top: 0;
}
@media (min-width: 1600px) {
  .hero-visual img {
    width: calc(100% + 120px);
  }
  .hero-visual:after {
    right: -120px;
  }
}
@media (max-width: 1100px) {
  .menu-layout {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 300px;
  }
  .aside-body {
    padding: 25px;
  }
  .about-grid,
  .delivery-layout,
  .contact-page-grid {
    gap: 40px;
  }
  .call-panel {
    padding: 30px;
  }
  .call-panel h2 {
    font-size: 2.8rem;
  }
  .faq-layout {
    gap: 45px;
  }
  .category-links {
    gap: 28px;
  }
  .about-image img {
    height: 450px;
  }
}
@media (max-width: 900px) {
  .page-hero {
    padding: 22px 0 45px;
  }
  .breadcrumbs {
    margin-bottom: 35px;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 11vw, 4.5rem);
  }
  .page-lead {
    font-size: 0.97rem;
  }
  .category-links {
    gap: 10px;
    flex-wrap: wrap;
    padding-block: 18px;
  }
  .category-links a {
    font-size: 0.78rem;
    padding: 8px 12px;
    border: 1px solid #c3c7b7;
  }
  .menu-layout,
  .about-grid,
  .delivery-layout,
  .faq-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .menu-aside {
    position: static;
  }
  .menu-aside > img {
    height: 260px;
  }
  .menu-section h2 {
    font-size: 2.6rem;
  }
  .menu-item h3 {
    font-size: 1.5rem;
  }
  .menu-item {
    gap: 10px;
  }
  .item-category {
    font-size: 0.75rem;
  }
  .menu-section {
    margin-bottom: 48px;
  }
  .aside-body {
    padding: 28px;
  }
  .about-image img {
    height: 350px;
  }
  .call-panel {
    padding: 35px 28px;
  }
  .big-phone {
    font-size: 2.2rem;
  }
  .faq-layout {
    gap: 20px;
  }
  .map-panel iframe {
    height: 340px;
  }
  .map-caption {
    padding: 20px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .section-contact,
  .contact-bottom {
    padding-top: 0;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 20px;
  }
  .nav-call {
    display: none;
  }
  .hero-grid {
    min-height: 620px;
  }
  .hero-visual {
    height: 560px;
  }
  .hero-visual img {
    width: calc(100% + 32px);
  }
  .intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .intro-grid > .eyebrow {
    grid-column: 1/-1;
    margin-bottom: 0;
  }
  .story-grid,
  .contact-summary {
    gap: 50px;
  }
  .delivery-banner {
    padding: 42px;
    grid-template-columns: 1fr;
  }
  .footer-main {
    gap: 35px;
  }
  .qualities {
    gap: 16px;
  }
  .qualities span + span:before {
    margin-right: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding: 65px 0;
  }
  .topline .container {
    min-height: 32px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  .topline .topline-note {
    display: none;
  }
  .topline a {
    font-size: 0.75rem;
  }
  .nav-row {
    height: 83px;
    position: relative;
  }
  .brand-name {
    font-size: 1.85rem;
  }
  .brand-sub {
    font-size: 0.75rem;
  }
  .menu-toggle {
    display: inline-flex;
    font-size: 0.82rem;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: -20px;
    right: -20px;
    top: 83px;
    background: var(--dark);
    z-index: 20;
    padding: 15px 24px 24px;
    border-bottom: 1px solid #767c6d;
  }
  .site-nav.is-open {
    display: block;
  }
  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  .nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }
  .hero-content {
    padding: 47px 0 15px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.3rem);
    max-width: 650px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }
  .h1-brand {
    font-size: 0.77rem;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
  }
  .hero-description {
    font-size: 0.95rem;
    max-width: 550px;
    margin-bottom: 26px;
  }
  .hero .actions {
    gap: 10px;
  }
  .button {
    padding: 15px 19px;
    font-size: 0.83rem;
  }
  .hero-visual {
    height: 320px;
    margin-top: 8px;
  }
  .hero-visual img {
    width: calc(100% + 40px);
    left: -20px;
    object-position: 50% 55%;
  }
  .hero-visual:after {
    inset: 0 -20px;
    background: linear-gradient(
      0deg,
      var(--dark),
      transparent 25%,
      transparent 85%,
      var(--dark)
    );
  }
  .fire-seal {
    width: 92px;
    height: 92px;
    font-size: 0.75rem;
    right: 5px;
    bottom: 8px;
  }
  .hero-caption {
    left: 0;
    bottom: 15px;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: start;
    gap: 12px;
    font-size: 0.77rem;
    padding: 20px 0;
  }
  .qualities {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .qualities span + span:before {
    margin-right: 18px;
  }
  .intro-grid,
  .story-grid,
  .contact-summary {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .intro-grid h2 {
    font-size: 2.7rem;
  }
  .intro-grid .chapter-no {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading p {
    margin-top: 20px;
  }
  .section-heading .text-link {
    margin-top: 20px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .food-card {
    padding: 24px 0;
  }
  .food-card h3 {
    margin-top: 15px;
  }
  .food-card p {
    max-width: none;
  }
  .delivery-banner {
    padding: 35px 26px;
    gap: 25px;
  }
  .delivery-banner h2 {
    font-size: 2.65rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-main > div:first-child {
    grid-column: 1/-1;
  }
  .footer-main p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .footer-phone {
    font-size: 1.25rem;
  }
  .address-block {
    grid-template-columns: 85px 1fr;
    gap: 12px;
  }
  .site-footer {
    padding-top: 45px;
  }
}
@media (max-width: 900px) {
  .hero-visual.hero-typography {
    height: auto;
    min-height: 0;
    margin-top: 0;
  }
  .section-contact,
  .contact-bottom {
    padding-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

/* Dar ekranlarda küçük metinleri ve dokunma alanlarını okunur tut. */
@media (max-width: 900px) {
  .nav-row {
    gap: 16px;
  }
  .brand-sub {
    letter-spacing: 0.16em;
  }
  .topline .container > span:first-child {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .topline a {
    flex-shrink: 0;
  }
  .button,
  .menu-toggle {
    font-size: 0.875rem;
  }
  .hero-service-links {
    gap: 12px;
  }
  .hero-service-links small {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

/* İşletmenin sağladığı fotoğraflar ve BKM logoları. */
.brand.brand-with-logo {
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
}
.brand-with-logo .brand-name {
  font-size: 1.8rem;
}
.brand-with-logo .brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.hero-visual.hero-photo {
  align-self: stretch;
  display: block;
  height: auto;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}
.hero-visual.hero-photo img {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-position: 50% 65%;
  filter: none;
}
.hero-visual.hero-photo:after {
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 15, 10, 0.9), transparent 40%);
  pointer-events: none;
}
.hero-photo-caption {
  position: absolute;
  inset: auto 32px 35px;
  z-index: 1;
  color: #fff;
  font: 1.8rem/1.3 var(--serif);
}
.hero-photo-caption span {
  display: block;
  margin-bottom: 9px;
  font: 500 0.75rem/1.5 var(--sans);
  letter-spacing: 0.15em;
}
.photo-figure {
  margin: 0;
  min-width: 0;
}
.photo-figure img {
  width: 100%;
  height: auto;
}
.photo-figure figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #626b57;
}
.intro-with-photo {
  grid-template-columns: 0.85fr 1fr 1.05fr;
  gap: 45px;
  align-items: center;
}
.intro-photo-block .eyebrow {
  color: #98411f;
  font-size: 0.78rem;
}
.counter-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.food-card .card-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 26px;
}
.food-card .photo-uncropped {
  object-fit: contain;
}
.chef-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 85px;
}
.chef-feature > div > p:not(.eyebrow) {
  color: #c4cbbb;
  font-size: 1rem;
}
.chef-photo {
  max-width: 510px;
}
.chef-photo img {
  /* Afişin metnini ve yüzü kesmeden, orijinal oranıyla göster. */
  width: 100%;
  height: auto;
  object-fit: contain;
}
.story-strip .photo-figure figcaption {
  color: #c4cbbb;
}
.about-counter img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.kitchen-section {
  background: var(--paper);
}
.kitchen-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}
.kitchen-wide {
  grid-column: 1 / -1;
}
.kitchen-wide img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
.kitchen-portrait img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
}
.menu-feature {
  margin-bottom: 30px;
}
.menu-feature img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 83%;
}
.meat-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}
.meat-photo-pair img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.menu-aside-with-photo {
  position: static;
}
.menu-serving img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.menu-serving figcaption {
  color: #c4cbbb;
  padding: 0 25px;
}
.delivery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
  gap: 65px;
}
.delivery-hero-grid h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}
.delivery-fire {
  margin-top: 24px;
}
.delivery-fire img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}
.delivery-fire figcaption {
  color: #c4cbbb;
}
@media (max-width: 1100px) {
  .brand-with-logo .brand-name {
    font-size: 1.65rem;
  }
  .brand-logo {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
  .nav-links {
    gap: 18px;
  }
  .hero-grid,
  .chef-feature,
  .delivery-hero-grid {
    gap: 35px;
  }
  .hero-visual.hero-photo {
    min-height: 600px;
  }
  .intro-with-photo {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 35px;
  }
  .intro-photo-block {
    grid-row: 1 / 3;
  }
  .intro-with-photo > div:last-child {
    grid-column: 2;
  }
  .counter-photo img {
    aspect-ratio: 2 / 3;
  }
}
@media (max-width: 900px) {
  .brand.brand-with-logo {
    gap: 9px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    padding: 4px;
  }
  .brand-with-logo .brand-name {
    font-size: 1.35rem;
  }
  .brand-with-logo .brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    margin-top: 6px;
  }
  .hero-grid,
  .intro-with-photo,
  .chef-feature,
  .delivery-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .hero-visual.hero-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin: 0 0 24px;
    height: auto;
  }
  .hero-photo-caption {
    inset: auto 22px 25px;
    font-size: 1.5rem;
  }
  .intro-photo-block {
    grid-row: auto;
  }
  .intro-with-photo > div:last-child {
    grid-column: auto;
  }
  .counter-photo img {
    aspect-ratio: 4 / 3;
    object-position: 50% 60%;
  }
  .food-card .card-photo {
    max-height: none;
  }
  .chef-photo {
    max-width: 100%;
  }
  .chef-feature {
    gap: 35px;
  }
  .kitchen-photos {
    gap: 25px;
    grid-template-columns: minmax(0, 1fr);
  }
  .kitchen-wide {
    grid-column: auto;
  }
  .kitchen-portrait img {
    max-height: none;
  }
  .meat-photo-pair {
    gap: 15px;
  }
  .delivery-hero-grid h1 {
    font-size: clamp(3rem, 11vw, 4.5rem);
  }
  .delivery-fire {
    margin-top: 0;
  }
}
@media (max-width: 360px) {
  .nav-row {
    gap: 8px;
  }
  .brand-with-logo .brand-name {
    font-size: 1.2rem;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

/* Telefon, tablet ve klavyeyle gezinme için ortak iyileştirmeler. */
.footer-bottom {
  flex-wrap: wrap;
  align-items: baseline;
}
.footer-credit {
  margin-left: auto;
  text-align: right;
  font-size: 0.875rem;
  color: #b8c0ab;
}
.footer-credit strong {
  font-weight: 600;
  color: var(--cream);
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 0;
  }
  .topline .container {
    min-height: 44px;
  }
  .topline a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .menu-toggle {
    min-height: 44px;
    flex-shrink: 0;
  }
  .site-nav {
    top: 100%;
    max-height: calc(100vh - 127px);
    max-height: calc(100dvh - 127px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .hero-grid,
  .intro-grid,
  .story-grid,
  .contact-summary,
  .about-grid,
  .delivery-layout,
  .faq-layout,
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-description,
  .page-lead,
  .order-steps p,
  .faq-list p {
    font-size: 1rem;
  }
  .footer-links {
    gap: 0;
  }
  .footer-links a,
  .footer-phone {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .footer-main p {
    font-size: 1rem;
  }
  .footer-bottom {
    align-items: stretch;
    gap: 12px;
  }
  .footer-credit {
    align-self: flex-end;
    max-width: 100%;
    padding-top: 8px;
  }
  .site-footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}
@media (max-width: 480px) {
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .actions .button,
  .delivery-banner > .button {
    width: 100%;
  }
  .actions .text-link {
    align-self: flex-start;
    min-height: 44px;
  }
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-label {
    margin-bottom: 8px;
  }
  .footer-main p {
    margin-top: 16px;
    margin-bottom: 0;
  }
  .address-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding-block: 20px;
  }
  .address-block a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .big-phone {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
  }
  .map-panel iframe {
    height: 300px;
  }
}
