/* ==========================================================================
   BOX CUISINE — stylesheet
   Culorile de mai jos au fost extrase din emblema restaurantului
   (crem / cerneală / piele / alamă). Le poți schimba centralizat aici.
   ========================================================================== */

:root {
  /* --- palette --- */
  --paper:        #F5EBD8; /* fundal general, crem deschis */
  --cream:        #E3D3AC; /* fundal secțiuni/carduri */
  --cream-deep:   #D9CAA9; /* fundal carduri accentuate */
  --ink:          #1C1A15; /* text principal, aproape negru */
  --ink-soft:     #52493A; /* text secundar */
  --leather:      #8B5E34; /* accent principal — piele */
  --leather-dark: #6B4726;
  --brass:        #B39561; /* accent secundar — alamă */
  --brass-light:  #D8C39A;
  --white:        #FFFDF8;

  /* --- type --- */
  --font-display: 'Bevan', Georgia, serif;
  --font-label:   'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Karla', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- layout --- */
  --container-w:  1180px;
  --header-h:     84px;
  --radius-sm:    6px;
  --radius-md:    16px;
  --gutter:       clamp(20px, 5vw, 48px);
  --section-pad:  clamp(64px, 10vw, 112px);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

:focus-visible {
  outline: 3px solid var(--leather);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Sections that are nav-anchor targets need offset for the fixed header */
#acasa, #despre, #chef, #meniu, #galerie, #rezervari, #contact {
  scroll-margin-top: var(--header-h);
}

/* ==========================================================================
   SCROLL-REVEAL (progressive enhancement — see inline script in <head>)
   ========================================================================== */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */
.section__eyebrow, .hero__eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leather);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}

.section__lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background-color .25s ease, color .25s ease, transform .2s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--leather);
  color: var(--white);
  border-color: var(--leather);
}
.btn--primary:hover { background: var(--leather-dark); border-color: var(--leather-dark); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--small { padding: 10px 20px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245, 235, 216, 0.94);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--brass-light);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(28, 26, 21, 0.08);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav__brand-text strong { color: var(--leather); }

.nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color .2s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--leather);
  transition: right .25s ease;
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after,
.nav__link.is-active::after { right: 0; }
.nav__link.is-active { color: var(--ink); }

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--brass-light);
    box-shadow: 0 12px 24px rgba(28,26,21,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__links.is-open { max-height: 420px; }
  .nav__link {
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--brass-light);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin: 16px var(--gutter); }
}

/* ==========================================================================
   RING DIVIDER — signature element: boxing-ring ropes between sections
   ========================================================================== */
.ring-divider {
  position: relative;
  height: 30px;
  padding-inline: clamp(30px, 8vw, 90px);
  background: var(--paper);
}
.ring-divider__rope {
  display: block;
  height: 3px;
  border-radius: 3px;
  margin-block: 6px;
  background: var(--leather);
}
.ring-divider__rope:nth-child(2) { background: var(--brass); }
.ring-divider__rope:nth-child(3) { background: var(--leather); opacity: 0.7; }
.ring-divider::before, .ring-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid var(--ink);
}
.ring-divider::before { left: clamp(6px, 3vw, 40px); }
.ring-divider::after { right: clamp(6px, 3vw, 40px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-h) + var(--section-pad));
  padding-bottom: var(--section-pad);
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.hero__eyebrow { margin-bottom: 18px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--leather);
  margin-bottom: 22px;
}

.hero__lead {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--brass-light);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.stat__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.stat__value--text { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(28, 26, 21, 0.22);
  aspect-ratio: 694 / 1084;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 3px solid var(--brass);
  z-index: 2;
}
.corner--tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.corner--br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__image-wrap { max-width: 420px; margin-inline: auto; order: -1; }
}

/* ==========================================================================
   PHILOSOPHY / RULES
   ========================================================================== */
.philosophy { padding-block: var(--section-pad); }

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rule-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px 28px;
  overflow: hidden;
}
.rule-card__number {
  position: absolute;
  top: -6px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--brass-light);
  line-height: 1;
  z-index: 0;
}
.rule-card__title {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
  z-index: 1;
}
.rule-card__text {
  position: relative;
  color: var(--ink-soft);
  z-index: 1;
}

@media (max-width: 780px) {
  .rules-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CHEF
   ========================================================================== */
.chef { padding-block: var(--section-pad); }

.chef__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.chef__photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px rgba(28,26,21,0.18);
}
.chef__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.95) contrast(1.04);
}

.chef__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-block: 6px 8px;
}
.chef__style-tag {
  font-style: italic;
  color: var(--leather);
  margin-bottom: 24px;
}

.tape {
  border-top: 1px solid var(--brass-light);
  margin-bottom: 24px;
}
.tape__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-bottom: 1px dashed var(--brass-light);
}
.tape__label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.tape__value {
  font-weight: 700;
  text-align: right;
}

.chef__bio { color: var(--ink-soft); max-width: 60ch; }

@media (max-width: 780px) {
  .chef__grid { grid-template-columns: 1fr; }
  .chef__photo-wrap { max-width: 340px; margin-inline: auto; }
}

/* ==========================================================================
   MENU
   ========================================================================== */
.menu { padding-block: var(--section-pad); }

.menu-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--brass-light);
}
.menu-quicknav__link {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border: 1.5px solid var(--brass);
  border-radius: 999px;
  color: var(--ink-soft);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.menu-quicknav__link:hover {
  background: var(--leather);
  border-color: var(--leather);
  color: var(--white);
}

.menu-group { margin-bottom: 44px; }
.menu-group:last-of-type { margin-bottom: 0; }
.menu-group__title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--leather);
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--ink);
}

.menu-category {
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.menu-category[open] { background: var(--cream-deep); }

.menu-category__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
}
.menu-category__summary::-webkit-details-marker { display: none; }
.menu-category__summary::marker { content: ''; }
.menu-category__summary:hover { background: rgba(28, 26, 21, 0.05); }

.menu-category__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink);
}

.menu-category__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.menu-category__icon::before,
.menu-category__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--leather);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.menu-category__icon::before { width: 16px; height: 2px; }
.menu-category__icon::after { width: 2px; height: 16px; }
.menu-category[open] .menu-category__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.menu-category__items {
  padding: 0 22px 22px;
}
.menu-item-full { padding-top: 16px; }
.menu-item-full:first-child { padding-top: 0; }
.menu-item-full:not(:first-child) { border-top: 1px dashed var(--brass-light); }

.menu-item-full__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px 16px;
}
.menu-item-full__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.menu-item-full__price {
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--leather);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-full__desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.menu__cta { text-align: center; margin-top: 8px; }

@media (max-width: 600px) {
  .menu-category__summary { padding: 14px 18px; }
  .menu-category__items { padding: 0 18px 18px; }
}



/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { padding-block: var(--section-pad); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery__tile {
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--brass);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  background: var(--cream);
  transition: border-color .25s ease, transform .25s ease;
}
.gallery__tile:hover {
  border-color: var(--leather);
  transform: translateY(-4px);
}
.gallery__icon { width: 34px; height: 34px; color: var(--brass); }
.gallery__label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding-block: var(--section-pad); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--brass-light);
  border-radius: var(--radius-md);
  padding: 32px 28px 28px;
}
.testimonial-card__score {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  transform: rotate(-6deg);
}
.testimonial-card__quote {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 16px;
}
.testimonial-card__author {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--leather);
}

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   RESERVATION
   ========================================================================== */
.reservation { padding-block: var(--section-pad); background: var(--cream); }

.reservation__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}

.hours-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 12px;
}
.hours-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
  border-bottom: 1px dashed var(--brass-light);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }

.reservation-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 40px rgba(28,26,21,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--brass-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--leather);
  outline: none;
}
.form-group input:invalid:not(:placeholder-shown) {
  border-color: #b03a2e;
}

.form__note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 16px;
  font-style: italic;
}

.form__success {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--cream-deep);
  border-left: 4px solid var(--leather);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

@media (max-width: 900px) {
  .reservation__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding-block: var(--section-pad); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: stretch;
}

.contact__list { margin-bottom: 28px; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 16px;
  border-bottom: 1px dashed var(--brass-light);
}
.contact-item__label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--leather);
}
.contact-item__value { font-weight: 700; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.8rem;
  transition: background-color .2s ease, color .2s ease;
}
.social-link:hover { background: var(--ink); color: var(--paper); }

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 20px 40px rgba(28,26,21,0.14);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(15%) sepia(8%) contrast(1.05);
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 56px;
}
.site-footer .nav__brand-text { color: var(--paper); }
.site-footer .nav__badge { background: var(--cream); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,235,216,0.15);
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass-light);
  margin-top: 10px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  color: rgba(245,235,216,0.8);
  transition: color .2s ease;
}
.footer__links a:hover { color: var(--brass-light); }
.footer__contact p {
  color: rgba(245,235,216,0.75);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer__bottom {
  padding-block: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245,235,216,0.6);
}

@media (max-width: 780px) {
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(28,26,21,0.3);
  z-index: 90;
  transition: background-color .2s ease, transform .2s ease;
}
.back-to-top:hover { background: var(--leather); transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }
