/* DESIGN SYSTEM */
:root {
  --bg: #FFFFFF;
  --surface: #F9F9F9;
  --primary: #D62828;
  /* Stronger Red for contrast */
  --text: #121212;
  --text-muted: #454545;
  --border: rgba(0, 0, 0, 0.1);
  --glass: rgba(255, 255, 255, 0.85);
  --blur: 15px;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--primary);
  color: white;
}

/* CUSTOM CURSOR */
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease, background 0.3s ease;
  transform: translate(-50%, -50%);
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
  }
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  padding: 1rem clamp(1.25rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}

nav.scrolled .nav-brand {
  color: var(--text);
}

nav.scrolled .nav-brand small {
  color: rgba(0, 0, 0, 0.8);
}

nav.scrolled .nav-links a {
  color: var(--text-muted);
}

nav.scrolled .nav-cta {
  color: var(--text);
  border-color: var(--primary);
}

nav.scrolled .hamburger span {
  background: var(--text);
}

.brand-logo {
  height: 45px;
  width: auto;
  margin-right: 12px;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: white;
  position: relative;
}

.nav-brand span {
  color: var(--primary);
}

.nav-brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  /* Changed to white-ish */
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid white;
  /* Changed to white */
  padding: 0.6rem 1.5rem;
  color: white;
  /* Changed to white */
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.nav-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: white;
  /* Changed to white */
  transition: var(--transition);
}

/* MOBILE MENU */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mob-menu.open {
  opacity: 1;
  visibility: visible;
}

.mob-menu a {
  font-family: var(--font-serif);
  font-size: 3rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.mob-menu a:hover {
  color: var(--primary);
  transform: skewX(-10deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem clamp(1.25rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 10;
  color: white;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ff4d4d;
  margin-bottom: 2rem;
  display: block;
  animation: fadeInDown 1s ease forwards;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 10vw, 8.5rem);
  line-height: 1;
  font-weight: 900;
  color: white;
  margin-bottom: 2.5rem;
  animation: fadeInLeft 1.2s ease 0.2s forwards;
  opacity: 0;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 3rem;
  animation: fadeIn 1.5s ease 0.5s forwards;
  opacity: 0;
}

.hero .btn-outline {
  border-color: white;
  color: white;
}

.hero .btn-outline:hover {
  background: white;
  color: var(--text);
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.4;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* SECTION REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* STORY SECTION */
.s-story {
  padding: 8rem 0;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-alt, #f8f4ef);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: grayscale(0.2) contrast(1.1);
  border-radius: 2px;
}

.story-img-dec {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
  z-index: -1;
}

.s-label {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 2rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.p-large {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* SIGNATURE DISHES */
.s-dishes {
  padding: 8rem 0;
  background: var(--surface);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

/* Overlay cards — matches menu.html */
.s-dishes .menu-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.s-dishes .menu-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.s-dishes .card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.s-dishes .menu-card:hover .card-bg-img {
  transform: scale(1.08);
}

.s-dishes .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  transition: var(--transition);
}

.s-dishes .menu-card:hover .card-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(0, 0, 0, 0.8) 100%);
}

.s-dishes .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  color: white;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.s-dishes .card-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.s-dishes .card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  letter-spacing: 0.5px;
}

.s-dishes .card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
  font-weight: 300;
}

.s-dishes .card-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.5px;
  margin: 0;
}

/* MENU SECTION */
.s-menu {
  padding: 8rem 0;
  overflow: hidden;
}

.menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.menu-cat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem 4rem;
}

.menu-cat>.cat-title,
.menu-cat>p {
  grid-column: 1 / -1;
}

.cat-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--text);
}

.cat-title span {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateX(8px);
  border-bottom-color: var(--primary);
}

.item-main {
  flex: 1;
  padding-right: 2rem;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.item-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
  display: block;
}

.item-price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  margin-top: 0.2rem;
}

/* TICKER */
.ticker {
  background: var(--primary);
  color: white;
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ticker-track {
  display: flex;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* LOCATION & CONTACT */
.s-contact {
  padding: 8rem 0;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.map-container {
  width: 100%;
  aspect-ratio: 16/9;
  filter: grayscale(0.5) brightness(1);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
}

.input-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  pointer-events: none;
  transition: var(--transition);
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
  top: -1rem;
  font-size: 0.6rem;
  color: var(--primary);
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--primary);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background: #121212;
  color: white;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: white;
}

/* FOOTER */
footer {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.foot-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  list-style: none;
}

.foot-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.foot-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* CTA BANNER */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 4px;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.cta-phone {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  display: block;
  transition: var(--transition);
  line-height: 1;
}

.cta-phone:hover {
  color: var(--primary);
  transform: scale(1.02);
}

.cta-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

/* ADMIN NOTICE */
@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.4;
  }
}

@keyframes notice-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.3);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(214, 40, 40, 0);
  }
}

.admin-notice {
  background: linear-gradient(135deg, #1a0505 0%, #2d0808 50%, #1a0505 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.admin-notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.015) 0px,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 12px);
  pointer-events: none;
}

.admin-notice-top {
  background: var(--primary);
  padding: 0.5rem clamp(1.25rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.admin-notice-top span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: white;
}

.admin-notice-body {
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.admin-notice-icon {
  font-size: 4rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.admin-notice-content {
  flex: 1;
}

.admin-notice-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.admin-msg {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  flex: 1;
}

.admin-msg strong {
  color: #ffb3b3;
  font-weight: 700;
}

.admin-msg a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-notice-cta {
  display: inline-block;
  margin-top: 1.25rem;
  background: white;
  color: #1a0505;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  transition: var(--transition);
  animation: notice-glow 2.5s ease-in-out infinite;
}

.admin-notice-cta:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .admin-notice-body {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .admin-notice-icon {
    font-size: 2.5rem;
  }
}

/* CONTACT CARDS */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.contact-card {
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-width: 0;
  /* Prevents overflow in flex/grid */
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.contact-card:hover::after {
  transform: scaleX(1);
}

.cc-icon {
  width: 54px;
  height: 54px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.contact-card:hover .cc-icon {
  background: var(--primary);
  color: white;
  transform: rotate(-10deg);
}

.cc-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.cc-val {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.cc-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Highlight Order Card */
.contact-card.highlight {
  background: var(--surface);
  border-color: var(--primary);
}

.contact-card.highlight .cc-icon {
  background: var(--primary);
  color: white;
}

/* BLOG / MEDIA */
.s-blog {
  padding: 8rem 0;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

.yt-embed-wrap {
  position: relative;
  background: #111;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.yt-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f9f9f9;
  border: 1px solid var(--border);
}

.yt-play-btn {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-play-btn::after {
  content: '▶';
  color: white;
  font-size: 1.4rem;
  margin-left: 4px;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.news-item:first-child {
  border-top: 1px solid var(--border);
}

.news-item:hover {
  padding-left: 0.75rem;
  border-left: 2px solid var(--primary);
}

.news-date {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: block;
}

.news-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.news-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.learn-strip {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, #a81f1f 100%);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.learn-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: white;
  margin-bottom: 0.5rem;
}

.learn-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.learn-phrase {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
}

.learn-kanji {
  font-size: 3rem;
  color: white;
  display: block;
  line-height: 1;
}

.learn-romaji {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}

/* LOGO STYLING */
.brand-logo {
  height: 45px;
  width: auto;
  margin-right: 12px;
}

.hero-logo {
  height: 60px;
  width: auto;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInDown 1s ease forwards 0.5s;
}

.foot-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .s-dishes .menu-card {
    height: 380px;
  }

  .s-dishes .card-title {
    font-size: 1.6rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .dish-grid {
    grid-template-columns: 1fr;
  }

  .s-dishes .menu-card {
    height: 340px;
  }

  .s-dishes .card-content {
    padding: 2rem 1.5rem;
  }

  .s-dishes .card-title {
    font-size: 1.4rem;
  }

  .s-dishes .card-price {
    font-size: 1.3rem;
  }

  h1 {
    font-size: clamp(2.5rem, 15vw, 4.5rem);
    line-height: 1.1;
  }

  .hero {
    padding-top: 7rem;
  }

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

  .admin-notice-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .menu-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .foot-links {
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
  }
}