/* Deferred stylesheet (loaded async after critical.css): nav-mobile, sections, menu, footer, … */

/* ─── Mobile Nav (slide-in) ─── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.55);
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background: var(--paper);
  padding: 5.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.nav-mobile.is-open .nav-mobile-panel {
  transform: translateX(0);
}

.nav-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--rose-deep);
  line-height: 0;
}
.nav-mobile-close svg { width: 26px; height: 26px; }

.nav-mobile-panel a:not(.btn) {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  color: var(--rose-deep);
  transition: color 0.2s;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(74, 44, 52, 0.08);
}
.nav-mobile-panel a:not(.btn):hover { color: var(--starbucks); }

.nav-mobile-panel .btn-primary {
  margin-top: 1rem;
  align-self: flex-start;
}

.nav-mobile-panel .mobile-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 44, 52, 0.1);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
}


/* ═══════════ STATS ═══════════ */
.stats {
  background: var(--rose-deep);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-item { padding: 0.5rem 0; }

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: #a8d5be;
}
.stat-number .suffix { font-size: 0.6em; }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ═══════════ SECTIONS ═══════════ */
section {
  padding: clamp(5rem, 12vw, 8rem) 0;
  scroll-margin-top: 5rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--starbucks);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 400;
  color: var(--rose-deep);
  margin-bottom: 1.5rem;
  line-height: 1.12;
}

/* ═══════════ ABOUT ═══════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.35rem;
  max-width: 52ch;
  line-height: 1.75;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-visual:hover img { transform: scale(1.04); }

.about-visual .about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(0, 98, 65, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.9rem 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  max-width: 15rem;
}

/* ═══════════ MENU ═══════════ */
.menu-section {
  background: var(--cream);
  border-block: 1px solid rgba(46, 46, 46, 0.05);
  position: relative;
  overflow: hidden;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
}

.menu-card {
  background: var(--paper);
  padding: 0;
  border: 1px solid rgba(122, 79, 88, 0.08);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.menu-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.menu-card-img picture {
  width: 100%;
  height: 100%;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--starbucks), var(--starbucks-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-accent { transform: scaleX(1); }

.menu-card-body { padding: 1.5rem 1.5rem 1.35rem; }

.menu-card:hover {
  box-shadow: 0 20px 48px -20px rgba(74, 44, 52, 0.18);
  transform: translateY(-6px);
}

.menu-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: var(--starbucks);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.menu-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 0.4rem;
}

.menu-card .price {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--starbucks);
  font-weight: 500;
  margin-bottom: 1rem;
}

.menu-card p:last-child {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Full menu list ─── */
.menu-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  /* CLS: API yüklenene kadar makul minimum yükseklik (spinner → içerik sıçraması) */
  min-height: 14rem;
}
@media (max-width: 768px) {
  .menu-full { grid-template-columns: 1fr; gap: 2.5rem; }
}

.menu-category h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rose-deep);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--starbucks);
  display: inline-block;
}

.menu-list { list-style: none; }

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(46, 46, 46, 0.07);
}

.menu-item-name {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
}

.menu-item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.15rem;
}

.menu-item-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--starbucks);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════ EXPERIENCE / TIMELINE ═══════════ */
.experience {
  text-align: center;
  position: relative;
}

.experience .section-title {
  max-width: 20ch;
  margin-inline: auto;
}

.experience-lead {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
@media (max-width: 700px) {
  .timeline { grid-template-columns: 1fr; gap: 2.5rem; }
}

.timeline-item {
  position: relative;
  padding-top: 3rem;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--starbucks-light);
  color: var(--starbucks);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.timeline-icon svg { width: 22px; height: 22px; }

.timeline-step {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--starbucks);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
}

.timeline-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 28ch;
  margin-inline: auto;
  line-height: 1.65;
}

/* ═══════════ REVIEWS MARQUEE ═══════════ */
.reviews {
  padding: clamp(4rem, 10vw, 6rem) 0;
  overflow: hidden;
  scroll-margin-top: 5rem;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.reviews-google svg { width: 24px; height: 24px; }

.reviews-stars { display: flex; gap: 2px; }
.reviews-stars svg { width: 18px; height: 18px; color: #f4b400; }

.reviews-score {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.marquee-wrap { position: relative; }
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 6vw, 5rem);
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--paper), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--paper), transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 45s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid rgba(46, 46, 46, 0.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.3s var(--ease);
}
.review-card:hover {
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.12);
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--starbucks-light);
  color: var(--starbucks);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author { font-size: 0.85rem; font-weight: 500; color: var(--ink); }
.review-date { font-size: 0.72rem; color: var(--muted); }

.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; color: #f4b400; }

.review-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .review-card { width: 280px; padding: 1.25rem; }
}

/* ═══════════ RESERVATION ═══════════ */
.reservation-section {
  background: linear-gradient(135deg, var(--rose-deep) 0%, #5a3640 100%);
  color: #fff;
  padding: clamp(5rem, 12vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.reservation-section::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 50%, var(--gold-soft), transparent 40%);
  opacity: 0.5;
  pointer-events: none;
}

.reservation-section .wrap { position: relative; z-index: 1; }

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .reservation-grid { grid-template-columns: 1fr; }
}

.reservation-lead {
  opacity: 0.82;
  max-width: 36ch;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.reservation-contact { display: flex; flex-direction: column; gap: 0.5rem; }

.reservation-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 400;
  color: #a8d5be;
  transition: color 0.2s;
}
.reservation-phone:hover { color: #fff; }

.reservation-hours {
  font-size: 0.8rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* ─── Form shared ─── */
.reservation-form,
.contact-form {
  width: 100%;
}

.reservation-form {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-fields,
.form-fields-compact { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 560px) {
  .form-row,
  .form-row-3 { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.form-optional {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.72rem;
  opacity: 0.6;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
}
.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(168, 213, 190, 0.6);
  background: rgba(255, 255, 255, 0.14);
}
.reservation-form select option {
  background: var(--rose-deep);
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--paper);
  border: 1px solid rgba(46, 46, 46, 0.12);
  color: var(--ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  border-radius: 2px;
  transition: border-color 0.25s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); opacity: 0.6; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--starbucks); }

.has-error { border-color: #e74c3c !important; }

.form-error {
  font-size: 0.72rem;
  color: #ff9b8a;
  min-height: 1em;
}
.contact-form .form-error { color: #c0392b; }

.form-error-global { margin-top: 0.25rem; }

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  background: #fff;
  color: var(--rose-deep);
  min-height: 48px;
}
.form-submit:hover {
  background: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-submit-sm {
  width: 100%;
  margin-top: 0.25rem;
  min-height: 44px;
}
.form-submit-sm:disabled { opacity: 0.6; cursor: not-allowed; }

.form-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #a8d5be;
}
.form-success h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
}
.form-success p { opacity: 0.75; font-size: 0.9rem; }

.form-success-inline {
  color: var(--starbucks);
  font-size: 0.9rem;
  padding: 0.75rem 0;
  font-weight: 400;
}

.contact-form { margin-top: 1rem; }

/* ═══════════ CONTACT ═══════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-block h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--rose-deep);
}

.contact-block p,
.contact-block a { color: var(--muted); font-size: 0.9375rem; }
.contact-block a { transition: color 0.2s; }
.contact-block a:hover { color: var(--starbucks); }

.hours-list { list-style: none; margin-top: 0.75rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(46, 46, 46, 0.07);
  font-size: 0.9375rem;
  color: var(--muted);
}
.hours-list li:first-child { border-top: 1px solid rgba(46, 46, 46, 0.07); }

.map-placeholder {
  margin-top: 1.25rem;
  aspect-ratio: 16/10;
  background: var(--cream);
  border: 1px dashed rgba(122, 79, 88, 0.22);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(3rem, 8vw, 5rem) var(--space) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  height: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.9rem; max-width: 32ch; line-height: 1.7; }

.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 0.25rem 0; font-size: 0.85rem; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: #a8d5be; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.social-links a:hover {
  border-color: #a8d5be;
  color: #a8d5be;
  background: rgba(168, 213, 190, 0.08);
}
.social-links svg { width: 16px; height: 16px; }

/* ═══════════ FLOATING BTNS ═══════════ */
.wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  border-radius: 3rem;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}
.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.wa-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-btn span { white-space: nowrap; }

@media (max-width: 480px) {
  .wa-btn { padding: 0.75rem; border-radius: 50%; }
  .wa-btn span { display: none; }
}

.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 150;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 46, 46, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s var(--ease);
}
.back-to-top:hover {
  background: var(--starbucks);
  transform: translateY(-3px);
}
.back-to-top svg { width: 16px; height: 16px; }

/* ═══════════ ALPINE TRANSITION UTILITIES ═══════════ */
.btt-enter { transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1), transform 300ms cubic-bezier(0, 0, 0.2, 1); }
.btt-leave  { transition: opacity 200ms cubic-bezier(0.4, 0, 1, 1), transform 200ms cubic-bezier(0.4, 0, 1, 1); }
.btt-hidden  { opacity: 0; transform: translateY(0.5rem); }
.btt-visible { opacity: 1; transform: translateY(0); }

/* ═══════════ SCROLL REVEAL ═══════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease) var(--delay, 0s),
    transform 0.8s var(--ease) var(--delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ MOBILE RESPONSIVE ═══════════ */

@media (max-width: 768px) {
  .hero {
    align-items: center;
    padding-top: clamp(7rem, 20vw, 10rem);
    padding-bottom: clamp(4rem, 10vw, 6rem);
  }

  .hero-content { max-width: 100%; }

  .hero-lead { max-width: 100%; font-size: 0.95rem; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.78rem;
  }

  .hero-meta { gap: 1.5rem 2rem; }
  .hero-scroll { display: none; }

  .about-badge {
    font-size: 0.95rem !important;
    padding: 0.7rem 1rem !important;
    max-width: 13rem !important;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 360px;
    margin-inline: auto;
  }

  .reservation-form { padding: 1.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .social-links { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --space: 1.1rem; }

  .site-header { padding: 0.75rem var(--space); }
  .logo-img { height: 3.25rem; }

  .hero h1 { font-size: 2.4rem; line-height: 1.1; }
  .hero-kicker { font-size: 0.62rem; letter-spacing: 0.22em; }
  .hero-lead { font-size: 0.9rem; line-height: 1.65; }
  .hero-meta { flex-direction: column; gap: 1rem; }

  .stats-grid { gap: 1.25rem 0.75rem; }
  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: 0.62rem; }

  .section-title { font-size: 1.65rem; }

  .about-visual { aspect-ratio: 3/4; }
  .about-badge {
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    font-size: 0.85rem !important;
    padding: 0.6rem 0.85rem !important;
    max-width: 11rem !important;
  }

  .menu-card-body { padding: 1.25rem 1.15rem 1.15rem; }
  .menu-card h3 { font-size: 1.25rem; }

  .timeline-item p { max-width: 100%; }
  .contact-grid { gap: 2.5rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-brand p { max-width: 100%; }

  .back-to-top { width: 2.25rem; height: 2.25rem; bottom: 4.5rem; right: 1rem; }
  .wa-btn { right: 1rem; bottom: 1rem; }
}

/* Touch device */
@media (hover: none) {
  .menu-card:hover { transform: none; box-shadow: none; }
  .menu-card:hover .menu-card-img img { transform: none; }
  .menu-card:hover .menu-card-accent { transform: scaleX(1); }
  .about-visual:hover img { transform: none; }
  .btn-primary:hover { transform: none; }
}

/* ═══════════ COOKIE BANNER ═══════════ */
/* Sabit konum kabukta: Alpine transition transform iç elemde kalsın (fixed bozulmasın) */
.cookie-banner-shell {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  max-width: 100%;
}

.cookie-banner {
  padding: 1rem var(--space);
  background: rgba(46, 46, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-banner-inner {
  max-width: 1140px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cookie-banner a {
  color: #a8d5be;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner a:hover { color: #fff; }

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn { padding: 0.6rem 1.25rem; font-size: 0.7rem; min-height: 38px; }

.btn-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-cookie-reject:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-banner-actions { width: 100%; justify-content: center; }
}

/* ═══════════ FOOTER LEGAL ═══════════ */
.footer-legal {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #a8d5be; }

@media (max-width: 480px) {
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}

/* ═══════════ LEGAL PAGES ═══════════ */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
}

.legal-main {
  flex: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-content {
  max-width: 720px;
}

.legal-back {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--starbucks);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--starbucks-deep); }

.legal-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.legal-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.legal-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--rose-deep);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content li { margin-bottom: 0.35rem; }

.legal-content a { color: var(--starbucks); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--starbucks-deep); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
}
.cookie-table th,
.cookie-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
  color: var(--muted);
}
.cookie-table th {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cookie-table code {
  font-size: 0.8rem;
  background: rgba(0, 98, 65, 0.06);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  color: var(--starbucks);
}

.legal-footer {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.5);
  padding: 1.5rem 0;
}
.legal-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}
.legal-footer nav { display: flex; gap: 1.5rem; }
.legal-footer a { color: rgba(255, 255, 255, 0.4); transition: color 0.2s; }
.legal-footer a:hover { color: #a8d5be; }

@media (max-width: 560px) {
  .legal-footer .wrap { flex-direction: column; text-align: center; }
  .legal-footer nav { justify-content: center; }
}

/* Safe area */
@supports (padding: env(safe-area-inset-bottom)) {
  .wa-btn { bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
  .back-to-top { bottom: calc(5rem + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
  .cookie-banner { padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
}
