/* ==========================================================================
   STONE GRILL — Roadhouse design system
   Warm roadhouse aesthetic — cream + amber + wood + charcoal accents
   ========================================================================== */

/* Reset & base
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
:focus-visible { outline: 2px solid var(--c-amber); outline-offset: 3px; }

/* Tokens
   ----------------------------------------------------------------------- */
:root {
  /* Color */
  --c-cream:        #f5f0e8;
  --c-cream-2:      #efe7d8;
  --c-cream-3:      #e6dcc6;
  --c-charcoal:     #1a1a1a;
  --c-charcoal-2:   #2a2520;
  --c-text:         #1f1b16;
  --c-text-muted:   #6b5d4f;
  --c-amber:        #e8850a;
  --c-amber-dark:   #c66f08;
  --c-amber-light:  #f4a850;
  --c-amber-rgb:    232, 133, 10;  /* for rgba() with alpha */
  --c-wood:         #6b4c2a;
  --c-wood-light:   #a87850;
  --c-red:          #c8102e;     /* brand accent — used sparingly */
  --c-line:         rgba(31, 27, 22, 0.12);
  --c-line-strong:  rgba(31, 27, 22, 0.22);

  /* Type */
  --f-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Scale (density: spacious by default) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
  --space-7: 9rem;
  --section-y: clamp(4rem, 9vw, 8.5rem);
  --container-x: clamp(1.25rem, 4vw, 2.5rem);

  /* Layout */
  --max-w: 1320px;
  --max-w-text: 680px;
  --max-w-narrow: 880px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(26,26,26,.06), 0 2px 8px rgba(26,26,26,.04);
  --shadow:    0 4px 16px rgba(26,26,26,.08), 0 1px 3px rgba(26,26,26,.06);
  --shadow-lg: 0 20px 60px rgba(26,26,26,.18), 0 4px 12px rgba(26,26,26,.08);

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Density modes (Tweak)
   ----------------------------------------------------------------------- */
body[data-density="dense"] {
  --space-1: 0.375rem;
  --space-2: 0.75rem;
  --space-3: 1.125rem;
  --space-4: 1.75rem;
  --space-5: 2.75rem;
  --space-6: 4rem;
  --space-7: 5.5rem;
  --section-y: clamp(2.5rem, 6vw, 5rem);
}

/* Color themes (Tweak)
   The default uses amber. Each theme remaps --c-amber* directly, so every
   button, badge, eyebrow, price tag and hover state inherits without per-rule changes.
   ----------------------------------------------------------------------- */
body[data-theme="red"] {
  --c-amber: #c8102e;
  --c-amber-dark: #9e0c24;
  --c-amber-light: #e63a52;
  --c-amber-rgb: 200, 16, 46;
}
body[data-theme="red-blue"] {
  --c-amber: #c8102e;
  --c-amber-dark: #9e0c24;
  --c-amber-light: #2596be;
  --c-amber-rgb: 200, 16, 46;
}
body[data-theme="amber"] {
  /* explicit default — same as :root */
  --c-amber: #e8850a;
  --c-amber-dark: #c66f08;
  --c-amber-light: #f4a850;
  --c-amber-rgb: 232, 133, 10;
}

/* Base typography
   ----------------------------------------------------------------------- */
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-cream);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--c-text);
  text-wrap: balance;
}

.h-display {
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.h-1 { font-size: clamp(2.25rem, 5.5vw, 4.25rem); }
.h-2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.h-3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 700; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber-dark);
}
.eyebrow.on-dark { color: var(--c-amber-light); }

.lead {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--c-text-muted);
  max-width: 56ch;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

.italic-accent {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
}

/* Layout primitives
   ----------------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-x);
}
.container-narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--container-x);
}
.section {
  padding-block: var(--section-y);
}
.section--dark {
  background: var(--c-charcoal);
  color: var(--c-cream);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-cream); }
.section--cream-2 { background: var(--c-cream-2); }

/* Header / Nav
   ----------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  top: var(--topbar-h, 0px);
  z-index: 50;
  padding: 1rem var(--container-x);

  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.3s, top 0.4s var(--ease-out);
}
body.topbar-hidden .site-header { top: 0; }
.site-header.is-scrolled {
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-line);
}
.site-header.is-on-hero:not(.is-scrolled) { color: var(--c-cream); }
.site-header.is-on-hero:not(.is-scrolled) .nav a { color: var(--c-cream); }
.site-header.is-on-hero:not(.is-scrolled) .nav a:hover { color: var(--c-amber-light); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  gap: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-mark {
  width: 170px;

}

.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-text small {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0.25rem;
  height: 1px;
  background: currentColor;
  transition: right 0.3s var(--ease-out);
}
.nav a:hover { color: var(--c-amber-dark); }
.nav a:hover::after { right: 0; }
.nav a.is-current::after { right: 0; background: var(--c-amber); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, top 0.3s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--c-cream);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4) var(--container-x);
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    overflow-y: auto;
    height:70vh;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-line);
    color: var(--c-text) !important;
  }
  .nav a::after { display: none; }
  .site-header.is-on-hero:not(.is-scrolled) { color: var(--c-cream); }
}

/* Buttons
   ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-amber);
  color: #fff;
  box-shadow: 0 2px 0 var(--c-amber-dark), 0 8px 24px rgba(var(--c-amber-rgb), 0.3);
}
.btn--primary:hover {
  background: var(--c-amber-dark);
  box-shadow: 0 4px 0 var(--c-amber-dark), 0 14px 32px rgba(var(--c-amber-rgb), 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  box-shadow: inset 0 0 0 1.5px var(--c-text);
}
.btn--ghost:hover { background: var(--c-text); color: var(--c-cream); }

.btn--ghost-light {
  background: transparent;
  color: var(--c-cream);
  box-shadow: inset 0 0 0 1.5px rgba(245,240,232,0.5);
}
.btn--ghost-light:hover { background: var(--c-cream); color: var(--c-text); }

.btn .arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero
   ----------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/4.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.55) 40%, rgba(20,15,10,0.4) 50%, rgba(20,15,10,0.85) 100%);
}
.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--space-7) var(--container-x) var(--space-5);
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: var(--space-3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber-light);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 12px var(--c-amber);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--c-cream);
  margin-bottom: var(--space-3);
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-amber-light);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.85);
  max-width: 52ch;
  margin-bottom: var(--space-4);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}
.hero-meta {
  position: absolute;
  right: var(--container-x);
  bottom: var(--space-5);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  color: rgba(245,240,232,0.7);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta .big {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-cream);
}
@media (max-width: 768px) {
  .hero-meta { position: static; flex-direction: column; justify-content: flex-start; margin-top: var(--space-3); }
  .hero-meta .big { font-size: 1.1rem;   }

.hero-meta{
     align-items: center;
}

  .hero{
    flex-direction: column;
  }
  
  .hero-bg {

  background-image: url('../images/7.png');

}

/* --- MODIFICAREA COMPENSATORIE PENTRU CONTRAST PE MOBILE --- */
  .hero-bg::after {
    /* Întunecăm mai mult zona de sus și de mijloc (0.75 și 0.7), lăsând doar baza clădirii mai liberă */
    background: linear-gradient(180deg, 
      rgba(15, 12, 10, 0.6) 0%, 
      rgba(15, 12, 10, 0.8) 50%, 
      rgba(15, 12, 10, 0.7) 100%
    );
  }

  /* Opțional: Adăugăm o umbră fină pe textul text-sub/titlu pentru a-l decupa de fundal */
  .hero-title, .hero-sub {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
}

/* Section header
   ----------------------------------------------------------------------- */
.section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  max-width: var(--max-w-narrow);
}
.section-header.center { text-align: center; margin-inline: auto; }
.section-header .lead { max-width: 60ch; }
.section-header.center .lead { margin-inline: auto; }

/* Three-up feature cards
   ----------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}
.feature {
  padding: var(--space-3) var(--space-3) var(--space-4);
  background: var(--c-cream-2);
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--c-line-strong);
}
.feature-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-amber-dark);
  margin-bottom: var(--space-2);
}
.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.feature p {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Facility / amenity grid
   ----------------------------------------------------------------------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
}

.amenity-grid.soferi{
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.section--dark .amenity-grid {
  background: rgba(245,240,232,0.1);
  border-color: rgba(245,240,232,0.15);
}
.amenity {
  background: var(--c-cream);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}
.section--dark .amenity { background: var(--c-charcoal); }
.amenity:hover { background: var(--c-cream-2); }
.section--dark .amenity:hover { background: var(--c-charcoal-2); }
.amenity-icon {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(var(--c-amber-rgb), 0.12);
  color: var(--c-amber-dark);
  margin-bottom: 0.25rem;
}
.section--dark .amenity-icon { background: rgba(var(--c-amber-rgb), 0.15); color: var(--c-amber-light); }
.amenity-icon svg { width: 22px; height: 22px; }
.amenity h4 {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.amenity p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}
.section--dark .amenity p { color: rgba(245,240,232,0.65); }

/* Steak signature section
   ----------------------------------------------------------------------- */
.signature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 880px) {
  .signature { grid-template-columns: 1fr; }
}
.signature-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-cream-3);
}
.signature-img img { width: 100%; height: 100%; object-fit: cover; }
.signature-img .price-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--c-amber);
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.signature-content .badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(var(--c-amber-rgb), 0.12);
  color: var(--c-amber-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.signature-content h2 { margin-bottom: var(--space-3); }
.signature-content p { color: var(--c-text-muted); margin-bottom: var(--space-2); font-size: 1.05rem; }

/* FAQ accordion
   ----------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--c-line);
}
.faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.01em;
  color: var(--c-text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--c-amber-dark); }
.faq-q .toggle {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.3s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
}
.faq-q .toggle::before { width: 12px; height: 1.5px; }
.faq-q .toggle::after  { width: 1.5px; height: 12px; }
.faq-item.is-open .faq-q { color: var(--c-amber-dark); }
.faq-item.is-open .faq-q .toggle { background: var(--c-amber); border-color: var(--c-amber); color: #fff; transform: rotate(180deg); }
.faq-item.is-open .faq-q .toggle::after { transform: scaleY(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-a > div {
  overflow: hidden;
  color: var(--c-text-muted);
  line-height: 1.6;
  max-width: 64ch;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div > * { padding-bottom: var(--space-3); }

/* Quote / story block
   ----------------------------------------------------------------------- */
.pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  color: var(--c-text);
  max-width: 28ch;
  text-wrap: balance;
  position: relative;
  padding-left: 1.5rem;
}
.pullquote::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 3px;
  height: calc(100% - 1em);
  background: var(--c-amber);
}

/* Stats row
   ----------------------------------------------------------------------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(245,240,232,0.15);
  border-block: 1px solid rgba(245,240,232,0.15);
}
.stat {
  padding: var(--space-4) var(--space-3);
  background: var(--c-charcoal);
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--c-amber-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
}

/* Info strip (hours / phone / address)
   ----------------------------------------------------------------------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-radius: var(--radius-lg);
  align-items: center;
}
.info-strip .item small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber-light);
  margin-bottom: 0.375rem;
}
.info-strip .item strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Footer
   ----------------------------------------------------------------------- */
.site-footer {
  background: var(--c-charcoal);
  color: rgba(245,240,232,0.7);
  padding: var(--space-5) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p { font-size: 0.9rem; margin-top: var(--space-2); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-amber-light);
  margin-bottom: var(--space-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--c-amber-light); }
.footer-bottom {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(245,240,232,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 12px;
  color: rgba(245,240,232,0.45);
}

/* Misc components
   ----------------------------------------------------------------------- */
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-cream-3);
  position: relative;
}
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.image-card:hover img { transform: scale(1.04); }

.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-2);
}
.image-strip .image-card:nth-child(1) { aspect-ratio: 4/5; }
.image-strip .image-card:nth-child(2) { aspect-ratio: 4/5; margin-top: var(--space-4); }
.image-strip .image-card:nth-child(3) { aspect-ratio: 4/5; }
@media (max-width: 720px) {
  .image-strip { grid-template-columns: 1fr 1fr; }
  .image-strip .image-card:nth-child(3) { display: none; }
}

/* Two-column generic
   ----------------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}
.two-col.center { align-items: center; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr!important; gap: var(--space-4); } }

/* Menu page styles
   ----------------------------------------------------------------------- */
.menu-cat {
  border-top: 1.5px solid var(--c-text);
  padding-top: var(--space-3);
  margin-bottom: var(--space-5);
}
.menu-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
  gap: var(--space-2);
}
.menu-cat-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.menu-cat-header .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber-dark);
  font-weight: 600;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
}
.menu-item {
  padding: var(--space-2) 0;
}
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.375rem;
}
.menu-item-head .name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.menu-item-head .price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-amber-dark);
  flex: 0 0 auto;
}
.menu-item .desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.menu-item .tags {
  display: flex;
  gap: 0.375rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--c-cream-2);
  color: var(--c-text-muted);
}
.tag--veg { background: rgba(125,137,102,0.15); color: #5a6a45; }
.tag--gluten { background: rgba(var(--c-amber-rgb), 0.12); color: var(--c-amber-dark); }

/* Contact page
   ----------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-4);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--c-cream-2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-row {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--c-line);
}
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row .ic {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-amber);
  color: #fff;
  display: grid;
  place-items: center;
}
.contact-row .ic svg { width: 18px; height: 18px; }
.contact-row .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 0.125rem;
}
.contact-row .val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.25;
}
.contact-row a.val { transition: color 0.2s; }
.contact-row a.val:hover { color: var(--c-amber-dark); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  background: var(--c-cream-3);
  border: 1px solid var(--c-line);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* Page header (non-home pages)
   ----------------------------------------------------------------------- */
.page-header {
  padding: calc(var(--topbar-h, 0px) + 7.5rem) 0 calc(var(--section-y) + 0.5rem);
  background: var(--c-charcoal);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* dramatic photographic backdrop — url resolves relative to this stylesheet,
   so a single path works on root, /meniu, and /produse/* alike */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/exterior-night.jpg') center 35% / cover no-repeat;
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.02);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(115% 80% at 88% -10%, rgba(var(--c-amber-rgb), 0.34), transparent 52%),
    linear-gradient(177deg, rgba(14,10,7,0.74) 0%, rgba(14,10,7,0.52) 42%, rgba(14,10,7,0.93) 100%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header .breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.62);
  margin-bottom: var(--space-4);
}
.page-header .breadcrumb a { color: var(--c-amber-light); transition: color 0.2s; }
.page-header .breadcrumb a:hover { color: var(--c-cream); }
.page-header h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: var(--c-cream);
  margin-bottom: var(--space-3);
  letter-spacing: -0.028em;
  line-height: 0.98;
  max-width: 17ch;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
/* amber accent rule sitting under the breadcrumb for a touch of drama */
.page-header h1::before {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--c-amber);
  box-shadow: 0 0 24px rgba(var(--c-amber-rgb), 0.7);
  margin-bottom: var(--space-3);
}
.page-header .lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  max-width: 60ch;
  color: rgba(245, 240, 232, 0.82);
}
.page-header .btn--ghost {
  color: var(--c-cream);
  box-shadow: inset 0 0 0 1.5px rgba(245, 240, 232, 0.5);
}
.page-header .btn--ghost:hover { background: var(--c-cream); color: var(--c-text); }

/* Scroll reveal
   ----------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* CTA banner
   ----------------------------------------------------------------------- */
.cta-banner {
  background: var(--c-charcoal);
  color: var(--c-cream);
  padding: var(--space-5) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(var(--c-amber-rgb), 0.18), transparent 50%);
  pointer-events: none;
}
.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}
.cta-banner h2 {
  color: var(--c-cream);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  max-width: 18ch;
}

/* Tweaks panel
   ----------------------------------------------------------------------- */
.tweaks-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}
.tweaks-panel.is-active { display: flex; }
.tweaks-panel h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber-light);
  margin: 0;
}
.tweaks-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tweaks-row button {
  flex: 1;
  min-width: 60px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(245,240,232,0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-cream);
  transition: background 0.2s;
}
.tweaks-row button:hover { background: rgba(245,240,232,0.16); }
.tweaks-row button[aria-pressed="true"] { background: var(--c-amber); color: #fff; }
.tweaks-row--theme button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-start;
  padding: 0.5rem 0.625rem;
  flex: 1 1 100%;
}
.tweaks-row--theme button[aria-pressed="true"] {
  background: rgba(245,240,232,0.14);
  color: var(--c-cream);
  box-shadow: inset 0 0 0 1.5px var(--c-amber);
}
.tweaks-row--theme .swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 18px;
  box-shadow: inset 0 0 0 1px rgba(245,240,232,0.2);
}
.tweaks-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(245,240,232,0.6);
}
.tweaks-close:hover { color: var(--c-cream); background: rgba(245,240,232,0.12); }

/* Utilities
   ----------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.flex-row { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }

/* 3-card grid fix
   Default .feature-grid uses auto-fit which leaves the 3rd alone at tablet widths.
   Use 3 cols on desktop, 1 col on smaller screens — no orphans.
   ----------------------------------------------------------------------- */
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 880px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .feature-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .feature-grid--4 { grid-template-columns: 1fr; }
}

/* Product catalog & detail
   ----------------------------------------------------------------------- */

/* Toolbar: search + chips */
.prod-toolbar {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.prod-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: 999px;
  padding: 0 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 520px;
}
.prod-search:focus-within {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 4px rgba(var(--c-amber-rgb), 0.12);
}
.prod-search svg { flex: 0 0 18px; color: var(--c-text-muted); }
.prod-search input {
  flex: 1;
  padding: 0.875rem 0.75rem;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--c-text);
  outline: none;
  font-size: 15px;
}
.prod-search input::placeholder { color: var(--c-text-muted); }
.prod-search-clear {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  background: var(--c-cream-2);
  color: var(--c-text-muted);
  transition: opacity 0.2s, background 0.2s;
}
.prod-search-clear:hover { background: var(--c-line); color: var(--c-text); }

.prod-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.prod-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--c-cream-2);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.prod-chip:hover { background: var(--c-cream-3); }
.prod-chip.is-active {
  background: var(--c-charcoal);
  color: var(--c-cream);
  border-color: var(--c-charcoal);
}
.prod-chip-count {
  font-size: 11px;
  font-weight: 600;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(31,27,22,0.08);
  color: var(--c-text-muted);
  min-width: 24px;
  text-align: center;
}
.prod-chip.is-active .prod-chip-count {
  background: rgba(245,240,232,0.18);
  color: var(--c-cream);
}

/* Catalog section header */
.section--catalog {
  padding-block: var(--space-5);
}
.section--catalog:nth-of-type(even) { background: var(--c-cream-2); }
.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.cat-back {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  background: rgba(31,27,22,0.04);
  transition: background 0.2s, color 0.2s;
}
.cat-back:hover { background: var(--c-amber); color: #fff; }

/* Product grid */
.product-grid {
  display: grid;
  gap: var(--space-3);
}
.product-grid--auto {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.product-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .product-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .product-grid--4 { grid-template-columns: 1fr; }
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  color: var(--c-text);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--c-line-strong);
}
.product-card-img {
  aspect-ratio: 4 / 3;
  background: var(--c-cream-3);
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body {
  padding: var(--space-2) var(--space-2) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-card-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-amber-dark);
}
.product-card h3 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0;
}
.product-card-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--c-text-muted);
  flex: 1;
}
.product-card-price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-amber-dark);
  margin-top: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.product-card-price small {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 10px;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; gap: var(--space-4); }
}
.product-media-inner {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-cream-3);
}
.product-media-inner img { width: 100%; height: 100%; object-fit: cover; }
.product-media-note {
  margin-top: var(--space-2);
  font-size: 12px;
  color: var(--c-text-muted);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin: var(--space-3) 0;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--c-line);
}
.product-price {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-amber-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-price span {
  font-size: 0.55em;
  margin-left: 0.25rem;
  color: var(--c-text-muted);
  font-weight: 600;
}
.product-price-note {
  font-size: 12px;
  color: var(--c-text-muted);
  font-style: italic;
  letter-spacing: 0.04em;
}
.product-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin-bottom: var(--space-3);
}
.product-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-block: 1px solid var(--c-line);
  margin-bottom: var(--space-3);
}
.product-meta-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
  gap: 1rem;
}
.product-meta-list li:last-child { border-bottom: 0; }
.product-meta-list li span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.product-meta-list li strong {
  font-weight: 600;
  color: var(--c-text);
  text-align: right;
}
.product-disclaimer {
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-3);
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-text-muted);
  background: var(--c-cream-2);
  border-left: 3px solid var(--c-amber);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ==========================================================================
   Utility top bar (injected by main.js on every page)
   ========================================================================== */
:root { --topbar-h: 42px; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--topbar-h);
  background: var(--c-charcoal);
  color: rgba(245, 240, 232, 0.85);
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  transition: transform 0.4s var(--ease-out);
}
body.topbar-hidden .topbar { transform: translateY(-100%); }

.topbar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  height: 100%;
  width: 100%;
  padding-inline: var(--container-x);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.topbar-group { display: flex; align-items: center; gap: var(--space-3); }
.topbar .tb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  white-space: nowrap;
  transition: color 0.2s;
}
a.tb-item:hover { color: var(--c-amber-light); }
.topbar svg {
  width: 14px; height: 14px;
  flex: 0 0 14px;
  color: var(--c-amber-light);
}
.topbar .tb-sep { width: 1px; height: 15px; background: rgba(245, 240, 232, 0.16); }
.topbar .tb-spacer { flex: 1 1 auto; }
.topbar .tb-muted { color: rgba(245, 240, 232, 0.6); }
.topbar .tb-muted svg { color: rgba(245, 240, 232, 0.5); }

@media (max-width: 980px) {
  .topbar .tb-hide-md { display: none; }
}
@media (max-width: 720px) {
  :root { --topbar-h: 0px; }
  .topbar { display: none; }
}

/* ==========================================================================
   Footer contact icons (enhanced by main.js)
   ========================================================================== */
.footer-col--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-col--contact li svg {
  width: 15px; height: 15px;
  flex: 0 0 15px;
  margin-top: 0.25rem;
  color: var(--c-amber-light);
}
.footer-col--contact li:not(:has(svg)) {
  padding-left: calc(15px + 0.6rem);
}

/* ==========================================================================
   "Lucruri practice de știut" — practical info cards (Servicii Șoferi)
   ========================================================================== */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.practical-card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.practical-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-amber);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}
.practical-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--c-line-strong);
}
.practical-card:hover::before { transform: scaleY(1); }
.practical-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(var(--c-amber-rgb), 0.12);
  color: var(--c-amber-dark);
  flex: 0 0 auto;
}
.practical-icon svg { width: 22px; height: 22px; }
.practical-card h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.practical-card p {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
