/* ============================================================
   STUDIO TECNICO D'ANIELLO — Tema Material Design 3 custom
   Palette derivata dal logo: verde #0D2020 · oro #C9A876 · avorio #E9E2DA
   ============================================================ */

:root {
  /* ---- Color scheme MD3 (theming custom) ---- */
  --md-sys-color-primary: #14443A;
  --md-sys-color-on-primary: #F2EDE3;
  --md-sys-color-primary-container: #DCE8E1;
  --md-sys-color-on-primary-container: #0D2020;

  --md-sys-color-secondary: #A98C58;          /* oro/ottone */
  --md-sys-color-on-secondary: #0D2020;
  --md-sys-color-secondary-container: #EFE5CF;
  --md-sys-color-on-secondary-container: #4A3D21;

  --md-sys-color-surface: #F7F3EA;             /* avorio */
  --md-sys-color-surface-bright: #FCFAF4;
  --md-sys-color-surface-container: #F0EADC;
  --md-sys-color-surface-container-high: #E9E2D2;
  --md-sys-color-on-surface: #1C2A26;
  --md-sys-color-on-surface-variant: #54625B;
  --md-sys-color-outline: #8A958E;
  --md-sys-color-outline-variant: #DAD3C2;

  /* superfici scure (hero, footer) — allineate al PNG del logo */
  --md-sys-color-surface-dark: #0D2020;
  --md-sys-color-surface-dark-high: #13302C;
  --md-sys-color-on-surface-dark: #E9E2DA;
  --md-sys-color-on-surface-dark-variant: #A9B8B0;
  --md-sys-color-outline-dark: #2A4540;

  --gold: #C9A876;
  --gold-bright: #DCBF92;
  --gold-dim: #8F7B53;

  /* ---- Tipografia ---- */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Avenir Next", system-ui, sans-serif;

  /* ---- Forma (raggi contenuti) ---- */
  --shape-xs: 4px;
  --shape-sm: 8px;
  --shape-md: 12px;
  --shape-lg: 16px;

  /* ---- Elevazione MD3 (ombre sobrie) ---- */
  --elev-1: 0 1px 2px rgba(13,32,32,.10), 0 1px 3px 1px rgba(13,32,32,.06);
  --elev-2: 0 1px 2px rgba(13,32,32,.12), 0 2px 6px 2px rgba(13,32,32,.08);
  --elev-3: 0 4px 8px 3px rgba(13,32,32,.10), 0 1px 3px rgba(13,32,32,.14);

  --easing: cubic-bezier(.2, 0, 0, 1);   /* md.sys.motion emphasized */
  --dur: 240ms;
}

/* ============ Tema scuro ============ */
[data-theme="dark"] {
  --md-sys-color-primary: #8FCFC0;
  --md-sys-color-on-primary: #0D2020;
  --md-sys-color-primary-container: #1E3933;
  --md-sys-color-on-primary-container: #DCE8E1;

  --md-sys-color-secondary: #D8C49A;
  --md-sys-color-on-secondary: #0D2020;
  --md-sys-color-secondary-container: #4A3D21;
  --md-sys-color-on-secondary-container: #EFE5CF;

  --md-sys-color-surface: #10201C;
  --md-sys-color-surface-bright: #18302A;
  --md-sys-color-surface-container: #15211D;
  --md-sys-color-surface-container-high: #1C2D27;
  --md-sys-color-on-surface: #E9E2DA;
  --md-sys-color-on-surface-variant: #B7C4BD;
  --md-sys-color-outline: #4C5F58;
  --md-sys-color-outline-variant: #2E433C;

  --gold-bright: #E2C99B;
  --gold-dim: #B49A6C;
}
[data-theme="dark"] body { background: var(--md-sys-color-surface); }

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--md-sys-color-surface);
  color: var(--md-sys-color-on-surface);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0 0 1em 0; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ============ Scala tipografica MD3 personalizzata ============ */
.display-lg, .display-md, .headline-lg, .headline-md, .headline-sm {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.display-lg { font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.08; letter-spacing: -.01em; }
.display-md { font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1.12; }
.headline-lg { font-size: clamp(1.8rem, 3.2vw, 2.4rem); line-height: 1.18; }
.headline-md { font-size: clamp(1.45rem, 2.4vw, 1.8rem); line-height: 1.25; }
.headline-sm { font-size: 1.3rem; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px 0;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); flex: none; }
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold); }

.body-lg { font-size: 1.18rem; line-height: 1.6; font-weight: 300; }
.muted { color: var(--md-sys-color-on-surface-variant); }
.on-dark .muted { color: var(--md-sys-color-on-surface-dark-variant); }

/* ============ Layout ============ */
.wrap { width: min(1140px, 100% - 48px); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 112px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.on-dark { background: var(--md-sys-color-surface-dark); color: var(--md-sys-color-on-surface-dark); }
.surface-alt { background: var(--md-sys-color-surface-container); }

/* ============ Pulsanti MD3 (shape custom 8px) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--shape-sm);
  border: none;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--easing), background-color var(--dur) var(--easing), color var(--dur) var(--easing);
}
.btn::after { /* state layer MD3 */
  content: ""; position: absolute; inset: 0; background: currentColor; opacity: 0;
  transition: opacity 160ms var(--easing);
}
.btn:hover::after { opacity: .08; }
.btn:active::after { opacity: .14; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn-filled { background: var(--md-sys-color-primary); color: var(--md-sys-color-on-primary); }
.btn-filled:hover { box-shadow: var(--elev-1); }
.btn-gold { background: var(--gold); color: #0D2020; }
.btn-gold:hover { box-shadow: var(--elev-1); }
.btn-outlined { background: transparent; color: var(--md-sys-color-primary); box-shadow: inset 0 0 0 1px var(--md-sys-color-outline); }
.on-dark .btn-outlined { color: var(--md-sys-color-on-surface-dark); box-shadow: inset 0 0 0 1px var(--gold-dim); }
.btn-text { background: transparent; color: var(--md-sys-color-primary); padding: 0 12px; min-height: 42px; }
.on-dark .btn-text { color: var(--gold-bright); }
.btn .arrow { font-family: var(--font-display); font-size: 1.25em; line-height: 1; transform: translateY(-1px); }

/* ============ Top app bar ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 32, 32, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--md-sys-color-on-surface-dark);
  border-bottom: 1px solid var(--md-sys-color-outline-dark);
}
.topbar-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; flex: none; }
.brand-mark {
  width: 44px; height: 44px; flex: none;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 500; font-size: 1.18rem;
  color: var(--md-sys-color-on-surface-dark);
  letter-spacing: .02em;
}
.brand-name {
  font-family: var(--font-sans); font-size: .82rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase; line-height: 1.4;
}
.topnav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.topnav a {
  text-decoration: none; font-size: .85rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 14px; border-radius: var(--shape-sm);
  color: var(--md-sys-color-on-surface-dark-variant);
  transition: color var(--dur) var(--easing), background-color var(--dur) var(--easing);
}
.topnav a:hover { color: var(--md-sys-color-on-surface-dark); background: rgba(233,226,218,.06); }
.topnav a[aria-current="page"] { color: var(--gold-bright); }
.topbar .btn { min-height: 42px; padding: 0 20px; font-size: .8rem; }
.menu-btn {
  display: none; margin-left: auto;
  background: none; border: none; color: var(--md-sys-color-on-surface-dark);
  width: 48px; height: 48px; cursor: pointer; border-radius: var(--shape-sm);
}
.menu-btn svg { width: 26px; height: 26px; }

/* ============ Selettore lingua + tema ============ */
.topbar-tools { display: flex; align-items: center; gap: 8px; flex: none; }
.lang-switch {
  appearance: none; -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--md-sys-color-outline-dark);
  color: var(--md-sys-color-on-surface-dark);
  border-radius: var(--shape-sm);
  font-family: var(--font-sans); font-size: .78rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  height: 44px; padding: 0 30px 0 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A9B8B0' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; background-size: 16px;
}
.lang-switch:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lang-switch option { background: var(--md-sys-color-surface-dark); color: var(--md-sys-color-on-surface-dark); }
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  border: 1px solid var(--md-sys-color-outline-dark);
  background: none; color: var(--md-sys-color-on-surface-dark);
  border-radius: var(--shape-sm); cursor: pointer;
}
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
.drawer-tools { display: flex; gap: 10px; margin: 18px 0; }
.drawer-tools .lang-switch, .drawer-tools .theme-toggle { flex: 1; }
.drawer-tools .lang-switch { flex: 2; }

/* ---- Navigation drawer (mobile) ---- */
.drawer-scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(13,32,32,.5);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--easing);
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61;
  width: min(320px, 85vw);
  background: var(--md-sys-color-surface-dark);
  color: var(--md-sys-color-on-surface-dark);
  border-left: 1px solid var(--md-sys-color-outline-dark);
  transform: translateX(100%);
  transition: transform var(--dur) var(--easing);
  display: flex; flex-direction: column;
  padding: 24px;
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-scrim { opacity: 1; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a {
  text-decoration: none; padding: 14px 16px; border-radius: var(--shape-sm);
  font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 400;
  color: var(--md-sys-color-on-surface-dark-variant);
}
.drawer nav a:hover { background: rgba(233,226,218,.06); color: var(--md-sys-color-on-surface-dark); }
.drawer nav a[aria-current="page"] { color: var(--gold-bright); background: rgba(201,168,118,.08); }
.drawer .btn { margin-top: auto; }

/* ============ Card MD3 ============ */
.card {
  background: var(--md-sys-color-surface-bright);
  border: 1px solid var(--md-sys-color-outline-variant);
  border-radius: var(--shape-md);
  padding: 30px 28px;
  transition: box-shadow var(--dur) var(--easing), transform var(--dur) var(--easing), border-color var(--dur) var(--easing);
}
a.card { text-decoration: none; display: block; }
a.card:hover { box-shadow: var(--elev-2); transform: translateY(-3px); border-color: var(--gold); }
.card .headline-sm { margin-bottom: 8px; }
.card-link-hint {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: .78rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dim);
}
.on-dark .card {
  background: var(--md-sys-color-surface-dark-high);
  border-color: var(--md-sys-color-outline-dark);
}

/* ============ Chips MD3 ============ */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 34px; padding: 0 16px;
  border-radius: var(--shape-sm);
  border: 1px solid var(--md-sys-color-outline-variant);
  background: var(--md-sys-color-surface-bright);
  font-size: .82rem; font-weight: 400; letter-spacing: .06em;
  color: var(--md-sys-color-on-surface-variant);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============ Text field MD3 (outlined) ============ */
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 300;
  color: var(--md-sys-color-on-surface);
  background: var(--md-sys-color-surface-bright);
  border: 1px solid var(--md-sys-color-outline);
  border-radius: var(--shape-sm);
  padding: 24px 16px 10px 16px;
  transition: border-color var(--dur) var(--easing), box-shadow var(--dur) var(--easing);
}
.field textarea { min-height: 140px; resize: vertical; }
.field label {
  position: absolute; left: 16px; top: 17px;
  font-size: 1rem; color: var(--md-sys-color-on-surface-variant);
  pointer-events: none;
  transition: all 160ms var(--easing);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 1px var(--md-sys-color-primary);
}
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label {
  top: 8px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--md-sys-color-primary);
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }

/* ============ Step del metodo ============ */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.step:last-child { border-bottom: none; }
.on-dark .step { border-color: var(--md-sys-color-outline-dark); }
.step-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  line-height: 1; color: var(--gold);
}
.step h3 { margin: 4px 0 6px 0; font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; }

/* ============ Placeholder punti di integrazione ============ */
.integration {
  border: 1.5px dashed var(--gold);
  border-radius: var(--shape-md);
  background: rgba(201,168,118,.06);
  padding: 40px 28px;
  text-align: center;
  display: grid; gap: 10px; justify-items: center;
}
.integration .tag {
  font-size: .7rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--gold);
  padding: 5px 14px; border-radius: var(--shape-xs);
}
.on-dark .integration .tag { color: var(--gold-bright); }
.integration p { max-width: 46ch; margin: 0; font-size: .95rem; color: var(--md-sys-color-on-surface-variant); }
.on-dark .integration p { color: var(--md-sys-color-on-surface-dark-variant); }

/* ============ FAQ accordion ============ */
.faq-item {
  border-bottom: 1px solid var(--md-sys-color-outline-variant);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-display); font-size: 1.6rem; color: var(--gold);
  flex: none; transition: transform var(--dur) var(--easing);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 4px 26px 4px; max-width: 68ch; color: var(--md-sys-color-on-surface-variant); }

/* ============ Footer ============ */
.footer {
  background: var(--md-sys-color-surface-dark);
  color: var(--md-sys-color-on-surface-dark-variant);
  padding: clamp(48px, 7vw, 80px) 0 36px 0;
  font-size: .92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--md-sys-color-outline-dark);
}
.footer h4 {
  margin: 0 0 16px 0;
  font-size: .74rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: inherit; text-decoration: none; transition: color var(--dur) var(--easing); }
.footer a:hover { color: var(--md-sys-color-on-surface-dark); }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
  padding-top: 28px; font-size: .82rem;
}
.footer-legal .spacer { flex: 1; }

/* ============ Hero ============ */
.hero {
  background: var(--md-sys-color-surface-dark);
  color: var(--md-sys-color-on-surface-dark);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(40px, 5.5vw, 80px);
}
.hero-logo { width: min(360px, 70vw); margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* mini-hero per pagine interne */
.page-hero { background: var(--md-sys-color-surface-dark); color: var(--md-sys-color-on-surface-dark); }
.page-hero .wrap { padding-block: clamp(56px, 7vw, 88px); }
.page-hero p { max-width: 64ch; }

/* ============ Griglie ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }

/* ============ Divider oro ============ */
.gold-rule { width: 64px; height: 2px; background: var(--gold); border: none; margin: 0; }

/* ============ Responsive ============ */
@media (max-width: 920px) {
  .topnav, .topbar .btn-cta-desktop { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero-logo { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-tools .lang-switch { display: none; }
  .topbar-tools .theme-toggle { display: none; }

  /* === Mobile accordion: Come lavoriamo (steps) === */
  .acc-method .step { cursor: pointer; user-select: none; }
  .acc-method .step p.muted { display: none; }
  .acc-method .step.m-open p.muted { display: block; }
  .acc-method .step h3::after { content: " \25BE"; color: var(--gold); font-size: .8em; margin-left: 6px; }
  .acc-method .step.m-open h3::after { content: " \25B4"; }

  /* === Mobile accordion: Perche noi (cards) === */
  .acc-why .card { cursor: pointer; user-select: none; }
  .acc-why .card p.muted { display: none; }
  .acc-why .card.m-open p.muted { display: block; }
  .acc-why .card h3::after { content: " \25BE"; color: var(--gold); font-size: .8em; margin-left: 6px; }
  .acc-why .card.m-open h3::after { content: " \25B4"; }

  /* === Mobile: Servizi cards (solo titolo, espandibili) === */
  .acc-services .card { cursor: pointer; user-select: none; }
  .acc-services .card p.muted,
  .acc-services .card .card-link-hint { display: none; }
  .acc-services .card.m-open p.muted,
  .acc-services .card.m-open .card-link-hint { display: block; }
  .acc-services .card h3::after { content: " \25BE"; color: var(--gold); font-size: .8em; margin-left: 6px; }
  .acc-services .card.m-open h3::after { content: " \25B4"; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { width: min(1140px, 100% - 36px); }
  .topbar-inner { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .brand-name { font-size: .72rem; letter-spacing: .18em; }
  .hero-actions .btn { width: 100%; }
  .calendly-inline-widget { min-width: 0 !important; height: 580px !important; }
  #map { height: 320px !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Cookie consent banner ── */
#cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--md-sys-color-surface-dark);
  color: var(--md-sys-color-on-surface-dark);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.35);
  transform: translateY(0);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 1;
}
#cookie-bar.cookie-bar--hidden { transform: translateY(100%); opacity: 0; }
.cookie-bar__text {
  flex: 1 1 320px;
  margin: 0;
  font-size: .85rem;
  line-height: 1.6;
  color: rgba(233,226,218,.85);
}
.cookie-bar__link {
  color: var(--gold-bright);
  text-underline-offset: 3px;
}
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-bar__btn {
  padding: 9px 20px;
  font-size: .82rem;
  letter-spacing: .06em;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-bar__btn--gold {
  background: var(--gold-bright);
  color: var(--md-sys-color-surface-dark);
  border: none;
}
.cookie-bar__btn--outline {
  background: transparent;
  color: var(--md-sys-color-on-surface-dark);
  border: 1px solid rgba(233,226,218,.4);
}
.cookie-bar__btn:hover { opacity: .85; }
@media (max-width: 560px) {
  #cookie-bar { flex-direction: column; align-items: stretch; padding: 18px 16px; }
  .cookie-bar__actions { flex-direction: column; }
  .cookie-bar__btn { text-align: center; }
}
