/* ===================================================
   KRUA SA ROS JAD — Design System
   Rustic & Traditional: Cream, Off-White, Deep Burgundy,
   Olive Green, Warm Brown — 60-30-10 Rule
   =================================================== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* 60 % — Base / neutral */
  --clr-base: #FAF7F2;
  --clr-base-alt: #F0EBE3;
  --clr-white: #FFFFFF;

  /* 30 % — Secondary */
  --clr-secondary: #3C3526;      /* warm charcoal brown */
  --clr-secondary-light: #5A5344;
  --clr-olive: #6B7B3A;
  --clr-olive-light: #8FA94E;

  /* 10 % — Accent */
  --clr-accent: #7A1B2D;         /* deep burgundy */
  --clr-accent-light: #9E2B42;
  --clr-gold: #C9A96E;
  --clr-gold-light: #D4BC8E;

  /* Neutrals */
  --clr-text: #2D2A24;
  --clr-text-light: #6B6560;
  --clr-border: #E0D9CE;
  --clr-border-dark: #C7BFAE;

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', 'Noto Sans Thai', system-ui, -apple-system, sans-serif;
  --ff-thai: 'Noto Sans Thai', 'Inter', system-ui, sans-serif;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 900px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(45, 42, 36, .08);
  --shadow-md: 0 4px 12px rgba(45, 42, 36, .1);
  --shadow-lg: 0 8px 32px rgba(45, 42, 36, .12);
  --shadow-xl: 0 16px 48px rgba(45, 42, 36, .15);

  /* Transitions */
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --duration: .35s;
}

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

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

body {
  font-family: var(--ff-body);
  background: var(--clr-base);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- Utility ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-display); font-weight: 600; line-height: 1.25; color: var(--clr-secondary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--clr-accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease-out);
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(122, 27, 45, .3);
}
.btn--primary:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(122, 27, 45, .4);
}

.btn--outline {
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-secondary);
}
.btn--gold:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--duration) var(--ease-out);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 242, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--duration) var(--ease-out);
}

.nav.scrolled::before {
  background: rgba(250, 247, 242, .95);
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.nav__name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-secondary);
}

.nav__name small {
  display: block;
  font-family: var(--ff-thai);
  font-size: .7rem;
  font-weight: 400;
  color: var(--clr-text-light);
  letter-spacing: 1px;
}

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

.nav__link {
  position: relative;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--clr-text-light);
  transition: color var(--duration) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--duration) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-accent);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--clr-text-light);
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

.nav__lang:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.nav__lang svg {
  width: 16px;
  height: 16px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-secondary);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: var(--clr-base);
    box-shadow: var(--shadow-xl);
    transition: right .4s var(--ease-out);
    z-index: 999;
  }

  .nav__links.open { right: 0; }
  .nav__hamburger { display: flex; }

  .nav__link { font-size: 1.1rem; }
}

/* ===================================================
   HERO — Chic Split Layout
   =================================================== */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-base);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px;
}

.hero__content {
  animation: fadeSlideUp .8s var(--ease-out) both;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(122, 27, 45, .08);
  border: 1px solid rgba(122, 27, 45, .15);
  border-radius: 24px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--clr-secondary);
  margin-bottom: 8px;
}

.hero__title-thai {
  display: block;
  font-family: var(--ff-thai);
  font-size: .4em;
  font-weight: 400;
  color: var(--clr-text-light);
  margin-top: 4px;
  letter-spacing: 2px;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clr-accent);
  margin-bottom: 20px;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__meta-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-base-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-olive);
}

.hero__meta-icon svg { width: 18px; height: 18px; }

.hero__meta-label {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-text-light);
}

.hero__meta-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-secondary);
}

/* Hero Image */
.hero__visual {
  position: relative;
  animation: fadeSlideUp .8s var(--ease-out) .2s both;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 27, 45, .1), transparent 50%);
  z-index: 1;
}

.hero__image-wrapper img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}

.hero__image-wrapper:hover img {
  transform: scale(1.05);
}

.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatBounce 3s ease-in-out infinite;
}

.hero__float-card-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-gold);
}

.hero__float-card-stars svg { width: 14px; height: 14px; }

.hero__float-card-text {
  font-size: .85rem;
  font-weight: 600;
  color: var(--clr-secondary);
}

.hero__float-card-sub {
  font-size: .7rem;
  color: var(--clr-text-light);
  font-weight: 400;
}

/* Decorative Elements */
.hero__decor {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: .3;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__description { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero__float-card { left: 50%; transform: translateX(-50%); bottom: -15px; }
  .hero__image-wrapper img { height: 400px; }
}

/* ===================================================
   FEATURED DISHES — Horizontal Scroll
   =================================================== */
.featured {
  padding: 100px 0;
  background: var(--clr-white);
}

.featured__header {
  text-align: center;
  margin-bottom: 50px;
}

.featured__header .section-subtitle { margin: 0 auto; }

.featured__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.dish-card {
  background: var(--clr-base);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

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

.dish-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.dish-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.dish-card__body {
  padding: 20px;
}

.dish-card__name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-secondary);
  margin-bottom: 4px;
}

.dish-card__name-th {
  font-family: var(--ff-thai);
  font-size: .8rem;
  color: var(--clr-text-light);
  margin-bottom: 8px;
}

.dish-card__desc {
  font-size: .85rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.dish-card__price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-top: 12px;
}

/* ===================================================
   ABOUT STRIP
   =================================================== */
.about-strip {
  padding: 100px 0;
  background: var(--clr-base);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-strip__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-strip__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-strip__content .section-label { margin-bottom: 12px; }

.about-strip__content h2 { margin-bottom: 20px; }

.about-strip__text {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-strip__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(122, 27, 45, .06);
  border-left: 3px solid var(--clr-accent);
  border-radius: var(--radius);
  margin: 24px 0;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--clr-secondary);
}

@media (max-width: 768px) {
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__image img { height: 300px; }
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews {
  padding: 100px 0;
  background: var(--clr-secondary);
  color: var(--clr-base);
}

.reviews__header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews__header .section-label { color: var(--clr-gold); }
.reviews__header .section-label::before { background: var(--clr-gold); }
.reviews__header h2 { color: var(--clr-base); }
.reviews__header .section-subtitle { color: rgba(250, 247, 242, .6); margin: 0 auto; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--duration) var(--ease-out);
}

.review-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.review-card__stars svg { width: 16px; height: 16px; }

.review-card__text {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, .85);
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-weight: 600;
  font-size: .85rem;
}

.review-card__name {
  font-weight: 600;
  color: var(--clr-base);
  font-size: .9rem;
}

.review-card__source {
  font-size: .75rem;
  color: rgba(250, 247, 242, .5);
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--clr-accent), #5a1320);
  text-align: center;
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--clr-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin: 0 auto 30px;
}

.cta-banner .btn--gold {
  font-size: 1rem;
  padding: 16px 40px;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--clr-secondary);
  color: rgba(250, 247, 242, .7);
  padding: 60px 0 30px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand .nav__name { color: var(--clr-base); margin-bottom: 12px; font-size: 1.5rem; }
.footer__brand .nav__name small { color: rgba(250, 247, 242, .5); }

.footer__brand-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(250, 247, 242, .6);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 242, .7);
  transition: all var(--duration) var(--ease-out);
}

.footer__social-link:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

.footer__social-link svg { width: 18px; height: 18px; }

.footer__heading {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-base);
  margin-bottom: 20px;
}

.footer__links li + li { margin-top: 10px; }

.footer__links a {
  font-size: .9rem;
  color: rgba(250, 247, 242, .6);
  transition: color var(--duration) var(--ease-out);
}

.footer__links a:hover { color: var(--clr-gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--clr-gold);
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(250, 247, 242, .4);
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__brand-desc { margin: 0 auto 20px; }
  .footer__socials { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* ===================================================
   MENU PAGE
   =================================================== */
.page-header {
  padding: 140px 0 60px;
  background: var(--clr-base-alt);
  text-align: center;
}

.page-header .section-label { justify-content: center; }

.menu-section {
  padding: 60px 0;
}

.menu-section:nth-child(even) { background: var(--clr-white); }

.menu-section__title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--clr-border);
}

.menu-section__title-icon {
  width: 44px;
  height: 44px;
  background: rgba(122, 27, 45, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease-out);
}

.menu-item:hover { background: var(--clr-base-alt); }

.menu-item__image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item__info { flex: 1; }

.menu-item__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-secondary);
}

.menu-item__name-th {
  font-family: var(--ff-thai);
  font-size: .8rem;
  color: var(--clr-text-light);
}

.menu-item__desc {
  font-size: .8rem;
  color: var(--clr-text-light);
  line-height: 1.5;
  margin-top: 4px;
}

.menu-item__price {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--clr-accent);
  font-size: 1rem;
  white-space: nowrap;
}

/* ===================================================
   ABOUT / LOCATION PAGE
   =================================================== */
.about-hero {
  padding: 140px 0 60px;
  background: var(--clr-base-alt);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-hero__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-hero__inner { grid-template-columns: 1fr; }
}

.info-cards {
  padding: 80px 0;
}

.info-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--duration) var(--ease-out);
}

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

.info-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(122, 27, 45, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--clr-accent);
}

.info-card__icon svg { width: 24px; height: 24px; }

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-card p {
  font-size: .9rem;
  color: var(--clr-text-light);
  line-height: 1.6;
}

.info-card a {
  color: var(--clr-accent);
  font-weight: 500;
}

.map-section {
  padding: 0 0 80px;
}

.map-section__wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}

.map-section__wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all .7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all .7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-gold));
  z-index: 10000;
  transition: width .1s linear;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-accent-light);
  transform: translateY(-3px);
}

.back-to-top svg { width: 20px; height: 20px; }

/* ===================================================
   404 PAGE
   =================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--clr-border);
  line-height: 1;
}

.error-page h2 {
  margin: 12px 0 16px;
}

.error-page p {
  color: var(--clr-text-light);
  margin-bottom: 32px;
}
