/* Eker Lokantası — premium Turkish fine dining */

:root {
  --emerald-deep: #0c3d34;
  --emerald-mid: #145a4d;
  --emerald-soft: #1a6b5c;
  --beige: #e9dfd2;
  --stone: #cfc3b2;
  --stone-dark: #b8aa96;
  --brown: #3d2f26;
  --brown-soft: #5c4a3e;
  --gold: #c9a66b;
  --gold-muted: #b08d52;
  --charcoal: #1a1614;
  --cream: #f7f2ea;
  --glass: rgba(247, 242, 234, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow-warm: 0 24px 48px rgba(26, 22, 20, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown);
  background-color: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--emerald-mid);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

a:hover {
  color: var(--gold-muted);
}

/* Turkish motif subtle background */
.pattern-bg {
  position: relative;
  isolation: isolate;
}

.pattern-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%230c3d34' d='M40 4l6 18 18 6-18 6-6 18-6-18-18-6 18-6z'/%3E%3C/svg%3E");
  background-size: 72px 72px;
}

.pattern-bg > * {
  position: relative;
  z-index: 1;
}

/* Typography */
h1,
h2,
h3,
.h-display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--brown);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* Layout */
.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section--emerald {
  background: linear-gradient(160deg, var(--emerald-deep) 0%, #0a3029 45%, var(--emerald-mid) 100%);
  color: var(--beige);
}

.section--emerald h2,
.section--emerald h3,
.section--emerald .h-display {
  color: var(--beige);
}

.section--emerald .eyebrow {
  color: rgba(201, 166, 107, 0.85);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 125;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s;
}

/* Not: backdrop-filter, içindeki position:fixed .nav için görünüm kutusu oluşturur;
   mobil çekmece kaydırma sonrası yarım görünme bug’ına yol açıyordu — düz arka plan kullanılıyor. */
.site-header.is-scrolled {
  background: rgba(12, 61, 52, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 104px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.site-header:not(.is-scrolled) .brand img {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.92);
  position: relative;
  padding: 0.35rem 0;
}

.site-header:not(.is-scrolled) .nav__link {
  color: rgba(247, 242, 234, 0.95);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  transform-origin: center;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobil menü arkası — tıklanınca kapanır */
.nav-backdrop {
  display: none;
}

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

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: rgba(26, 22, 20, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  body.menu-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    z-index: 108;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(22rem, 88vw);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(7.5rem + env(safe-area-inset-top, 0px)) 1.75rem 2rem;
    gap: 0.35rem;
    background: rgba(12, 61, 52, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.28);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.42s var(--ease-out);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.menu-open .nav {
    transform: translate3d(0, 0, 0);
  }

  .nav__link {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
  }

  .nav__link:last-of-type {
    border-bottom: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
  color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(176, 141, 82, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(176, 141, 82, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--emerald-mid);
  color: var(--emerald-deep);
}

.btn--outline-dark:hover {
  background: var(--emerald-deep);
  color: var(--cream);
  border-color: var(--emerald-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(12, 61, 52, 0.35) 0%,
      rgba(26, 22, 20, 0.55) 45%,
      rgba(12, 22, 28, 0.88) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(176, 141, 82, 0.12), transparent 55%);
  pointer-events: none;
}

.hero__reflection {
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 166, 107, 0.18), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cream);
  margin: 0 0 0.35rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  color: rgba(233, 223, 210, 0.92);
  margin: 0 0 1.25rem;
}

.hero__lead {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.88);
  margin: 0 0 2rem;
  max-width: 36rem;
  font-weight: 400;
}

/* Cards & grids */
.grid-2 {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 840px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-masonry {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
  }

  .grid-masonry .tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .grid-masonry .tile:nth-child(4) {
    grid-column: span 2;
  }
}

.tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  position: relative;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.tile:hover img {
  transform: scale(1.06);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 22, 20, 0.65));
  opacity: 0.85;
  pointer-events: none;
}

.dish-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 16px 40px rgba(61, 47, 38, 0.12);
  border: 1px solid rgba(207, 195, 178, 0.6);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(61, 47, 38, 0.18);
}

.dish-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dish-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.dish-card:hover .dish-card__img img {
  transform: scale(1.05);
}

.dish-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.dish-card__body h3,
.dish-card__body h4 {
  margin: 0 0 0.35rem;
  font-size: 1.28rem;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.dish-card__tag {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald-mid);
}

.dish-card__tag--ottoman {
  color: var(--gold-muted);
}

.dish-card--ottoman {
  border-color: rgba(176, 141, 82, 0.35);
  box-shadow: 0 16px 40px rgba(61, 47, 38, 0.1), inset 0 1px 0 rgba(201, 166, 107, 0.22);
}

.dish-card__body p:not(.dish-card__tag) {
  margin: 0;
  font-size: 0.92rem;
  color: var(--brown-soft);
}

/* Ana sayfa — iki mutfak */
.section--creamwash {
  background: linear-gradient(180deg, rgba(233, 223, 210, 0.45) 0%, transparent 55%), var(--cream);
}

.kitchen-intro__head {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.kitchen-intro__title {
  margin-top: 0.35rem;
}

.kitchen-intro__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown-soft);
}

.kitchen-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 960px) {
  .kitchen-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.kitchen-panel {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(207, 195, 178, 0.65);
  box-shadow: 0 22px 52px rgba(61, 47, 38, 0.11);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.kitchen-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(61, 47, 38, 0.14);
}

.kitchen-panel__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.kitchen-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.kitchen-panel:hover .kitchen-panel__media img {
  transform: scale(1.04);
}

.kitchen-panel__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 61, 52, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.kitchen-panel__label--gold {
  background: rgba(61, 47, 38, 0.85);
  border: 1px solid rgba(201, 166, 107, 0.35);
}

.kitchen-panel__body {
  padding: clamp(1.5rem, 3vw, 1.85rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kitchen-panel__body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
}

.kitchen-panel__body > p {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--brown-soft);
}

.kitchen-panel__list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--brown);
}

.kitchen-panel__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
}

.kitchen-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-muted);
}

.kitchen-panel__cta {
  margin-top: auto;
  align-self: flex-start;
}

.kitchen-signatures {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.kitchen-signatures__heading {
  margin: 0 0 1.35rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brown);
}

.kitchen-signatures__heading span {
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--emerald-mid);
}

.kitchen-signatures__heading--ottoman span {
  border-bottom-color: var(--gold-muted);
}

.tile__cap {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.96);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.tile--cap::after {
  opacity: 0.92;
}

/* Glass panel subtle */
.glass-panel {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--stone-dark), transparent);
  transform: translateX(-50%);
}

@media (max-width: 720px) {
  .timeline::before {
    left: 12px;
    transform: none;
  }
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

@media (max-width: 720px) {
  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 2.5rem;
  }
}

.timeline__marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--emerald-soft);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0.35rem);
  z-index: 1;
}

@media (max-width: 720px) {
  .timeline__marker {
    left: 12px;
    transform: translate(-50%, 0.35rem);
  }
}

.timeline__card {
  padding: 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 195, 178, 0.75);
  box-shadow: 0 12px 32px rgba(61, 47, 38, 0.08);
}

.timeline__item:nth-child(odd) .timeline__card:first-child {
  grid-column: 1;
  text-align: right;
}

.timeline__item:nth-child(odd) .timeline__card:last-child {
  grid-column: 2;
}

.timeline__item:nth-child(even) .timeline__card:first-child {
  grid-column: 2;
  order: 2;
}

.timeline__item:nth-child(even) .timeline__card:last-child {
  grid-column: 1;
  order: 1;
  text-align: right;
}

@media (max-width: 720px) {
  .timeline__item:nth-child(odd) .timeline__card:first-child,
  .timeline__item:nth-child(odd) .timeline__card:last-child,
  .timeline__item:nth-child(even) .timeline__card:first-child,
  .timeline__item:nth-child(even) .timeline__card:last-child {
    grid-column: 1;
    order: unset;
    text-align: left;
  }
}

/* Menu page */
.menu-cat {
  margin-bottom: 3rem;
}

.menu-cat__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(207, 195, 178, 0.85);
}

.menu-cat[id] {
  scroll-margin-top: 130px;
}

.menu-cat__header h2 {
  margin: 0;
}

.menu-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 620px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(207, 195, 178, 0.6);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.menu-item:hover {
  border-color: rgba(176, 141, 82, 0.45);
  box-shadow: 0 8px 24px rgba(61, 47, 38, 0.08);
}

.menu-item__thumb {
  flex: 0 0 88px;
  height: 88px;
  border-radius: 10px;
  overflow: hidden;
}

.menu-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item__info h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.menu-item__info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.badge-featured {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  background: rgba(201, 166, 107, 0.28);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.35rem;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 1px solid rgba(207, 195, 178, 0.8);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #12100e 100%);
  color: rgba(233, 223, 210, 0.85);
  padding: 3.5rem 0 2rem;
}

.site-footer a {
  color: rgba(233, 223, 210, 0.9);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand img {
  height: 128px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.95;
}

.social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s, border-color 0.25s;
}

.social a:hover {
  background: rgba(201, 166, 107, 0.15);
  border-color: rgba(201, 166, 107, 0.45);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  text-align: center;
  color: rgba(233, 223, 210, 0.55);
}

/* Motion — reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  padding: clamp(9rem, 15vw, 11rem) 0 clamp(3rem, 6vw, 4rem);
  background: linear-gradient(165deg, var(--emerald-deep) 0%, #0a2822 50%, var(--brown) 100%);
  color: var(--cream);
  text-align: center;
}

.page-hero h1 {
  color: var(--cream);
  margin: 0.5rem 0;
}

.page-hero p {
  max-width: 36rem;
  margin: 0 auto;
  opacity: 0.88;
}

.split-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--brown-soft);
  border-left: 3px solid var(--gold-muted);
  padding-left: 1.25rem;
  margin: 2rem 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.info-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(207, 195, 178, 0.55);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.info-list strong {
  min-width: 8rem;
  color: var(--emerald-deep);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-lg {
  margin-bottom: 2rem;
}

/* Vertical timeline (Tarihçe) */
.timeline-v {
  border-left: 1px solid rgba(207, 195, 178, 0.85);
  padding-left: 2rem;
  margin-left: 0.75rem;
  list-style: none;
}

.timeline-v__item {
  position: relative;
  padding-bottom: 2.75rem;
}

.timeline-v__item:last-child {
  padding-bottom: 0;
}

.timeline-v__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--emerald-mid);
}

.timeline-v__year {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--emerald-deep);
  margin: 0 0 0.35rem;
}

.timeline-v__card {
  background: var(--cream);
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 195, 178, 0.65);
  box-shadow: 0 12px 36px rgba(61, 47, 38, 0.07);
}

.timeline-v__card p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero__media img {
    transform: scale(1.05) !important;
  }

  .btn:hover,
  .dish-card:hover,
  .kitchen-panel:hover,
  .tile:hover img {
    transform: none;
  }
}
