/* ============================================================
   MANTI — style.css  (v2 — Design Edit)

   Design direction: Food-first. Confident. Contemporary.
   Less soft editorial, more cool restaurant energy.

   Table of Contents
   1.  Design Tokens
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Image Placeholders (art-directed, not wireframe)
   7.  Section Eyebrow Labels
   8.  Navigation
   9.  Hero
   10. What is Mantı
   11. Menu
   12. Small or Large
   13. Our Story
   14. Gallery
   15. Instagram
   16. Visit
   17. Reserve (dark)
   18. Order Online (blue)
   19. Footer
   20. Mobile Sticky CTA
   21. Animations
   22. Responsive — Tablet (≤ 1024px)
   23. Responsive — Mobile (≤ 768px)
   24. Responsive — Small (≤ 480px)
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  /* Base */
  --cream:      #F8F5EF;
  --cream-alt:  #F0E9DF;
  --cream-mid:  #E8DECE;
  --white:      #FDFCF9;

  /* Placeholder — warm amber (art-directed, not wireframe) */
  --ph:         #C4A878;
  --ph-dark:    #B4926A;
  --ph-light:   #D4BC98;

  /* Ink */
  --ink:        #181210;
  --ink-80:     rgba(24, 18, 16, 0.8);
  --ink-60:     rgba(24, 18, 16, 0.6);
  --ink-40:     rgba(24, 18, 16, 0.4);
  --ink-20:     rgba(24, 18, 16, 0.2);
  --ink-12:     rgba(24, 18, 16, 0.12);
  --ink-06:     rgba(24, 18, 16, 0.06);

  /* Evil-Eye Blue */
  --blue:       #1852A8;
  --blue-dark:  #0D3A7C;
  --blue-mid:   #2A69C8;
  --blue-light: #EAF1FB;
  --blue-pale:  #F0F5FD;

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-md:   1.0625rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.875rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.5rem;
  --text-5xl:  5rem;
  --text-hero: clamp(5rem, 13vw, 14rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container-max: 1340px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);
  --section-py:    clamp(5rem, 9vw, 9rem);
  --nav-height:    68px;
  --border:        var(--ink-12);
  --border-strong: var(--ink-20);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 270ms ease;
  --t-slow: 450ms ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
address { font-style: normal; }
ul[role="list"] { list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--blue-light); color: var(--blue-dark); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

/* The wordmark — nav version */
.wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
}

/* Hero wordmark — massive */
.hero-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-transform: uppercase;
  display: block;
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(2.75rem, 6.5vw, 6.5rem); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

em { font-style: italic; }

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section {
  padding-block: var(--section-py);
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background-color: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background-color: var(--blue-dark); border-color: var(--blue-dark); }

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink-60); }

.btn-cream {
  background-color: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn-cream:hover { background-color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: #fff; }

.btn-lg { padding: 1.05rem 2.5rem; font-size: var(--text-sm); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: var(--text-xs); }

.btn--soon {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}


/* ============================================================
   6. IMAGE PLACEHOLDERS
   Art-directed warm amber — not a wireframe grey box.
   Labels are barely visible for polished staging;
   developer comments in HTML mark the file paths.
   ============================================================ */

.img-ph {
  background: linear-gradient(145deg, var(--ph-light), var(--ph));
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* Developer label — barely visible staging note */
.img-ph-label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0.28;
  pointer-events: none;
}

.img-ph-label span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.img-ph-label code {
  font-family: 'Menlo', monospace;
  font-size: 9px;
  color: var(--ink);
}

/* Aspect ratios */
.img-ph--hero    { aspect-ratio: 3 / 4; }
.img-ph--square  { aspect-ratio: 1 / 1; }
.img-ph--manti   { aspect-ratio: 5 / 4; }
.img-ph--portrait { aspect-ratio: 3 / 4; }
.img-ph--gallery-lg { height: 100%; min-height: 500px; }
.img-ph--gallery-sm { aspect-ratio: 1 / 1; }
.img-ph--ig      { aspect-ratio: 1 / 1; background: linear-gradient(145deg, var(--ph), var(--ph-dark)); }

/* Real photography — object-fit cover for all image slots */
.story-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  align-items: start;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-60);
  padding-top: var(--sp-2);
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.what-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  aspect-ratio: 1 / 1;
}

.manti-card-img img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-item--lg img.gallery-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-strip .gallery-item img.gallery-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-item--solo img.gallery-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Glenhof location photo */
.glenhof-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.glenhof-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.glenhof-map-link {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: var(--cream);
  color: var(--blue);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-2) var(--sp-4);
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background var(--dur-fast) var(--ease-out);
}
.glenhof-map-link:hover { background: var(--cream-mid); }

/* Dessert menu photo */
.menu-cat-photo {
  margin-bottom: var(--sp-5);
  border-radius: 4px;
  overflow: hidden;
}
.menu-cat-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ============================================================
   7. SECTION EYEBROW LABELS
   ============================================================ */

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.eyebrow--light { color: rgba(248, 245, 239, 0.5); }
.eyebrow--light::before { background: rgba(248, 245, 239, 0.3); }


/* ============================================================
   8. NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--t-slow), box-shadow var(--t-slow);
}

.site-header.scrolled {
  background-color: rgba(248, 245, 239, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.nav-logo {
  text-decoration: none;
  color: var(--ink);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-evil-eye {
  width: 26px;
  height: 26px;
  display: block;
  transform-origin: top center;
  animation: evil-eye-sway 3.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes evil-eye-sway {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--ink); }

.nav-cta {
  background-color: var(--blue) !important;
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  letter-spacing: 0.1em;
  transition: background-color var(--t-base) !important;
}
.nav-cta:hover { background-color: var(--blue-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--ink);
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.site-header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   9. HERO
   Full-bleed image right edge, massive wordmark left.
   The image bleeds to the viewport edge — no padding on right.
   ============================================================ */

.hero {
  min-height: 100dvh;
  background-color: var(--cream);
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* Full-viewport grid — left has padding, right bleeds */
.hero-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  flex: 1;
  min-height: calc(100dvh - var(--nav-height) - 56px);
}

.hero-text {
  padding: var(--sp-12) var(--sp-10) var(--sp-12) var(--container-pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-8);
}

.hero-wordmark-wrap {
  overflow: hidden;
}

.hero-wordmark {
  animation: wordmark-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tagline {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
  animation: fade-up 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--ink-60);
  font-weight: 300;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  animation: fade-up 0.8s 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Image — bleeds to the right viewport edge (no right padding) */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  animation: fade-in 1s 0.1s ease both;
}

.hero-image-wrap .img-ph--hero {
  height: 100%;
  aspect-ratio: unset;
  position: absolute;
  inset: 0;
  width: 100%;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--container-pad);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  flex-shrink: 0;
  height: 56px;
  animation: fade-in 1s 0.9s ease both;
}

.hero-scroll-track {
  width: 28px;
  height: 1px;
  background: var(--ink-20);
  position: relative;
  overflow: hidden;
}

.hero-scroll-thumb {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: var(--blue);
  animation: scroll-slide 2.2s 1.2s ease-in-out infinite;
}


/* ============================================================
   10. WHAT IS MANTI
   Large, confident, food-led. Text takes visual command.
   ============================================================ */

.section-what {
  background-color: var(--white);
  padding-block: clamp(5rem, 10vw, 10rem);
}

.what-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
}

.what-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: end;
}

.what-heading-col { min-width: 0; }

.what-heading {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  line-height: 0.95;
}

.what-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  color: var(--ink-80);
  padding-bottom: 0.25rem;
}

.what-body .lead { color: var(--ink); font-size: var(--text-lg); }

.what-image { width: 100%; }

.what-photo--full {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  background: #000;
  border-radius: 4px;
}


/* ============================================================
   11. MENU
   Food is the hero. Mantı takes over the section.
   ============================================================ */

.section-menu {
  background-color: var(--cream);
}

.menu-header {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.menu-title {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  line-height: 0.95;
}

.menu-intro {
  font-size: var(--text-lg);
  color: var(--ink-60);
  max-width: 46ch;
  line-height: 1.65;
}

/* Category list */
.menu-body { display: flex; flex-direction: column; }

.menu-cat {
  padding-block: var(--sp-10);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.menu-cat:last-child { border-bottom: 1px solid var(--border); }

.menu-cat-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding-top: var(--sp-1);
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-4));
}

.menu-cat-note {
  font-size: var(--text-base);
  color: var(--ink-60);
  margin-bottom: var(--sp-8);
  max-width: 52ch;
  line-height: 1.65;
}

/* Mantı hero — full bleed treatment, own layout (not the label|content grid) */
.menu-cat--hero {
  display: block;
  background-color: var(--cream-alt);
  margin-inline: calc(var(--container-pad) * -1);
  padding-inline: var(--container-pad);
}

.menu-cat--hero .menu-cat-title {
  margin-bottom: var(--sp-6);
}

.menu-cat--hero .menu-cat-note {
  margin-bottom: var(--sp-8);
}

/* Standard list items */
.menu-list { display: flex; flex-direction: column; }

.menu-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--ink-06);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.menu-item-desc {
  font-size: var(--text-sm);
  color: var(--ink-60);
  line-height: 1.55;
}

.menu-item--pending .menu-item-name {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--ink-40);
}

/* Mantı cards */
.manti-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.manti-card { background: var(--white); overflow: hidden; }

.manti-card-img { overflow: hidden; }

.manti-card-text {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.manti-card-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.manti-card-text p {
  font-size: var(--text-sm);
  color: var(--ink-60);
  line-height: 1.65;
}

/* Badges */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid;
}

.badge--vegan { color: #2D6A4F; border-color: #2D6A4F; }
.badge--soon  { color: var(--ink-40); border-color: var(--ink-20); font-size: 10px; padding: 2px 7px; }

/* Prices (commented out in HTML — styles ready) */
.menu-item-price, .price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-60);
  font-weight: 400;
}

/* Sub-element helpers */
.what-text, .what-image, .story-text, .visit-info { min-width: 0; }
.hours-days { color: var(--ink-60); }
.instagram-cta { flex-shrink: 0; }

.menu-footer {
  margin-top: var(--sp-12);
}


/* ============================================================
   12. SMALL OR LARGE
   Bold typographic moment. Two tall halves. Food-driven choice.
   ============================================================ */

.section-sizes {
  background-color: var(--cream-alt);
  padding-block: 0;
}

.sizes-header {
  padding-top: var(--section-py);
  padding-bottom: var(--sp-8);
}

.sizes-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.sizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 55vh;
}

.size-card {
  padding: var(--sp-12) var(--sp-10);
  border-top: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  transition: background-color var(--t-slow);
  position: relative;
}

.size-card:first-child {
  border-right: 1px solid var(--border-strong);
}

.size-card:hover,
.size-card:focus-visible {
  background-color: var(--cream);
  outline: none;
}

.size-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--sp-6);
}

/* Size visual indicator (blue circle, different sizes) */
.size-visual {
  width: fit-content;
}

.size-evil-eye {
  display: block;
  object-fit: contain;
  transition: transform var(--t-base);
}

.size-visual--small .size-evil-eye { width: 28px; height: 28px; }
.size-visual--large .size-evil-eye { width: 56px; height: 56px; }

.size-card:hover .size-visual--small .size-evil-eye { transform: scale(1.15) rotate(10deg); }
.size-card:hover .size-visual--large .size-evil-eye { transform: scale(1.08) rotate(-8deg); }

.size-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-top: auto;
  padding-bottom: var(--sp-3);
}

.size-card--featured .size-name { color: var(--blue); }

.size-desc {
  font-size: var(--text-base);
  color: var(--ink-60);
  line-height: 1.5;
  padding-bottom: var(--section-py);
}


/* ============================================================
   13. OUR STORY
   Confident interlude. Heading carries the weight.
   Content is secondary — keeps the energy moving.
   ============================================================ */

.section-story {
  background-color: var(--white);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.story-heading {
  font-size: clamp(2.75rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-8);
  line-height: 1.0;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  color: var(--ink-80);
  max-width: 46ch;
  font-size: var(--text-base);
  margin-bottom: var(--sp-8);
}

.story-byline {
  border-top: 2px solid var(--blue);
  padding-top: var(--sp-5);
}

.founders-names {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-1);
}

.founders-role {
  font-size: var(--text-sm);
  color: var(--ink-60);
  letter-spacing: 0.04em;
}


/* ============================================================
   14. GALLERY
   One enormous image. Then a tight strip. Food-forward.
   ============================================================ */

.section-gallery {
  background-color: var(--cream);
  padding-bottom: 0;
}

.section-gallery > .container > .eyebrow {
  margin-bottom: var(--sp-8);
}

/* Asymmetric gallery layout */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

/* gallery-01: full width, wide aspect */
.gallery-item--lg {
  width: 100%;
}

.gallery-item--lg .img-ph--gallery-lg {
  height: auto;
  min-height: unset;
  aspect-ratio: 16 / 7;
  width: 100%;
}

/* gallery-02, 03, 04, 05: horizontal strip */
.gallery-strip {
  display: grid;
  grid-template-columns: 38% 1fr 1fr;
  gap: var(--sp-2);
}

/* gallery-05: solo, right-aligned, half width */
.gallery-item--solo {
  width: 50%;
  margin-left: auto;
}


/* ============================================================
   15. INSTAGRAM
   ============================================================ */

.section-instagram {
  background-color: var(--cream-alt);
}

.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
  flex-wrap: wrap;
}

.instagram-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-top: var(--sp-3);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.ig-item { overflow: hidden; }
.ig-item .img-ph--ig { transition: opacity var(--t-base); }
.ig-item:hover .img-ph--ig { opacity: 0.85; }


/* ============================================================
   16. VISIT
   ============================================================ */

.section-visit {
  background-color: var(--white);
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.visit-heading {
  font-size: clamp(2.75rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-10);
  line-height: 1.0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

.visit-block { display: flex; flex-direction: column; gap: var(--sp-3); }

.visit-block-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.visit-address {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.hours {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.hours-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.hours-days {
  font-size: var(--text-base);
  color: var(--ink-60);
}

.hours-time {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.visit-map {
  height: 100%;
  min-height: 500px;
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-6));
}


/* ============================================================
   17. RESERVE (dark)
   ============================================================ */

.section-reserve {
  background-color: var(--ink);
  padding-block: clamp(6rem, 14vw, 12rem);
}

.reserve-content { max-width: 800px; }

.reserve-heading {
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: var(--sp-8);
  line-height: 0.92;
}

.reserve-body {
  font-size: var(--text-lg);
  color: rgba(248, 245, 239, 0.55);
  max-width: 40ch;
  margin-bottom: var(--sp-10);
  line-height: 1.65;
}

.reserve-note {
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: rgba(248, 245, 239, 0.3);
}


/* ============================================================
   18. ORDER ONLINE — full blue section
   One bold blue moment on the page. Intentional brand color.
   ============================================================ */

.section-order {
  line-height: 0;
  overflow: hidden;
}

.delivery-banner {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   19. FOOTER
   ============================================================ */

/* ============================================================
   TEA BANNER
   ============================================================ */

.section-tea {
  line-height: 0;
  overflow: hidden;
}

.tea-banner-img {
  width: 100%;
  height: clamp(300px, 55vw, 700px);
  object-fit: cover;
  object-position: center;
  display: block;
}


/* ============================================================
   EMAIL SUBSCRIBE — Mizlala-style
   ============================================================ */

.section-subscribe {
  background-color: var(--ink);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.subscribe-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: end;
}

.subscribe-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--cream);
  margin-top: var(--sp-4);
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-bottom: 0.25rem;
}

.subscribe-field {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-5);
  border-bottom: 1px solid rgba(248, 245, 239, 0.3);
  padding-bottom: var(--sp-3);
  transition: border-color 0.2s ease;
}

.subscribe-field:focus-within {
  border-bottom-color: var(--cream);
}

.subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.01em;
  padding: 0;
}

.subscribe-input::placeholder {
  color: rgba(248, 245, 239, 0.35);
}

.subscribe-btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.subscribe-btn:hover { opacity: 0.65; }

.subscribe-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(248, 245, 239, 0.3);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .subscribe-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--ink);
  padding-block: var(--sp-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
  align-items: start;
}

.footer-wordmark { color: var(--cream); display: block; margin-bottom: var(--sp-4); }

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(248, 245, 239, 0.35);
  line-height: 1.65;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(248, 245, 239, 0.45);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--cream); }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-info address,
.footer-hours {
  font-size: var(--text-sm);
  color: rgba(248, 245, 239, 0.45);
  line-height: 1.7;
}

.footer-social { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(248, 245, 239, 0.45);
  transition: color var(--t-fast);
}
.footer-ig-link:hover { color: var(--cream); }

.footer-base {
  border-top: 1px solid rgba(248, 245, 239, 0.1);
  padding-top: var(--sp-6);
}

.footer-base p {
  font-size: var(--text-xs);
  color: rgba(248, 245, 239, 0.2);
  letter-spacing: 0.04em;
}

/* Reviews (disabled section — styles ready) */
.section-reviews { background-color: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-6); margin-top: var(--sp-12); }
.review-card { background: var(--cream); padding: var(--sp-8); border-top: 2px solid var(--blue); }
.review-card blockquote p { font-family: var(--font-display); font-size: var(--text-xl); font-style: italic; line-height: 1.5; margin-bottom: var(--sp-4); }
.review-card cite { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); font-style: normal; }


/* ============================================================
   20. MOBILE STICKY CTA
   Always accessible on mobile — never have to hunt for it.
   ============================================================ */

.sticky-cta {
  display: none; /* shown only at mobile breakpoint */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: var(--sp-3) var(--sp-4);
  background-color: rgba(248, 245, 239, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1rem;
}


/* ============================================================
   21. ANIMATIONS
   ============================================================ */

.reveal, .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view, .reveal-item.in-view {
  opacity: 1;
  transform: none;
}

.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.16s; }
.reveal-item:nth-child(4) { transition-delay: 0.24s; }
.reveal-item:nth-child(5) { transition-delay: 0.32s; }

@keyframes wordmark-rise {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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


/* ============================================================
   22. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text {
    padding-right: var(--sp-6);
  }

  .menu-cat {
    grid-template-columns: 140px 1fr;
    gap: var(--sp-6);
  }

  .menu-cat--hero {
    grid-template-columns: 140px 1fr;
  }

  .manti-cards {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ig-item--hide-sm { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .visit-map {
    position: static;
    min-height: 360px;
  }
}


/* ============================================================
   23. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --section-py: clamp(3.5rem, 12vw, 5.5rem);
  }

  /* Sticky CTA visible on mobile */
  .sticky-cta { display: block; }

  /* Add bottom padding to body to clear sticky CTA */
  body { padding-bottom: 76px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
    background-color: var(--cream);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-slow);
    z-index: 9;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link { font-size: var(--text-base); }
  .nav-cta { font-size: var(--text-base); padding: 0.8rem 2rem; }

  /* Hero — stacked, image first for impact */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-image-wrap {
    order: -1;
    height: 60vw;
    min-height: 280px;
    max-height: 420px;
  }

  .hero-image-wrap .img-ph--hero {
    position: static;
    height: 100%;
    aspect-ratio: unset;
    width: 100%;
  }

  .hero-text {
    padding: var(--sp-8) var(--container-pad);
    gap: var(--sp-6);
  }

  .hero-wordmark {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .hero-secondary-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
  }

  /* What is Mantı */
  .what-layout {
    gap: var(--sp-8);
  }

  .what-top {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .what-heading {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  /* Menu */
  .menu-cat {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .menu-cat-title { position: static; }

  .menu-cat--hero {
    grid-template-columns: 1fr;
    margin-inline: calc(var(--container-pad) * -1);
    padding-inline: var(--container-pad);
  }

  .manti-cards { grid-template-columns: 1fr; }

  .menu-title { font-size: clamp(3rem, 13vw, 5rem); }

  /* Sizes */
  .sizes-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .size-card:first-child { border-right: none; border-bottom: 1px solid var(--border-strong); }

  .size-name { font-size: clamp(4rem, 18vw, 7rem); }

  .size-desc { padding-bottom: var(--sp-12); }

  /* Story */
  .story-layout { grid-template-columns: 1fr; }
  .story-layout .story-founders { order: -1; }
  .story-heading { font-size: clamp(2.5rem, 11vw, 4rem); }

  /* Gallery */
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item--solo { width: 70%; }

  /* Instagram */
  .instagram-header { flex-direction: column; align-items: flex-start; gap: var(--sp-5); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  /* Visit */
  .visit-layout { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .visit-heading { font-size: clamp(2.5rem, 11vw, 4rem); }

  /* Reserve */
  .reserve-heading { font-size: clamp(3rem, 14vw, 5.5rem); }

  /* Order — delivery banner scales naturally, no overrides needed */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .footer-brand { grid-column: span 2; }
}


/* ============================================================
   24. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-item:nth-child(n+5) { display: none; }

  .hero-secondary-actions .btn { width: 100%; justify-content: center; }

  .sizes-grid { min-height: auto; }

  .gallery-item--solo { width: 85%; }

  .gallery-strip { grid-template-columns: 1fr 1fr; }
}
