/* ============================================================
   THE ROYAL CALPE — Styles
   Color Palette:
     --green:    #1a4731  (deep forest green)
     --green-l:  #2d6b4a  (lighter green)
     --gold:     #c8a951  (warm gold)
     --gold-l:   #ddc172  (light gold)
     --cream:    #faf6ee  (warm cream)
     --cream-d:  #f0ead8  (darker cream)
     --dark:     #1a1a1a  (near black)
     --text:     #3a3a3a  (body text)
     --white:    #ffffff
   ============================================================ */

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

:root {
  --green:   #1a4731;
  --green-l: #2d6b4a;
  --green-xl:#3d8c63;
  --gold:    #c8a951;
  --gold-l:  #ddc172;
  --gold-d:  #a68b3a;
  --cream:   #faf6ee;
  --cream-d: #f0ead8;
  --dark:    #1a1a1a;
  --text:    #3a3a3a;
  --text-l:  #6b6b6b;
  --white:   #ffffff;
  --font-script: 'Satisfy', cursive;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--green);
}

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

.section__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__label--light {
  color: var(--gold-l);
}

.section__label--gold {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section__title em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--green);
}

.section__title--light {
  color: var(--white);
}

.section__title--light em {
  color: var(--gold-l);
}

.section__header--center {
  text-align: center;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--green-l);
  border-color: var(--green-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 71, 49, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 600;
}

.btn--gold:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 169, 81, 0.4);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}

.header--scrolled {
  background: rgba(26, 71, 49, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: var(--header-h);
}

.header__logo-img {
  height: 48px;
  width: auto;
  transition: height var(--transition);
}

.header--scrolled .header__logo-img {
  height: 40px;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

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

.nav-link--cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-link--active {
  color: var(--white);
}

.nav-link--active::after {
  width: 100%;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   SIDEBAR (Mobile)
   ============================================================ */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--green);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar__logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.sidebar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar__close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  flex: 1;
}

.sidebar__link {
  display: block;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  border-left: 3px solid transparent;
  opacity: 0;
  transform: translateX(20px);
}

.sidebar.active .sidebar__link {
  opacity: 1;
  transform: translateX(0);
}

.sidebar.active .sidebar__link:nth-child(1) { transition-delay: 0.1s; }
.sidebar.active .sidebar__link:nth-child(2) { transition-delay: 0.15s; }
.sidebar.active .sidebar__link:nth-child(3) { transition-delay: 0.2s; }
.sidebar.active .sidebar__link:nth-child(4) { transition-delay: 0.25s; }
.sidebar.active .sidebar__link:nth-child(5) { transition-delay: 0.3s; }

.sidebar__link:hover,
.sidebar__link:focus {
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--gold);
}

.sidebar__link--cta {
  margin: 8px 24px 0;
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 4px;
  text-align: center;
  border-left: none !important;
  padding: 14px 24px;
  font-weight: 600;
}

.sidebar__link--cta:hover {
  background: var(--gold-l);
}

.sidebar__footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.sidebar__contact a {
  color: var(--gold-l);
}

.sidebar__contact svg {
  flex-shrink: 0;
}

.sidebar__address {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 71, 49, 0.55) 0%,
    rgba(10, 30, 20, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__logo-wrap {
  display: inline-block;
  margin-bottom: 16px;
}

.hero__logo {
  height: clamp(120px, 22vw, 200px);
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.25));
  border-radius: 8px;
}

.hero__divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 20px;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

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


/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about__image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.4;
}

.about__content {
  padding: 20px 0;
}

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.about__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
}

.about__feature svg {
  color: var(--gold);
  flex-shrink: 0;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery__slideshow {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.gallery__track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--dark);
}

.gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery__slide.active {
  opacity: 1;
}

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

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 2;
}

.gallery__btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.05);
}

.gallery__btn--prev { left: 16px; }
.gallery__btn--next { right: 16px; }

.gallery__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.gallery__dot.active {
  background: var(--gold);
  transform: scale(1.25);
}


/* ============================================================
   MENU CTA
   ============================================================ */
.menu-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.menu-cta__bg {
  position: absolute;
  inset: 0;
}

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

.menu-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 71, 49, 0.92) 0%,
    rgba(10, 30, 20, 0.88) 100%
  );
}

.menu-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.menu-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.menu-cta__text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}


/* ============================================================
   HOURS
   ============================================================ */
.hours__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.hours__card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.hours__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.hours__card--accent {
  background: var(--green);
  border-color: transparent;
}

.hours__card--accent .hours__card-icon svg,
.hours__card--accent .hours__card-title,
.hours__card--accent .hours__card-subtitle {
  color: var(--white);
}

.hours__card--accent .hours__card-icon svg {
  stroke: var(--gold-l);
}

.hours__card-icon {
  margin-bottom: 20px;
}

.hours__card-icon svg {
  color: var(--gold);
}

.hours__card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.hours__card-subtitle {
  font-size: 13px;
  color: var(--text-l);
  margin-bottom: 16px;
}

.hours__card-time {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
}

.hours__card-phone {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-l);
  text-decoration: none;
  transition: color var(--transition);
}

.hours__card-phone:hover {
  color: var(--gold);
}


/* ============================================================
   FIND US
   ============================================================ */
.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}

.find-us__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.find-us__address,
.find-us__phone,
.find-us__hours-mini {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.find-us__address svg,
.find-us__phone svg,
.find-us__hours-mini svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.find-us__detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-l);
  margin-bottom: 4px;
}

.find-us__detail-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.find-us__detail-link {
  color: var(--green);
  font-weight: 500;
}

.find-us__detail-link:hover {
  color: var(--gold-d);
}

.find-us__directions-btn {
  margin-top: 16px;
  align-self: flex-start;
}

.find-us__map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.find-us__map iframe {
  display: block;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  background: white;
  padding: 4px;
  border-radius: 4px;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links a,
.footer__contact a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold-l);
  padding-left: 4px;
}

.footer__contact p,
.footer__hours p {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__credit a {
  color: var(--gold);
  text-decoration: none;
}

.footer__credit a:hover {
  color: var(--gold-l);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    height: 350px;
  }

  .about__image-accent {
    display: none;
  }

  .hours__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .find-us__grid {
    grid-template-columns: 1fr;
  }

  .find-us__map {
    min-height: 350px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .section {
    padding: 72px 0;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero__ctas .btn {
    width: 220px;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }

  .about__image {
    height: 280px;
  }

  .gallery__slideshow {
    border-radius: 4px;
  }

  .gallery__btn {
    width: 36px;
    height: 36px;
  }

  .gallery__btn--prev { left: 8px; }
  .gallery__btn--next { right: 8px; }

  .gallery__caption {
    font-size: 1rem;
    padding: 24px 16px 16px;
  }

  .menu-cta {
    padding: 80px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__links a:hover {
    padding-left: 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .find-us__directions-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .hero__logo {
    height: 100px;
  }

  .hours__card {
    padding: 36px 24px;
  }
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* Skip to content link (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* Focus visible styles (a11y) */
.nav-link:focus-visible,
.btn:focus-visible,
.gallery__btn:focus-visible,
.gallery__dot:focus-visible,
.hamburger:focus-visible,
.sidebar__link:focus-visible,
.sidebar__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
