/* Amore Restaurang & Bar – mörk elegans med varma guldtoner */
:root {
  --wine: #a86b4a;
  --wine-deep: #6b4428;
  --wine-soft: #c49a5c;
  --blush: rgba(212, 175, 95, 0.14);
  --bg: #100e0a;
  --bg-elevated: #18140e;
  --paper: #14110c;
  --card: #1f1a12;
  --cream: #faf4e8;
  --ink: #faf4e8;
  --muted: #c4b59a;
  --olive: #7a8f6e;
  --gold: #e4bc6a;
  --gold-deep: #b8923a;
  --gold-dim: rgba(228, 188, 106, 0.18);
  --border: rgba(228, 188, 106, 0.14);
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
.hidden { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: min(1120px, calc(100% - 1.75rem));
  margin-inline: auto;
}

/* —— Nav —— */
.am-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  height: var(--nav-h);
  background: rgba(16, 14, 10, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.am-nav.is-scrolled { box-shadow: var(--shadow); }
.am-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.am-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  min-width: 0;
}
.am-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(228, 188, 106, 0.45);
}
.am-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.am-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.am-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.am-links a:hover { color: var(--cream); background: var(--blush); }
.am-links a.is-current {
  color: var(--gold);
  background: var(--gold-dim);
  box-shadow: inset 0 0 0 1px rgba(228, 188, 106, 0.35);
}
.am-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.am-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.am-btn:active { transform: scale(0.98); }
.am-btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1408;
  box-shadow: 0 8px 28px rgba(184, 146, 58, 0.35);
}
.am-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(228, 188, 106, 0.4);
  filter: brightness(1.05);
}
.am-btn-outline {
  border: 2px solid rgba(228, 188, 106, 0.45);
  color: var(--gold);
  background: transparent;
}
.am-btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--cream);
}
.am-menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.am-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.am-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.am-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.am-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.am-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 34, 36, 0.45);
  z-index: 280;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.am-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.am-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--bg-elevated);
  z-index: 290;
  padding: calc(var(--nav-h) + 1rem) 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
}
.am-drawer.is-open { transform: translateX(0); }
.am-drawer a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.am-drawer a.is-current { color: var(--gold); }
.am-drawer .am-btn { width: 100%; margin-top: 1rem; }

@media (min-width: 900px) {
  .am-links { display: flex; }
  .am-menu-toggle { display: none; }
  .hide-mobile { display: inline-flex; }
}
@media (max-width: 899px) {
  .hide-mobile { display: none !important; }
}

/* —— Hero (home) —— */
.am-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(184, 146, 58, 0.22), transparent),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(228, 188, 106, 0.08), transparent),
    linear-gradient(180deg, var(--bg) 0%, var(--paper) 100%);
}
.am-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .am-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.am-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.am-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1rem;
}
.am-hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.5rem;
}
.am-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.am-hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  box-shadow: var(--shadow);
  background: var(--bg-elevated);
}
.am-hero-slideshow {
  position: absolute;
  inset: 0;
}
.am-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.am-hero-slide.is-active { opacity: 1; }
.am-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 14, 10, 0.78) 0%, rgba(16, 14, 10, 0.2) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.am-hero-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}
.am-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s, background 0.2s;
}
.am-hero-dots button.is-active {
  background: var(--gold);
  transform: scale(1.2);
}
.am-hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(16, 14, 10, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  border: 1px solid var(--border);
  z-index: 2;
}

/* —— Features —— */
.am-section {
  padding: 3.5rem 0;
}
.am-section-alt { background: var(--paper); }
.am-promo-text {
  text-align: center;
  margin: 0;
  font-weight: 600;
  color: var(--gold);
}
.am-section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.am-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
}
.am-section-head p { color: var(--muted); margin: 0; }
.am-features {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .am-features { grid-template-columns: repeat(3, 1fr); }
}
.am-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.am-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.am-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.am-feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 0 0.35rem;
}
.am-feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* —— Popular dishes —— */
.am-popular-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 600px) {
  .am-popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .am-popular-grid { grid-template-columns: repeat(3, 1fr); }
}
.am-dish-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.am-dish-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--blush);
}
.am-dish-card-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.am-dish-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  color: var(--cream);
}
.am-dish-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}
.am-dish-price {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--gold);
}

/* —— Quote band —— */
.am-quote {
  padding: 3rem 0;
  background: linear-gradient(135deg, #3d2e14 0%, var(--gold-deep) 45%, #5c4520 100%);
  color: var(--cream);
  text-align: center;
}
.am-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-style: italic;
  max-width: 28rem;
  margin: 0 auto 1rem;
  line-height: 1.45;
}
.am-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* —— Page header (inner pages) —— */
.am-page-hero {
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  text-align: center;
}
.am-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
}
.am-page-hero p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* —— Menu accordion —— */
.am-menu-accordions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.am-acc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.am-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  background: var(--bg-elevated);
}
.am-acc-btn::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.am-acc.is-open .am-acc-btn::after { transform: rotate(45deg); }
.am-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.am-acc.is-open .am-acc-panel { grid-template-rows: 1fr; }
.am-acc-panel-inner {
  overflow: hidden;
}
.am-menu-list {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.am-menu-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--border);
}
.am-menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.am-menu-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--blush);
}
.am-menu-item-body { flex: 1; min-width: 0; }
.am-menu-item h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: var(--cream);
}
.am-menu-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.am-menu-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.am-price { font-weight: 700; color: var(--gold); white-space: nowrap; }
.am-price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
  margin-right: 0.35rem;
}

/* —— Contact —— */
.am-contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .am-contact-grid { grid-template-columns: 1fr 1fr; }
}
.am-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.am-card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
.am-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.am-hours li:last-child { border-bottom: none; }
.hours-closed { color: #e8a04a; font-weight: 600; }
.am-contact-line {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0 0 0.85rem;
}
.am-contact-line a:hover { color: var(--gold); text-decoration: underline; }
.am-map-link {
  display: inline-flex;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold);
}

/* —— About —— */
.am-about-prose {
  max-width: 42rem;
  margin: 0 auto;
}
.am-about-prose p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.am-about-prose p:first-of-type {
  font-size: 1.2rem;
  color: var(--cream);
}
.am-values {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .am-values { grid-template-columns: repeat(2, 1fr); }
}
.am-value {
  padding: 1.25rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-deep);
}

/* —— CTA strip —— */
.am-cta {
  padding: 2.5rem 0;
  text-align: center;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.am-cta h2 {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0 0 0.5rem;
}
.am-cta p { color: var(--muted); margin: 0 0 1.25rem; }

/* —— Footer —— */
.am-footer {
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.am-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.am-footer-links a:hover { color: var(--gold); }
.am-footer > .wrap > p a {
  color: inherit;
  text-decoration: none;
}
.am-footer > .wrap > p a:hover { color: var(--gold); }

.am-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 200;
  box-shadow: 0 10px 30px rgba(184, 146, 58, 0.4);
}
@media (min-width: 900px) {
  .am-fab { display: none; }
}

.am-loading {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}
.am-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--gold-dim);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: am-spin 0.8s linear infinite;
  margin: 0 auto 0.75rem;
}
@keyframes am-spin { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .am-hero-slide { transition: none; }
}
