/* =============================================
   Kaur's Kitchen — Shared Stylesheet
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --purple:        #7353A3;
  --purple-dark:   #5C4285;
  --purple-light:  #EFE9F8;
  --purple-mid:    #8F6BBF;
  --white:         #FFFFFF;
  --black:         #161616;
  --gray-50:       #FAFAFA;
  --gray-100:      #F4F4F4;
  --gray-200:      #E8E8E8;
  --gray-400:      #A0A0A0;
  --gray-500:      #888888;
  --gray-600:      #666666;
  --gray-700:      #444444;

  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-xs:  6px;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --radius-xl:  48px;

  --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.16);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.20);

  --nav-height: 112px;
  --max-width:  1180px;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* --- Accessibility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
}

.section--sm {
  padding: 64px 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

.display {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
}

.headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--black);
}

.headline--lg {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--gray-600);
}

.body-md {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn--primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(115, 83, 163, 0.35);
}

.btn--secondary {
  background: var(--white);
  color: var(--purple);
  border-color: var(--purple);
}

.btn--secondary:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}

.btn--ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 1rem;
  padding: 17px 36px;
}

/* =============================================
   STATUS BADGE
   ============================================= */

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.status-badge--light {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.status-badge--card {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge.is-open .status-dot {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse-green 2s ease-in-out infinite;
}

.status-badge.is-closed .status-dot,
.status-badge.is-closed-today .status-dot {
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50%       { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1); }
}

.status-hours {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.nav.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 96px;
  width: auto;
  display: block;
}

/* Footer logo — sits on a white pill so the white-background image
   reads cleanly against the dark footer */
.footer__logo-wrap {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--gray-700);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--black);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav__mobile-menu.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav__mobile-link {
  font-size: 1.1rem;
  font-weight: 450;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  transition: color var(--transition);
}

.nav__mobile-link:hover {
  color: var(--purple);
}

.nav__mobile-cta {
  margin-top: 16px;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}

.hero.is-loaded .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 22, 22, 0.72) 0%,
    rgba(22, 22, 22, 0.45) 55%,
    rgba(115, 83, 163, 0.18) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.hero__inner {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =============================================
   TRUST BAR / FEATURES STRIP
   ============================================= */

.trust-bar {
  padding: 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid var(--gray-200);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-item__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}

/* =============================================
   FEATURED DISHES
   ============================================= */

.dishes {
  background: var(--white);
}

.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.section-header .headline {
  margin-bottom: 20px;
}

.section-header .body-lg {
  max-width: 540px;
  margin: 0 auto;
}

.dishes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dish-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}

.dish-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.dish-card:hover .dish-card__image img {
  transform: scale(1.06);
}

.dish-card__body {
  padding: 20px 22px 24px;
}

.dish-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.dish-card__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.dish-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */

.philosophy {
  background: var(--gray-50);
  overflow: hidden;
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy__image {
  position: relative;
  overflow: hidden;
}

.philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.philosophy__content {
  background: var(--black);
  color: var(--white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy__content .eyebrow {
  color: var(--purple-mid);
  margin-bottom: 20px;
}

.philosophy__content .headline {
  color: var(--white);
  margin-bottom: 28px;
}

.philosophy__content .body-lg {
  color: rgba(255,255,255,0.68);
  margin-bottom: 0;
  max-width: 420px;
}

.philosophy__accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--purple);
  border-radius: 2px;
  margin-top: 32px;
}

/* =============================================
   CHEF SECTION
   ============================================= */

.chef {
  background: var(--white);
}

.chef__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chef__image-wrap {
  position: relative;
}

.chef__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.chef__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.chef__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
}

.chef__badge-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}

.chef__badge-sub {
  font-size: 0.8rem;
  opacity: 0.8;
}

.chef__content .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.chef__content .headline {
  margin-bottom: 28px;
}

.chef__content .body-lg {
  margin-bottom: 36px;
}

.chef__quote {
  border-left: 3px solid var(--purple);
  padding-left: 24px;
  margin-top: 32px;
}

.chef__quote p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--gray-700);
}

/* =============================================
   ORDER CTA SECTION
   ============================================= */

.order-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.order-cta__bg-accent {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(115, 83, 163, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.order-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.order-cta__eyebrow {
  display: block;
  color: var(--purple-mid);
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.order-cta .headline {
  color: var(--white);
  margin-bottom: 20px;
}

.order-cta .body-lg {
  color: rgba(255,255,255,0.62);
  margin-bottom: 40px;
}

/* =============================================
   HOURS SECTION (Homepage)
   ============================================= */

.hours-bar {
  background: var(--purple-light);
  padding: 48px 0;
}

.hours-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hours-bar__left .subheadline {
  color: var(--black);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hours-bar__table {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.9;
}

.hours-bar__table .closed-note {
  color: var(--purple);
  font-weight: 500;
}

.hours-bar__status {
  flex-shrink: 0;
}

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

.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 72px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand .nav__logo {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__address {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer__address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__address a:hover {
  color: var(--white);
}

.footer__hours-list {
  font-size: 0.875rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

.footer__hours-closed {
  color: rgba(115, 83, 163, 0.85);
  font-size: 0.8rem;
  margin-top: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer__powered {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer__powered a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__powered a:hover {
  color: var(--white);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.6);
}

/* =============================================
   CONTACT PAGE SPECIFIC
   ============================================= */

.contact-hero {
  background: var(--black);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
}

.contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22,22,22,0.6) 0%,
    rgba(22,22,22,0.85) 100%
  );
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-hero__content .eyebrow {
  color: var(--purple-mid);
  margin-bottom: 20px;
}

.contact-hero__content .headline {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-hero__content .body-lg {
  color: rgba(255,255,255,0.68);
}

/* Contact cards */
.contact-cards {
  background: var(--gray-50);
  padding: 80px 0;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  background: var(--purple-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-card__content {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.contact-card__content a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.contact-card__content a:hover {
  color: var(--purple-dark);
  text-decoration: underline;
}

.contact-card__content .closed-note {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 500;
}

/* Dynamic status on contact page */
.contact-status {
  background: var(--white);
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-status__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  flex-wrap: wrap;
}

.contact-status__text .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.contact-status__label {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.contact-status__label.is-open  { color: #22C55E; }
.contact-status__label.is-closed { color: #EF4444; }
.contact-status__label.is-closed-today { color: #EF4444; }

.contact-status__meta {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact-status__badge-wrap {
  flex-shrink: 0;
}

/* Map */
.contact-map {
  padding: 0;
  background: var(--gray-100);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
  filter: grayscale(20%);
}

/* =============================================
   SCROLL ANIMATION
   ============================================= */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================= */

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

  .philosophy__content {
    padding: 48px 44px;
  }

  .chef__inner {
    gap: 56px;
  }

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

/* =============================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================= */

@media (max-width: 768px) {
  :root {
    --nav-height: 90px;
  }

  .section {
    padding: 72px 0;
  }

  /* Nav */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__actions {
    gap: 10px;
  }

  .hero__actions .btn--lg {
    padding: 15px 28px;
    font-size: 0.9375rem;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 0;
  }

  .trust-item {
    padding: 10px 16px;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    width: 100%;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  /* Dishes */
  .dishes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .dish-card__image {
    height: 180px;
  }

  /* Philosophy */
  .philosophy__inner {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .philosophy__image {
    height: 280px;
  }

  .philosophy__content {
    padding: 44px 32px;
  }

  .philosophy__content .body-lg {
    max-width: 100%;
  }

  /* Chef */
  .chef__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chef__badge {
    right: 16px;
    bottom: -16px;
  }

  .chef__image {
    aspect-ratio: 4 / 3;
  }

  /* Hours bar */
  .hours-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Contact */
  .contact-cards__grid {
    grid-template-columns: 1fr;
  }

  .contact-status__inner {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ============================================= */

@media (max-width: 480px) {
  .dishes__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2.6rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map iframe {
    height: 320px;
  }
}
