:root {
  --white: #ffffff;

  /* Krem yüzeyler */
  --cream: #f4efe6;
  --cream-light: #fbf8f2;
  --soft-cream: #e9dfd2;

  /* Bordo vurgu */
  --burgundy: #40594a;
  --burgundy-dark: #31463a;
  /*40594a
/*31463a
  /* Daha dengeli pastel yeşiller */
  --sage-dark: #6d2436;
  --sage-deep: #4e1826;
  --sage: #78947f;
  --sage-soft: #a9bcae;
  --sage-light: #dce7dd;

  /* Metinler */
  --text: #242723;
  --text-strong: #171a17;
  --muted: #686d68;
  --text-on-dark: #f8faf8;
  --text-on-dark-muted: rgba(248, 250, 248, 0.76);

  /* Arayüz */
  --line: rgba(36, 39, 35, 0.13);
  --shadow: 0 14px 36px rgba(32, 46, 37, 0.1);
  --radius: 18px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.container {
  width: min(1080px, calc(100% - 32px));
  margin-inline: auto;
}

/* Kullanılmıyor; mevcut HTML bozulmasın diye gizli bırakıldı. */
.ambient {
  display: none;
}

.hero {
  min-height: 620px;
  color: var(--white);
  background: var(--sage-dark);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.28;
}
.topbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(148, 116, 116, 0.1);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 21px;
}
.brand-copy {
  display: grid;
  gap: 1px;
}
.brand-copy strong {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  letter-spacing: 0.06em;
}
.brand-copy small {
  font-size: 9px;
  letter-spacing: 0.16em;
  opacity: 0.65;
}
.outline-button {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition: var(--transition);
}
.outline-button:hover {
  background: var(--white);
  color: var(--text-strong);
}

.hero-content {
  min-height: 530px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 700;
  color: var(--sage-light);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark {
  color: var(--burgundy);
}
.hero h1,
.intro h2,
.menu-toolbar h2,
.category-heading h3 {
  font-family: "Playfair Display", serif;
}
.hero h1 {
  font-size: clamp(54px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0;
  font-weight: 600;
}
.hero h1 em {
  color: var(--sage-light);
  font-weight: 600;
}
.hero-copy > p {
  max-width: 580px;
  color: var(--text-on-dark-muted);
  line-height: 1.75;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}
.primary-button {
  background: var(--burgundy);
  color: var(--white);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  transition: var(--transition);
}
.primary-button:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}
.text-link {
  color: var(--text-on-dark);
  font-weight: 600;
}
.text-link span {
  color: var(--sage);
  margin-left: 4px;
}

.hero-card {
  min-height: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--sage-deep);
  box-shadow: none;
}
.hero-card::after {
  display: none;
}
.hero-card-badge {
  display: inline-flex;
  padding: 7px 11px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.cup-art {
  display: none;
}
.quick-info {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.quick-info div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
}
.quick-info span,
footer span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
}
.quick-info strong {
  font-size: 14px;
  color: var(--text-on-dark);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 82px 0 68px;
  align-items: end;
}
.intro h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.06;
  margin: 16px 0 0;
}
.intro p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  justify-self: end;
}
.intro code {
  background: var(--sage-light);
  padding: 3px 7px;
  border-radius: 6px;
  color: var(--burgundy-dark);
}

.menu-shell {
  background: var(--cream-light);
  padding: 72px 0 90px;
  border-top: 1px solid var(--line);
}
.menu-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}
.menu-toolbar h2 {
  font-size: clamp(38px, 5vw, 56px);
  margin: 12px 0 0;
}
.search-box {
  width: min(330px, 100%);
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
}
.search-box span {
  color: var(--burgundy);
  font-size: 22px;
}
.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}
.search-box input::placeholder {
  color: #9a958f;
}
.category-tabs {
  display: flex;
  gap: 8px;
  margin: 34px 0 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar {
  display: none;
}
.tab {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  transition: var(--transition);
}
.tab:hover,
.tab.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.menu-category {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: none;
}
.menu-category:hover {
  box-shadow: var(--shadow);
}
.featured-category {
  background: var(--sage-dark);
  color: var(--white);
  border-color: transparent;
}
.featured-category .menu-item {
  border-color: rgba(255, 255, 255, 0.14);
}
.featured-category .menu-item p {
  color: rgba(255, 255, 255, 0.78);
}
.featured-category .menu-item strong {
  color: #ffffff;
}
.category-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: var(--burgundy-dark);
  font-size: 11px;
  font-weight: 800;
}
.featured-category .category-icon {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}
.category-heading span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.featured-category .category-heading span {
  color: var(--sage-light);
}
.category-heading h3 {
  font-size: 27px;
  margin: 1px 0 0;
}
.items {
  display: grid;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.menu-item h4 {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 700;
}
.menu-item p {
  margin: 5px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: #606660;
}
.menu-item strong {
  white-space: nowrap;
  color: var(--burgundy);
  font-size: 14px;
}
.compact-items .menu-item {
  padding: 13px 0;
}
.empty-state {
  text-align: center;
  padding: 40px 0 0;
  color: var(--muted);
}

.quote-section {
  background: var(--sage-light);
  padding: 64px 0;
}
.quote-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}
.quote-inner span {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--burgundy);
}
.quote-inner p {
  margin: 0;
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--text-strong);
}

footer {
  background: var(--sage-dark);
  color: var(--white);
  padding: 58px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-grid p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.65;
}
.footer-grid strong {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bottom a {
  color: var(--sage);
}
[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero-card {
    max-width: 520px;
    width: 100%;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .intro p {
    justify-self: start;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1080px);
  }
  .topbar {
    height: 78px;
  }
  .outline-button {
    display: none;
  }
  .brand-copy strong {
    font-size: 17px;
  }
  .hero-content {
    padding: 46px 0 62px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-card {
    padding: 22px;
  }
  .intro {
    padding: 64px 0 52px;
  }
  .intro h2,
  .menu-toolbar h2 {
    font-size: 38px;
  }
  .menu-shell {
    padding: 58px 0 70px;
  }
  .menu-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-box {
    width: 100%;
  }
  .menu-category {
    padding: 19px;
    border-radius: 15px;
  }
  .quote-section {
    padding: 52px 0;
  }
  .quote-inner {
    gap: 6px;
  }
  .quote-inner span {
    font-size: 52px;
  }
  .quote-inner p {
    font-size: 27px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* Okunabilirlik iyileştirmeleri */
.hero,
footer {
  color: var(--text-on-dark);
}

.hero h1 em {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.12);
}

.intro p,
.empty-state {
  color: #5f655f;
}

.search-box input::placeholder {
  color: #777d78;
}

.tab {
  color: #555c56;
  font-weight: 600;
}

.category-heading span {
  color: var(--burgundy);
  font-weight: 700;
}

.quote-section {
  background: var(--sage-light);
}

.quote-inner p {
  color: var(--text-strong);
}

footer {
  background: var(--sage-deep);
}

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

.footer-grid strong {
  color: rgba(255, 255, 255, 0.94);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom a {
  color: var(--sage-light);
  font-weight: 700;
}

.social-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: inherit;
  text-decoration: none;
}

.social-item i {
  font-size: 22px;
  color: #e1306c; /* Instagram rengi */
}

.social-item strong {
  margin: 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.social-item a:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .menu-item h4 {
    font-size: 15px;
  }

  .menu-item p {
    font-size: 12px;
  }
}
