:root {
  --white: #ffffff;
  --white-soft: #f8f7f5;
  --surface: #f3f1ee;
  --kahve: #5a3a2c;
  --kahve-deep: #3a2419;
  --kahve-mid: #7a5644;
  --kahve-soft: #a48572;
  --yesil: #4f8376;
  --yesil-deep: #355f55;
  --yesil-soft: #6fa093;
  --yesil-mist: #e6f0ed;
  --yesil-wash: #f2f7f5;
  --text: #2c221c;
  --text-muted: #6e5d52;
  --line: rgba(90, 58, 44, 0.12);
  --line-strong: rgba(90, 58, 44, 0.22);
  --shadow-soft: 0 18px 50px rgba(58, 36, 25, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --space: clamp(1rem, 4.2vw, 2.75rem);
  --max: 1180px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--white);
  background-image:
    radial-gradient(ellipse 90% 55% at 0% -5%, rgba(79, 131, 118, 0.11), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(90, 58, 44, 0.07), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--white-soft) 100%);
  line-height: 1.65;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--kahve-deep);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2rem, 8vw, 4.6rem);
}

h2 {
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
}

p {
  margin: 0 0 1rem;
}

main {
  flex: 1;
  width: 100%;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 var(--space);
  padding-top: env(safe-area-inset-top);
  background: var(--kahve-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(58, 36, 25, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kahve-soft) 0%, var(--yesil) 55%, var(--kahve-mid) 100%);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  min-width: 0;
  max-width: calc(100% - 3.5rem);
}

.logo-mark {
  width: 2.15rem;
  height: 2.15rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.logo:hover .logo-mark {
  background: var(--yesil);
  border-color: var(--yesil);
  color: var(--white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.4vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text span {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yesil-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  padding: 0.55rem 0.7rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: var(--yesil-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--white);
  margin-inline: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ——— Image placeholders ——— */
.img-slot {
  background:
    linear-gradient(155deg, var(--surface) 0%, var(--yesil-mist) 55%, #ebe4de 100%);
  border: 1px solid var(--line-strong);
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.img-slot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(90, 58, 44, 0.1);
  pointer-events: none;
  z-index: 1;
}

.img-slot::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kahve-mid);
  text-align: center;
  padding: 1rem;
  z-index: 2;
}

.img-slot:has(img)::before,
.img-slot:has(img)::after {
  display: none;
}

.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease);
}

@media (hover: hover) {
  .img-slot:hover img {
    transform: scale(1.04);
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(100svh - var(--header-h), 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  animation: heroGlow 12s ease-in-out infinite alternate;
}

.hero-media::before {
  display: none;
}

.hero-media::after {
  letter-spacing: 0.18em;
  color: var(--kahve-mid);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.96) 12%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(2rem, 8vh, 7rem) var(--space) clamp(2rem, 7vh, 5rem);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6vw, 3.1rem);
  font-weight: 600;
  font-style: italic;
  color: var(--kahve);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
  animation: brandIn 1.1s var(--ease) both;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--yesil);
}

.ornament span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--kahve-soft);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero h1 {
  max-width: 16ch;
  margin-bottom: 0.95rem;
}

.lede {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2.8vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

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

.btn-primary {
  background: var(--kahve);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(90, 58, 44, 0.22);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--kahve-deep);
    box-shadow: 0 14px 34px rgba(90, 58, 44, 0.28);
  }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--yesil);
  color: var(--yesil-deep);
  backdrop-filter: blur(6px);
}

@media (hover: hover) {
  .btn-ghost:hover {
    background: var(--yesil-mist);
  }
}

/* ——— Values / promise ——— */
.promise {
  padding: clamp(2.5rem, 7vw, 4.5rem) var(--space);
  background:
    linear-gradient(180deg, var(--white) 0%, var(--yesil-wash) 48%, var(--white) 100%);
  border-top: 1px solid var(--line);
}

.promise-intro {
  width: min(100%, 36rem);
  margin: 0 auto 2rem;
  text-align: center;
}

.promise-intro .ornament {
  justify-content: center;
  margin-bottom: 0.85rem;
}

.promise-intro h2 {
  margin-bottom: 0.55rem;
}

.promise-intro p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  font-size: clamp(0.98rem, 2.6vw, 1.08rem);
}

.promise-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.promise-item {
  text-align: center;
  padding: 1.35rem 1.1rem 1.5rem;
  background: var(--yesil);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
  .promise-item:hover {
    background: var(--yesil-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(63, 107, 96, 0.28);
  }
}

.promise-item:active {
  transform: translateY(0);
}

.promise-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.5rem;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.55);
}

.promise-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.promise-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.8vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.45rem;
}

.promise-item p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 22rem;
}

/* ——— Values strip (legacy) ——— */
.strip {
  padding: clamp(1.35rem, 4vw, 2.5rem) var(--space);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--yesil-wash), var(--white) 30%, var(--white) 70%, var(--yesil-wash));
}

.strip-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-align: center;
}

.strip-item {
  position: relative;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.strip-item:last-child {
  border-bottom: 0;
}

.strip-item:not(:last-child)::after {
  display: none;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  font-weight: 600;
  color: var(--kahve-deep);
  margin-bottom: 0.2rem;
}

.strip-item span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yesil-deep);
  font-weight: 500;
}

/* ——— Inner pages ——— */
.page-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(1.75rem, 5.5vw, 4rem) var(--space) 0;
}

.page-banner {
  position: relative;
  min-height: min(72svh - var(--header-h), 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-banner-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  box-shadow: none;
}

.page-banner-media::before {
  display: none;
}

.page-banner-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.96) 14%, rgba(255, 255, 255, 0.5) 46%, rgba(255, 255, 255, 0.18) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(2rem, 8vh, 7rem) var(--space) clamp(2rem, 7vh, 5rem);
}

.page-banner-content .eyebrow {
  color: var(--yesil-deep);
}

.page-banner-content .lede {
  max-width: 34rem;
}

.page-hero {
  display: grid;
  gap: 1.5rem;
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

.page-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 0.25rem;
}

.page-hero-media {
  min-height: clamp(220px, 55vw, 460px);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yesil);
  margin: 0 0 0.75rem;
}

.page-intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(1.75rem, 5.5vw, 4rem) var(--space) 0.5rem;
}

.page-intro .lede {
  max-width: 36rem;
}

.content-block {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 4rem) var(--space);
  text-align: center;
}

.content-block + .content-block {
  padding-top: clamp(0.85rem, 2.2vw, 1.4rem);
}

.content-block .ornament {
  justify-content: center;
  margin-bottom: 1rem;
}

.content-block + .content-block .ornament {
  margin-bottom: 0.7rem;
}

.content-block p {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--space) clamp(2rem, 5vw, 4rem);
  background: transparent;
  border: 0;
}

.gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.gallery-item figcaption {
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
  text-align: center;
  padding: 0 0.35rem;
}

.gallery .img-slot {
  min-height: clamp(140px, 38vw, 240px);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.gallery .img-slot::before {
  inset: 8px;
}

.products {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.25rem var(--space) clamp(2.5rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.product .img-slot {
  min-height: 0;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease;
}

@media (hover: hover) {
  .product:hover .img-slot {
    box-shadow: 0 22px 55px rgba(58, 36, 25, 0.12);
  }
}

.product-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.95rem;
  margin-bottom: 0.3rem;
}

.product-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--yesil);
  font-weight: 500;
  flex-shrink: 0;
}

.product h2 {
  margin: 0;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
}

.product p {
  color: var(--text-muted);
  margin: 0;
  padding-left: 0;
  font-weight: 300;
}

/* ——— Sulu yemek menüsü ——— */
.menu-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.75rem var(--space) clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.menu-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease);
}

.menu-card.js-note-card {
  cursor: pointer;
}

@media (hover: hover) {
  .menu-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
  }
}

.menu-card .img-slot {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.menu-card .img-slot::before {
  display: none;
}

.menu-card-body {
  padding: 0.7rem 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.note-open {
  appearance: none;
  margin-top: 0.75rem;
  padding: 0.45rem 0.85rem;
  border: 0;
  background: var(--yesil);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2.4vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

@media (hover: hover) {
  .note-open:hover {
    background: var(--yesil-deep);
  }
}

.note-open:focus-visible {
  outline: 2px solid var(--kahve);
  outline-offset: 2px;
}

.menu-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--yesil);
  margin-bottom: 0.15rem;
}

.menu-card h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(0.95rem, 3.4vw, 1.55rem);
  line-height: 1.2;
}

.menu-card p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  font-size: clamp(0.75rem, 2.6vw, 0.95rem);
  line-height: 1.45;
}

.menu-note {
  width: min(100%, 40rem);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  padding: 0 var(--space);
  text-align: center;
}

.menu-note p {
  margin: 0;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.menu-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.menu-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.menu-grid .reveal:nth-child(4) { transition-delay: 0.16s; }
.menu-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.menu-grid .reveal:nth-child(6) { transition-delay: 0.24s; }
.menu-grid .reveal:nth-child(7) { transition-delay: 0.28s; }
.menu-grid .reveal:nth-child(8) { transition-delay: 0.32s; }

/* ——— Footer ——— */
.site-footer {
  margin-top: auto;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--kahve-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--yesil-soft), var(--yesil), var(--kahve-soft));
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.25rem var(--space);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.55rem);
  color: var(--white);
  margin: 0 0 0.2rem;
}

.footer-note {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yesil-soft);
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 36rem;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yesil-soft);
  font-weight: 500;
}

.footer-contact-item a,
.footer-contact-item p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.footer-contact-item a {
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .footer-contact-item a:hover {
    color: var(--white);
  }
}

.footer-map {
  width: 100%;
  max-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: clamp(200px, 42vw, 280px);
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.social-link {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (hover: hover) {
  .social-link:hover {
    background: var(--yesil);
    border-color: var(--yesil);
    color: var(--white);
    transform: translateY(-2px);
  }
}

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

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

.hero-content.reveal {
  transition-delay: 0.08s;
}

.gallery .reveal:nth-child(2),
.products .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.gallery .reveal:nth-child(3),
.products .reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.gallery .reveal:nth-child(4),
.products .reveal:nth-child(4) {
  transition-delay: 0.18s;
}

.gallery .reveal:nth-child(5) {
  transition-delay: 0.22s;
}

.gallery .reveal:nth-child(6) {
  transition-delay: 0.26s;
}

.gallery .reveal:nth-child(7) {
  transition-delay: 0.3s;
}

.gallery .reveal:nth-child(8) {
  transition-delay: 0.34s;
}

.gallery .reveal:nth-child(9) {
  transition-delay: 0.38s;
}

.gallery .reveal:nth-child(10) {
  transition-delay: 0.42s;
}

@keyframes brandIn {
  from {
    opacity: 0;
    letter-spacing: 0.08em;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    letter-spacing: 0.01em;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  from {
    filter: saturate(1) brightness(1);
  }
  to {
    filter: saturate(1.08) brightness(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .brand-mark,
  .hero-media,
  .img-slot img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ——— Mobile nav (default under 900px) ——— */
@media (max-width: 899px) {
  .nav-toggle {
    display: flex;
  }

  .logo-text span {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + env(safe-area-inset-top)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--kahve);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1.05rem var(--space);
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 9rem;
  }
}

/* ——— Small phones ——— */
@media (max-width: 480px) {
  :root {
    --header-h: 3.85rem;
  }

  .gallery {
    gap: 0.6rem;
  }

  .gallery .img-slot {
    min-height: 0;
  }

  .menu-grid,
  .products {
    gap: 0.6rem;
  }

  .cta-row .btn {
    flex: 1 1 100%;
  }

  .hero,
  .page-banner {
    min-height: min(68svh - var(--header-h), 520px);
  }
}

/* ——— Tablet+ ——— */
@media (min-width: 600px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .promise-item {
    padding: 1.6rem 1.2rem 1.75rem;
  }

  .strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .strip-item {
    padding: 0.5rem 0.75rem;
    border-bottom: 0;
  }

  .strip-item:not(:last-child)::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--line-strong);
  }

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

  .product .img-slot {
    aspect-ratio: 16 / 10;
    min-height: clamp(180px, 28vw, 260px);
  }

  .product p {
    padding-left: calc(1.05rem + 0.75rem);
  }

  .menu-grid {
    gap: 1.25rem;
  }

  .menu-card .img-slot {
    aspect-ratio: 4 / 3;
  }

  .menu-card-body {
    padding: 1rem 1.1rem 1.25rem;
  }

  .menu-card h2 {
    font-size: clamp(1.25rem, 3.8vw, 1.55rem);
  }

  .menu-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 4.75rem;
  }

  .hero-veil {
    background:
      linear-gradient(105deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.12) 70%),
      linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.35) 38%, transparent 62%);
  }

  .page-banner-veil {
    background:
      linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.58) 40%, rgba(255, 255, 255, 0.12) 68%),
      linear-gradient(to top, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.28) 42%, transparent 68%);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .gallery .img-slot {
    aspect-ratio: auto;
    min-height: clamp(160px, 22vw, 260px);
  }

  .page-banner {
    min-height: min(100svh - var(--header-h), 640px);
  }

  .footer-inner {
    align-items: stretch;
    text-align: left;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    width: auto;
    gap: 2rem;
    text-align: left;
  }

  .footer-map {
    max-width: none;
  }

  .footer-contact-item .footer-social {
    justify-content: flex-start;
  }
}

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

  .logo-text span {
    display: block;
  }

  .logo-mark {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }

  .page-hero {
    grid-template-columns: 0.95fr 1.15fr;
    align-items: end;
    gap: 3rem;
  }

  .page-hero-media {
    min-height: 420px;
  }

  .product .img-slot {
    aspect-ratio: auto;
    min-height: 260px;
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.65rem;
  }
}

/* ——— Note modal ——— */
.note-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.note-modal[hidden] {
  display: none;
}

.note-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 36, 25, 0.55);
}

.note-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 32rem);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(58, 36, 25, 0.28);
}

.note-modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  color: var(--kahve-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.note-modal-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}

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

.note-modal-content {
  padding: 1.15rem 1.2rem 1.4rem;
}

.note-modal-content h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.note-modal-body h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1.05rem;
  color: var(--kahve);
}

.note-modal-body h3:first-child {
  margin-top: 0;
}

.note-modal-body p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
}

.note-modal-body p:last-child {
  margin-bottom: 0;
}

body.modal-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.55rem 0.9rem;
  background: var(--kahve-deep);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
}

.skip-link:focus {
  top: 0.75rem;
}

.breadcrumb {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.85rem var(--space) 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--kahve-soft);
}

.breadcrumb a {
  color: var(--yesil-deep);
  text-decoration: none;
}

.breadcrumb [aria-current="page"] {
  color: var(--kahve);
}

.local-seo,
.faq {
  width: min(100%, 44rem);
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  padding: 0 var(--space);
}

.local-seo h2,
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  color: var(--kahve-deep);
  margin: 0 0 0.75rem;
  text-align: center;
}

.local-seo p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--line);
}

.faq-q {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--kahve-deep);
}

.faq-a {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--white);
}

.site-footer address {
  font-style: normal;
  margin: 0;
}
