/* =========================================================================
   OTTOCENTO — Cocktails & Caffè · Cuneo
   File : css/styles.css
   Role : Full design system for the rebuilt single-page site.

   This stylesheet replicates the layout, component structure, spacing and
   responsive behaviour of the "Caffè Grande" template (/new) while keeping
   the ORIGINAL "800 Cocktails Bar" colour identity:
     - near-black charcoal background   (original #242021)
     - antique-gold accent              (original #846330)
   Two harmonious warm accents were added: a lighter champagne gold and a
   cream used for light text — same golden aesthetic, tuned for dark mode.
   ========================================================================= */

/* -------------------------------------------------------------------------
   FONTS
   - Frankfurt Classic (local)  → custom text-logo "Ottocento"
   - Playfair Display + Poppins  → same pair used by the /new template
   ------------------------------------------------------------------------- */
/* Google fonts (Playfair Display + Poppins) are loaded with <link> in the
   HTML — see <head>. Only the local brand font is declared here. */
@font-face {
  font-family: "Frankfurt Classic";
  src: url("../Resources/Fonts/FetteClassicUNZFraktur.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* surfaces — warm near-black charcoal (original #242021 family) */
  --bg-0: #171312; /* deepest page colour            */
  --bg-1: #1f1a19; /* default body background        */
  --bg-2: #282120; /* cards / accordion panels       */
  --bg-3: #2f2725; /* raised / hover surface         */

  /* gold family — original accent #846330 */
  --gold: #846330; /* primary brand gold  */
  --gold-2: #9d7740; /* deeper highlight    */
  --gold-3: #c1975c; /* main interactive    */
  --gold-4: #e0bd85; /* soft champagne gold */

  /* warm neutrals (text) */
  --ink: #efe2c8; /* primary text      */
  --ink-2: #d6c4a2; /* secondary text    */
  --ink-soft: #a89372; /* muted text        */
  --ink-deep: #f8efdc; /* headings          */
  --white: #fff;

  /* semantic aliases (kept for readability) */
  --rose: #c1975c;
  --rose-dark: #a37b44;

  /* fine hairlines & shadows */
  --line: rgba(219, 180, 122, 0.16);
  --line-soft: rgba(219, 180, 122, 0.09);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.35);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.55);
  --glow: 0 0 0 1px rgba(219, 180, 122, 0.18), 0 18px 44px rgba(0, 0, 0, 0.5);

  /* shape & layout */
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 76px;

  /* typography */
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
  --font-logo: "Frankfurt Classic", "Playfair Display", serif;
}

/* -------------------------------------------------------------------------
   RESET / BASE
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(
      1200px 600px at 50% -8%,
      rgba(132, 99, 48, 0.16),
      transparent 60%
    ),
    var(--bg-1);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink-deep);
  line-height: 1.15;
}

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.section {
  padding: clamp(32px, 4.5vw, 60px) 0;
  position: relative;
}
.section--soft {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
}

/* eyebrow + section heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin-bottom: 1rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  width: 26px;
  background: currentColor;
  opacity: 0.55;
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(34px, 5vw, 58px);
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
}
.sec-head p {
  color: var(--ink-2);
  margin-top: 0.8rem;
  font-size: 0.98rem;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}

/* =========================================================================
   HEADER / NAVBAR
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(23, 19, 18, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(20, 16, 15, 0.94);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* text brand "Ottocento" — Frankfurt Classic blackletter */
.brand {
  display: flex;
  align-items: center;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.32rem;
  line-height: 1;
}
.brand-text {
  font-family: var(--font-logo);
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  line-height: 1;
  color: var(--gold-4);
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.brand:hover .brand-text {
  color: var(--white);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}
.nav-link i {
  color: var(--gold-3);
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}
.nav-link:hover {
  background: rgba(193, 151, 92, 0.12);
  color: var(--gold-4);
}
.nav-link:hover i {
  transform: translateY(-1px);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  padding-left: 0.8rem;
  border-left: 1px solid var(--line);
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--ink-2);
  background: transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.social-btn:hover {
  background: rgba(193, 151, 92, 0.16);
  color: var(--gold-4);
  transform: translateY(-2px);
}

/* mobile hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
  font-size: 1.2rem;
  color: var(--gold-4);
  background: rgba(193, 151, 92, 0.12);
  border: 1px solid var(--line);
}
.nav-toggle .fa-xmark {
  display: none;
}
body.nav-open .nav-toggle .fa-bars {
  display: none;
}
body.nav-open .nav-toggle .fa-xmark {
  display: inline;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

/* cocktail-photo backdrop with a slow "Ken Burns" drift and a dark scrim */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(18, 14, 13, 0.5) 0%,
      rgba(18, 14, 13, 0.32) 42%,
      rgba(13, 10, 9, 0.86) 100%
    ),
    url("https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

/* vignette scrim — keeps the copy readable without hiding the photo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    120% 100% at 50% 42%,
    rgba(15, 11, 10, 0.28) 0%,
    rgba(15, 11, 10, 0.66) 100%
  );
}

/* faint giant blackletter watermark behind the copy */
.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  font-family: var(--font-logo);
  font-size: clamp(8rem, 30vw, 24rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193, 151, 92, 0.09);
  pointer-events: none;
  user-select: none;
}

.hero-content {
  padding: clamp(40px, 8vh, 90px) 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-4);
  background: rgba(23, 19, 18, 0.55);
  border: 1px solid rgba(219, 180, 122, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 600;
  color: var(--ink-deep);
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-4);
}

.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 600px;
  margin: 0 auto 2.2rem;
  color: rgba(239, 226, 200, 0.82);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 100%);
  color: #231a14;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(23, 19, 18, 0.35);
  color: var(--ink-deep);
  border: 1.5px solid rgba(219, 180, 122, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: var(--gold-4);
  color: #231a14;
  transform: translateY(-3px);
}

/* =========================================================================
   MENU / ACCORDION
   ========================================================================= */
.acc-list {
  display: grid;
  gap: 14px;
}

.acc-item {
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.acc-item.open {
  border-color: rgba(193, 151, 92, 0.4);
  box-shadow: var(--glow);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  text-align: left;
}

/* category icons — transparent gold-toned PNGs (Resources/icons/*.png):
   no white chip behind them, just a whisper of a warm tile */
.acc-icon {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(193, 151, 92, 0.08);
  border: 1px solid rgba(219, 180, 122, 0.2);
}
.acc-icon img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  display: block;
}

.acc-title {
  flex: 1;
  min-width: 0;
}
.acc-title h3 {
  font-size: 1.25rem;
}
.acc-title span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.acc-count {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-2);
  background: rgba(193, 151, 92, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.acc-chev {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(193, 151, 92, 0.16);
  color: var(--gold-4);
  font-size: 0.9rem;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
  flex: 0 0 auto;
}
.acc-item.open .acc-chev {
  transform: rotate(180deg);
  background: var(--gold-3);
  color: #231a14;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-panel-inner {
  padding: 0 1.3rem 1.5rem;
}

/* sub-group headings inside a panel (Whiskey / Piemonte / 800 Signature…) */
.acc-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin: 1.5rem 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.acc-subtitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.acc-panel .acc-subtitle:first-child {
  margin-top: 0.2rem;
}

/* standard single-price list */
.menu-list {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.2rem;
}
.menu-item {
  border-top: 1px dashed rgba(193, 151, 92, 0.16);
  padding-top: 0.8rem;
}
.menu-list .menu-item:first-child {
  border-top: none;
  padding-top: 0.2rem;
}
/* subgrouped lists already separate rows, so avoid double borders */
.acc-panel-inner > .acc-subtitle + .menu-list .menu-item:first-child,
.acc-panel-inner > .menu-list:first-child .menu-item:first-child {
  border-top: none;
  padding-top: 0.2rem;
}

.item-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.item-name {
  flex: 0 1 auto;
  min-width: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--ink-deep);
  overflow-wrap: break-word;
}
.leader {
  flex: 1 1 auto;
  min-width: 6px;
  border-bottom: 2px dotted rgba(193, 151, 92, 0.32);
}
.item-price {
  flex: 0 0 auto;
  font-weight: 600;
  color: var(--gold-3);
  white-space: nowrap;
}
.item-price--text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  white-space: nowrap;
}
.item-desc {
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .item-row {
    gap: 0.55rem;
  }
  .item-name {
    font-size: 0.9rem;
  }
  .item-price {
    font-size: 0.92rem;
  }
}

/* dual-price (al calice / bottiglia) — fixed columns so glass & bottle
   prices line up in two aligned columns down the whole sub-list */
.dual-head,
.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px 104px;
  column-gap: 0.7rem;
  align-items: baseline;
}
.dual-head {
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0.45rem;
}
.ph-note {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ph-lbl {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  line-height: 1.1;
}
.ph-lbl img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.price-row .dn {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
}
.price-row .pv {
  justify-self: end;
  font-weight: 600;
  color: var(--gold-3);
  white-space: nowrap;
}
.price-row .pv.is-na {
  color: var(--ink-soft);
  font-weight: 400;
}
@media (max-width: 420px) {
  .dual-head,
  .price-row {
    grid-template-columns: minmax(0, 1fr) 66px 74px;
    column-gap: 0.5rem;
  }
  .price-row .pv {
    font-size: 0.88rem;
  }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: #120f0e;
  color: rgba(239, 226, 200, 0.78);
  padding: clamp(50px, 7vw, 80px) 0 0;
  font-size: 0.92rem;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 54px);
}

.footer-brand .brand-text {
  font-size: clamp(2rem, 3vw, 2.6rem);
  display: inline-block;
  margin-bottom: 0.6rem;
}
.footer-brand p {
  color: rgba(239, 226, 200, 0.6);
  max-width: 34ch;
  font-size: 0.88rem;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.3rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(224, 189, 133, 0.08);
  border: 1px solid var(--line-soft);
  color: var(--gold-4);
  font-size: 0.95rem;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.footer-socials a:hover {
  background: var(--gold-3);
  color: #231a14;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin-bottom: 1.1rem;
}
.footer-col ul {
  display: grid;
  gap: 0.65rem;
}
.footer-col a {
  color: rgba(239, 226, 200, 0.72);
  transition: color 0.25s ease;
}
.footer-col a:hover {
  color: var(--gold-3);
}
.footer-col li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
}
.footer-col li i {
  color: var(--gold-3);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 189, 133, 0.12);
  padding: 1.3rem 0;
  font-size: 0.8rem;
  color: rgba(239, 226, 200, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
}
.footer-bottom a {
  color: var(--gold-3);
}

/* =========================================================================
   BACK TO TOP
   ========================================================================= */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  background: var(--bg-3);
  color: var(--gold-4);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s,
    background 0.25s ease,
    color 0.25s ease;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--gold-3);
  color: #231a14;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1050px) {
  .nav-link .nav-label {
    display: none;
  } /* keep icons only */
  .nav-links {
    gap: 0.1rem;
  }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: rgba(24, 19, 18, 0.98);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 1rem clamp(24px, 6vw, 48px) 1.5rem;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s;
  }
  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 0.85rem 0.6rem;
    font-size: 0.98rem;
  }
  .nav-link .nav-label {
    display: inline;
  } /* restore text in drawer */
  .nav-socials {
    margin: 1rem 0 0;
    padding: 1rem 0.6rem 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .social-btn {
    width: 44px;
    height: 44px;
    background: rgba(193, 151, 92, 0.1);
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  .hero-ctas {
    width: 100%;
  }
}
