/* ═══════════════════════════════════════════════════════════════
   HOROZASSOS — Premium Mobile-First Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── CAMPTON FONT FACE ─── */
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonThin.otf') format('opentype');
  font-weight: 100; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonThinItalic.otf') format('opentype');
  font-weight: 100; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonExtraLight.otf') format('opentype');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonExtraLightItalic.otf') format('opentype');
  font-weight: 200; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonLight.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonLightItalic.otf') format('opentype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonBook.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonBookItalic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonMedium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonMediumItalic.otf') format('opentype');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonSemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonSemiBoldItalic.otf') format('opentype');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonBold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonBoldItalic.otf') format('opentype');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonExtraBold.otf') format('opentype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonExtraBoldItalic.otf') format('opentype');
  font-weight: 800; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonBlack.otf') format('opentype');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Campton';
  src: url('font/CamptonBlackItalic.otf') format('opentype');
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ─── TOKENS ─── */
:root {
  --bg:           #FAFAFA;
  --cream:        #FFF8E4;
  --stone:        #E0D8D0;
  --stone-light:  #EDE7E0;
  --terra:        #f16868;
  --terra-dark:   #d44040;
  --terra-pale:   #fde8e8;
  --accent:       #fff086;
  --accent-dark:  #f0dc50;
  --accent-pale:  #fffbd6;
  --dark:         #1A1714;
  --dark-2:       #2B2520;
  --text:         #333333;
  --muted:        #666666;
  --white:        #FFFFFF;
  --wa-green:     #25D366;

  --ff-display:  'Campton', 'Outfit', system-ui, -apple-system, sans-serif;
  --ff-body:     'Campton', 'Outfit', system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:       64px;
  --container:   1200px;
  --gap:         clamp(1rem, 4vw, 2rem);

  --shadow-sm:   0 2px 8px rgba(26,23,20,0.07);
  --shadow-md:   0 6px 24px rgba(26,23,20,0.12);
  --shadow-lg:   0 16px 56px rgba(26,23,20,0.18);
  --shadow-xl:   0 32px 80px rgba(26,23,20,0.22);
}

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

/* ─── LOWERCASE EVERYWHERE ─── */
h1, h2, h3, h4, h5, h6,
p, blockquote, li, a,
.label,
.nav-link,
.btn,
.hero-eyebrow,
.hero-headline,
.hero-subline,
.menu-tag,
.feat-card h3,
.review-body,
.review-author strong,
.review-author span,
.footer-nav a,
.footer-nav h4,
.footer-contact h4,
.footer-logo,
.section-intro,
.nav-cta,
.link-arrow,
.story-quote,
.hours-row span,
.contact-item strong,
.contact-item p {
  text-transform: lowercase;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
iframe { border: none; display: block; }

/* ─── TYPOGRAPHY ─── */
.heading-display {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--dark);
}
.heading-display em { font-style: italic; font-weight: 300; color: var(--terra); }
.heading-light { color: var(--white); }
.heading-light em { color: var(--accent); }

.label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 1rem;
  display: block;
}
.label-light { color: var(--accent); }

.body-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
}
.body-text + .body-text { margin-top: 1em; }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 1rem auto 0;
  text-align: center;
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section-cream { background: var(--cream); }
.section-dark  { background: var(--dark); }

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head .label { justify-content: center; }

/* ─── SCROLL ANIMATIONS ─── */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-right { transition: none; opacity: 1; transform: none; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: 16px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease-in-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(241,104,104,0.35);
}
.btn-primary:hover {
  background: var(--terra-dark);
  box-shadow: 0 4px 20px rgba(241,104,104,0.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: var(--white);
}
.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1dab57;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transform: translateY(-1px);
}
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--terra);
  margin-top: 2rem;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.85rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s var(--ease-in-out),
              box-shadow 0.4s var(--ease-in-out);
}
#nav.scrolled {
  background: #f16868;
  box-shadow: 0 2px 16px rgba(241,104,104,0.3);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.4s var(--ease-in-out);
}

/* Default: white visible, color hidden */
.nav-logo-white { opacity: 1; position: relative; }
.nav-logo-color  { opacity: 0; position: absolute; top: 50%; left: 0; transform: translateY(-50%); }

/* Scrolled: color visible, white hidden */
#nav.scrolled .nav-logo-white { opacity: 0; }
#nav.scrolled .nav-logo-color  { opacity: 1; }

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--terra);
  transition: right 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { right: 0; }
#nav.scrolled .nav-link { color: rgba(255,255,255,0.85); }
#nav.scrolled .nav-link:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-in-out);
}
#nav.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile nav drawer ─── */
@media (max-width: 767px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #f16868;
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--stone-light);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    color: rgba(255,255,255,0.9);
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1rem;
  }
  .nav-link:hover { color: var(--white); }
  .nav-link::after { display: none; }
  .nav-cta {
    margin-top: 1.25rem;
    color: var(--terra);
    border-color: var(--terra);
    justify-content: center;
  }
  .nav-cta:hover { background: var(--terra); color: var(--white); }
}
@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .nav-burger { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s var(--ease-in-out);
}
#hero.loaded .hero-media img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26,23,20,0.22) 0%,
    rgba(26,23,20,0.15) 40%,
    rgba(26,23,20,0.65) 80%,
    rgba(26,23,20,0.82) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-headline em { font-style: italic; font-weight: 300; color: var(--accent); }
.hero-subline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 48ch;
}
.br-desk { display: none; }
@media (min-width: 768px) { .br-desk { display: block; } }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   STORY
   ═══════════════════════════════════════════════════════════════ */
.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
}
@media (min-width: 900px) {
  .story-layout { grid-template-columns: 1fr 1fr; }
}

.story-visuals {
  position: relative;
}
.story-img-primary {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.story-img-primary img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.story-img-primary:hover img { transform: scale(1.03); }

.story-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 45%;
  border-radius: 3px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.story-img-secondary img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.6s var(--ease-out);
}
.story-img-secondary:hover img { transform: scale(1.04); }

.story-badge {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  background: var(--terra);
  color: var(--white);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(241,104,104,0.4);
  line-height: 1.1;
}
.badge-num { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; }
.badge-sub { font-size: 0.52rem; letter-spacing: 0.04em; opacity: 0.85; }

.story-text {
  display: grid;
  gap: 2rem;
}
.story-text .label { margin-bottom: 0.5rem; }
.story-text .heading-display { margin-bottom: 1.5rem; }
.story-quote {
  border-left: 3px solid var(--terra);
  padding-left: 1.25rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   MENU / BREAKFAST
   ═══════════════════════════════════════════════════════════════ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
}
@media (min-width: 560px)  { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  position: relative;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(8px);
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.menu-card-body {
  padding: 1.5rem;
}
.menu-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row dense;
  }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; }
}

.g-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-2);
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.55s var(--ease-out), opacity 0.3s;
}
@media (min-width: 768px) {
  .g-tall img { aspect-ratio: unset; }
  .g-wide img { aspect-ratio: 16/9; }
}
.g-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover .g-hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 560px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feat-card {
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: 16px;
  opacity: 0.5;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease-out), opacity 0.3s;
}
.feat-card:hover { opacity: 1; }
.feat-card:hover {
  border-color: var(--terra-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feat-icon {
  margin-bottom: 1.25rem;
  line-height: 1;
}
.feat-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
.feat-card h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.feat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════ */
.reviews-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
  margin: 0 calc(-1 * clamp(1.25rem, 5vw, 3rem));
  padding: 0 clamp(1.25rem, 5vw, 3rem) 1rem;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
@media (min-width: 1000px) {
  .reviews-scroll { overflow: visible; margin: 0; padding-bottom: 0; }
  .reviews-track { display: grid; grid-template-columns: repeat(3, 1fr); width: auto; }
}

.review-card {
  background: var(--white);
  border-radius: 3px;
  padding: 2rem;
  width: min(340px, 80vw);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone-light);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
@media (min-width: 1000px) {
  .review-card { width: auto; }
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.review-body {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--stone-light);
  padding-top: 1.25rem;
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra-pale);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.review-author span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.location-map {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--stone-light);
}
.location-map iframe {
  width: 100%; height: 100%;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terra-pale);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.4rem;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
.contact-item a {
  color: var(--terra);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--terra-dark); }

.hours { display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hours-row:first-child { color: var(--text); font-weight: 500; }

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL / INSTAGRAM
   ═══════════════════════════════════════════════════════════════ */
.social-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 600px) { .social-grid { grid-template-columns: repeat(6, 1fr); } }

.social-tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  display: block;
}
.social-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.social-tile-over {
  position: absolute;
  inset: 0;
  background: rgba(241,104,104,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.social-tile:hover img { transform: scale(1.08); }
.social-tile:hover .social-tile-over { opacity: 1; }
.social-follow {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; }
}

.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s;
}
.footer-socials a:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: rgba(241,104,104,0.1);
}

.footer-nav h4, .footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.footer-contact a { color: var(--terra); transition: color 0.2s; }
.footer-contact a:hover { color: #D4845F; }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.94);
  cursor: zoom-out;
}
.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.lightbox.active .lb-img-wrap img { opacity: 1; transform: scale(1); }

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  z-index: 2;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close { top: 1.25rem; right: 1.25rem; font-size: 1.75rem; line-height: 1; }
.lb-prev   { left: 1rem; font-size: 2.5rem; top: 50%; transform: translateY(-50%); }
.lb-next   { right: 1rem; font-size: 2.5rem; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  animation: fabPop 0.5s var(--ease-out) 1.5s both;
}
.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
@keyframes fabPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES / LOADING STATES
   ═══════════════════════════════════════════════════════════════ */
body.nav-open { overflow: hidden; }

img[loading="lazy"] {
  background: var(--stone-light);
}

@media (prefers-color-scheme: dark) {
  /* keep intentionally light — this is a warm Mediterranean brand */
}

/* ─── Background decorative dots ─── */
.bg-dot {
  position: absolute;
  opacity: 1;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  min-width: 60px;
}

/* ─── Scrollbar (desktop Chrome) ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════════
   PREMIUM SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

/* ─── Scroll progress bar ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--terra) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 9999;
  will-change: transform;
  pointer-events: none;
}

/* ─── Hero entrance: hidden until .hero-animate is added ─── */
.hero-eyebrow,
.hero-headline,
.hero-subline,
.hero-ctas {
  opacity: 0;
  transform: translateY(28px);
}

.hero-animate .hero-eyebrow {
  animation: anim-fade-up 1s var(--ease-out) 0.15s forwards;
}
.hero-animate .hero-headline {
  animation: anim-fade-up 1.1s var(--ease-out) 0.38s forwards;
}
.hero-animate .hero-subline {
  animation: anim-fade-up 1s var(--ease-out) 0.7s forwards;
}
.hero-animate .hero-ctas {
  animation: anim-fade-up 0.9s var(--ease-out) 0.92s forwards;
}

/* ─── Base keyframes ─── */
@keyframes anim-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes anim-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes anim-scale-in {
  0%   { opacity: 0; transform: scale(0) rotate(-18deg); }
  65%  { transform: scale(1.16) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes anim-wipe-right {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0%   0 0); }
}
@keyframes anim-line-up {
  from { transform: translateY(105%); }
  to   { transform: translateY(0); }
}

/* ─── Section header children: start hidden (JS drives reveal) ─── */
.section-head > .label,
.section-head > .heading-display,
.section-head > .section-intro,
.social-head > .label,
.social-head > .heading-display,
.social-head > .section-intro {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

/* ─── Story visuals: reveal via clip-path, not opacity ─── */
.story-visuals.reveal {
  opacity: 1 !important;
  transform: none !important;
}
.story-img-primary,
.story-img-secondary {
  will-change: clip-path;
}

/* ─── Gallery: scale + fade ─── */
.g-item.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}
.g-item.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── Feature cards: subtle scale ─── */
.feat-card.reveal {
  transform: translateY(32px) scale(0.97);
}
.feat-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ─── Menu cards: lift from below with slight scale ─── */
.menu-card.reveal {
  transform: translateY(28px) scale(0.97);
}
.menu-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ─── Review cards ─── */
.review-card.reveal {
  transform: translateY(24px) scale(0.98);
}
.review-card.reveal.visible {
  transform: translateY(0) scale(1);
}

/* ─── Social tiles: scale from center ─── */
.social-tile.reveal {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.social-tile.reveal.visible {
  opacity: 1;
  transform: scale(1);
}

/* ─── Story badge: JS drives this with inline styles ─── */
.story-badge {
  will-change: transform, opacity;
}

/* ─── Story text stagger: children get JS-set transition-delay ─── */
.story-text > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.story-text > *.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Location grid ─── */
.location-map.reveal {
  transform: translateX(-32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.location-map.reveal.visible {
  transform: translateX(0);
}
.location-details.reveal-right {
  transform: translateX(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.location-details.reveal-right.visible {
  transform: translateX(0);
}

/* ─── Respect prefers-reduced-motion ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-headline, .hero-subline, .hero-ctas,
  .section-head > *, .social-head > *,
  .story-text > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  #scroll-progress { display: none; }
}
