/* ==========================================================================
   Uršulė — restorano svetainė
   Šriftai (tik 2): Playfair Display (antraštėms) + Inter (tekstui)
   ========================================================================== */

:root {
  --radius: 4px;

  --background: oklch(0.965 0.012 75);
  --foreground: oklch(0.22 0.025 35);
  --card: oklch(0.985 0.008 75);

  --primary: oklch(0.42 0.085 35);
  --primary-foreground: oklch(0.985 0.008 75);

  --secondary: oklch(0.92 0.018 75);
  --muted-foreground: oklch(0.48 0.025 40);

  --border: oklch(0.88 0.02 70);

  --gold: oklch(0.72 0.075 75);
  --terracotta: oklch(0.52 0.095 40);
  --espresso: oklch(0.22 0.025 35);
  --sage: oklch(0.62 0.04 130);
  --cream: oklch(0.965 0.012 75);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }

.section--bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--sand { background: color-mix(in oklch, var(--secondary) 40%, transparent); }

.gold-rule { position: relative; }
.gold-rule::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
}
.gold-rule--center::after { margin-left: auto; margin-right: auto; }

.eyebrow { display: none; } /* antraštės-eyebrow'ai pašalinti pagal užsakymą */

.heading-lg {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--foreground);
}
.heading-lg em { font-style: italic; font-weight: 400; }

.lede {
  margin-top: 2rem;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 42rem;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Vienintelis hover tipas visame puslapyje: opacity blukimas ----------
   Naudojamas TIK ties realiai paspaudžiamais elementais (nuorodos, mygtukai,
   žemėlapis) — ne ties kortelėmis ar nuotraukomis, kurios nėra saitai. */
.hoverable { transition: opacity 0.25s ease; }
.hoverable:hover, .hoverable:focus-visible { opacity: 0.72; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-outline {
  border: 1px solid color-mix(in oklch, white 40%, transparent);
  color: #fff;
}
.btn-block { width: 100%; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: color-mix(in oklch, var(--background) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: color-mix(in oklch, var(--border) 60%, transparent);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .nav-inner { height: 84px; } }

.wordmark {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.35em;
  color: #fff;
  transition: color 0.4s ease;
}
.navbar.scrolled .wordmark { color: var(--foreground); }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklch, white 85%, transparent);
}
.navbar.scrolled .nav-links a { color: color-mix(in oklch, var(--foreground) 80%, transparent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px color-mix(in oklch, var(--espresso) 25%, transparent);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: #fff;
  border-radius: var(--radius);
}
.navbar.scrolled .nav-toggle { color: var(--foreground); }
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { padding: 16px 20px; }
.nav-mobile li a {
  display: block;
  padding: 14px 0;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
}
.nav-mobile .nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 14px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      color-mix(in oklch, var(--espresso) 70%, transparent),
      color-mix(in oklch, var(--espresso) 55%, transparent) 55%,
      color-mix(in oklch, var(--espresso) 82%, transparent));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  text-align: center;
  color: #fff;
}
.hero-title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  letter-spacing: 0.35em;
  padding-left: 0.35em; /* optical centering for large letter-spacing */
}
.hero-divider {
  width: 80px; height: 1px;
  background: color-mix(in oklch, var(--gold) 70%, transparent);
  margin: 32px auto;
}
.hero-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: color-mix(in oklch, white 90%, transparent);
}
.hero-sub {
  margin-top: 24px;
  font-size: 1rem;
  font-weight: 300;
  color: color-mix(in oklch, white 75%, transparent);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: color-mix(in oklch, white 70%, transparent);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.about-image { position: relative; order: 2; }
@media (min-width: 1024px) { .about-image { order: 1; } }
.about-image .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about-image .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-image .corner {
  position: absolute;
  display: none;
  width: 96px; height: 96px;
  border-color: color-mix(in oklch, var(--gold) 60%, transparent);
}
@media (min-width: 768px) { .about-image .corner { display: block; } }
.corner--br { right: -16px; bottom: -16px; border-right: 2px solid; border-bottom: 2px solid; }
.corner--tl { left: -16px; top: -16px; border-left: 2px solid; border-top: 2px solid; }

.about-text { order: 1; }
@media (min-width: 1024px) { .about-text { order: 2; } }
.about-text p { margin-top: 20px; color: var(--muted-foreground); font-size: 1.0625rem; }
.about-text p:first-of-type { margin-top: 32px; }

.stats { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 40px 24px; }
.stats .num { font-family: "Playfair Display", serif; font-size: 1.875rem; color: var(--terracotta); }
.stats .label { margin-top: 4px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }

/* ==========================================================================
   Menu
   ========================================================================== */
.menu-head { max-width: 640px; margin: 0 auto; text-align: center; }

.menu-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.menu-block {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 6px;
  padding: 36px 30px;
}
.menu-block h3 {
  font-size: 1.375rem;
  color: var(--primary-foreground);
}
.menu-block .divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 14px 0 28px;
}
.menu-block ul { display: flex; flex-direction: column; gap: 22px; }
.menu-block li {
  padding-bottom: 22px;
  border-bottom: 1px solid color-mix(in oklch, var(--primary-foreground) 18%, transparent);
}
.menu-block li:last-child { padding-bottom: 0; border-bottom: none; }

.menu-block .dish-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.menu-block .dish-row h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--primary-foreground);
}
.menu-block .dish-row .fill {
  flex: 1; height: 1px; min-width: 12px;
  background: color-mix(in oklch, var(--primary-foreground) 22%, transparent);
}
.menu-block .dish-row .price {
  font-family: "Playfair Display", serif;
  font-size: 0.9375rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-block .dish-desc {
  margin-top: 7px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: color-mix(in oklch, var(--primary-foreground) 78%, transparent);
}

.menu-note { margin-top: 48px; text-align: center; font-size: 0.9375rem; color: var(--muted-foreground); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1/1;
}
@media (min-width: 640px) {
  .gallery-item--feature { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in oklch, var(--espresso) 80%, transparent), color-mix(in oklch, var(--espresso) 10%, transparent) 55%, transparent);
}
.gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; z-index: 1; color: #fff; }
.gallery-caption .tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: color-mix(in oklch, var(--gold) 90%, transparent); }
.gallery-caption .title { margin-top: 4px; font-family: "Playfair Display", serif; font-size: 1.0625rem; }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .team-grid { grid-template-columns: 7fr 5fr; gap: 64px; } }
.team-image { position: relative; }
.team-image .frame { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.team-image .frame img { width: 100%; height: 100%; object-fit: cover; }
.team-image .corner { position: absolute; left: -16px; bottom: -16px; width: 96px; height: 96px; border-left: 2px solid color-mix(in oklch, var(--gold) 60%, transparent); border-bottom: 2px solid color-mix(in oklch, var(--gold) 60%, transparent); display: none; }
@media (min-width: 768px) { .team-image .corner { display: block; } }

.team-text p { margin-top: 20px; color: var(--muted-foreground); font-size: 1.0625rem; }
.team-text p:first-of-type { margin-top: 32px; }
.team-quote {
  margin-top: 40px;
  padding: 8px 0 8px 24px;
  border-left: 2px solid var(--gold);
}
.team-quote p { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.375rem; color: color-mix(in oklch, var(--foreground) 90%, transparent); }
.team-quote footer { margin-top: 12px; font-size: 0.875rem; color: var(--muted-foreground); }

/* ==========================================================================
   Reservation
   ========================================================================== */
.res-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .res-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.res-info p.lede { margin-top: 32px; }

.res-list { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.res-list li { display: flex; align-items: flex-start; gap: 16px; }
.res-list .ico { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.res-list .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted-foreground); }
.res-list .val { margin-top: 4px; font-family: "Playfair Display", serif; font-size: 1.125rem; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.status-badge .dot { width: 8px; height: 8px; border-radius: 999px; }
.status-badge.open { background: color-mix(in oklch, var(--sage) 18%, transparent); color: color-mix(in oklch, var(--sage) 55%, black); }
.status-badge.open .dot { background: var(--sage); }
.status-badge.closed { background: color-mix(in oklch, var(--terracotta) 12%, transparent); color: var(--terracotta); }
.status-badge.closed .dot { background: var(--terracotta); }

.res-form {
  background: var(--card);
  border: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { .res-form { padding: 40px; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } .form-row-3 { grid-template-columns: repeat(3, 1fr); } }

.field label {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted-foreground);
}
.field .req { color: var(--terracotta); }
.urs-input {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--background);
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.urs-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in oklch, var(--gold) 18%, transparent); }
textarea.urs-input { resize: vertical; min-height: 90px; }

.form-note { margin-top: 16px; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 0; }
.form-success.show { display: flex; }
.form-success .check {
  width: 56px; height: 56px; border-radius: 999px;
  background: color-mix(in oklch, var(--sage) 20%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.form-success h3 { margin-top: 24px; font-size: 1.5rem; }
.form-success p { margin-top: 12px; color: var(--muted-foreground); max-width: 22rem; }
.form-success button { margin-top: 32px; font-size: 0.875rem; color: var(--terracotta); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-cards { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: var(--card);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  border-radius: 4px;
  padding: 28px;
}
.info-card .head { display: flex; align-items: center; gap: 12px; color: var(--terracotta); }
.info-card h3 { font-size: 1.25rem; color: var(--foreground); }
.info-card .lines { margin-top: 16px; font-size: 0.9375rem; color: var(--muted-foreground); }
.info-card .lines p:first-child { color: var(--foreground); }
.info-card .lines p + p { margin-top: 4px; }

.contact-lower { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .contact-lower { grid-template-columns: 1fr 2fr; } }

.hours-card {
  background: var(--card);
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  border-radius: 4px;
  padding: 28px;
}
.hours-card .head { display: flex; align-items: center; gap: 12px; color: var(--terracotta); }
.hours-card h3 { font-size: 1.25rem; color: var(--foreground); }
.hours-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 0.875rem; }
.hours-card li { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid color-mix(in oklch, var(--border) 40%, transparent); }
.hours-card li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-card .day { color: var(--muted-foreground); }
.hours-card .hrs { font-weight: 500; }
.hours-card .today { color: var(--terracotta); font-weight: 600; }

.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
  min-height: 320px;
  background: var(--card);
  display: block;
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
.map-cta {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: filter 0.2s ease;
}

.socials { margin-top: 48px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
@media (min-width: 640px) { .socials { flex-direction: row; } }
.socials .lbl { font-size: 0.875rem; color: var(--muted-foreground); }
.social-icons { display: flex; align-items: center; gap: 16px; }
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--border);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--espresso); color: color-mix(in oklch, var(--cream) 85%, transparent); }
.footer-grid { padding: 56px 0; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand .wordmark { font-size: 1.875rem; letter-spacing: 0.35em; color: var(--cream); }
.footer-brand .tagline { margin-top: 16px; font-family: "Playfair Display", serif; font-style: italic; color: color-mix(in oklch, var(--cream) 70%, transparent); }
.footer-brand p.desc { margin-top: 16px; font-size: 0.875rem; color: color-mix(in oklch, var(--cream) 60%, transparent); max-width: 20rem; }
.footer h3 { font-family: "Inter", sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); font-weight: 500; }
.footer-links { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 0.875rem; }
.footer-links a { color: color-mix(in oklch, var(--cream) 70%, transparent); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 0.875rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: color-mix(in oklch, var(--cream) 70%, transparent); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid color-mix(in oklch, var(--cream) 15%, transparent);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.75rem; color: color-mix(in oklch, var(--cream) 50%, transparent);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .sig { font-family: "Playfair Display", serif; font-style: italic; color: color-mix(in oklch, var(--cream) 40%, transparent); }

/* ==========================================================================
   Sticky mobile action bar
   ========================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: color-mix(in oklch, var(--background) 97%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 768px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 4px 8px;
  font-size: 0.6875rem; font-weight: 500;
  line-height: 1.2;
  color: var(--foreground);
  border-right: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
}
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a.primary { color: var(--primary-foreground); background: var(--primary); }

/* Give room at bottom of page on mobile so the sticky bar never covers content */
@media (max-width: 767px) { body { padding-bottom: 60px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
