/* ==========================================================================
   Actionofferzone — Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --coffee: #b38867;
  --latte: #ddbc95;
  --ceramic: #cdcdc0;
  --slate: #626d71;

  --charcoal: #242424;
  --offwhite: #faf8f5;
  --white: #ffffff;
  --text: #2e2e2e;
  --text-light: #595959;
  --bg-cream: #f7f5f2;
  --border: #e3e0db;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --transition: 0.25s ease;

  --header-height: 4.75rem;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--coffee);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: var(--charcoal);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.section-eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  max-width: 65ch;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: min(92%, 1280px);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-header.center .section-lead {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Skip link & focus
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--coffee);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--coffee);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid transparent;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
  text-decoration: none;
}

.btn {
  background-color: var(--coffee);
  color: var(--white);
}

.btn:hover {
  background-color: #9c704f;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--coffee);
  border-color: var(--coffee);
}

.btn-secondary:hover {
  background-color: var(--coffee);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-contacts {
  background: var(--charcoal);
  color: var(--offwhite);
  font-size: 0.8rem;
  padding: 0.35rem 0;
}

.header-contacts .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.header-contacts span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: 36px;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--coffee);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--coffee);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal);
  padding: 0.5rem;
}

.menu-toggle[aria-expanded="true"] .menu-icon-open,
.menu-toggle[aria-expanded="false"] .menu-icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-close,
.menu-toggle[aria-expanded="false"] .menu-icon-open {
  display: inline-block;
}

.menu-close {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.25rem;
  }

  .main-nav a {
    font-size: 1.25rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    padding: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(60vh, 70vh, 80vh);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2rem;
  color: var(--offwhite);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--latte);
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__trust svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero .hero__warning {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--latte);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--latte);
  background: rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero .hero__warning span:first-child {
  color: var(--white);
  font-size: 0.9rem;
}

.offline-notice {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--slate);
  border-radius: 0.5rem;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: var(--slate);
  background: var(--white);
}

.hero.hero--left {
  justify-content: flex-start;
  text-align: left;
}

.hero.hero--left .hero__actions,
.hero.hero--left .hero__trust {
  justify-content: flex-start;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  margin-bottom: 0.5rem;
}

.card__body p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  flex: 1;
}

/* --------------------------------------------------------------------------
   Grids
   -------------------------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.5rem;
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-asymmetric.reverse {
  grid-template-columns: 0.75fr 1.25fr;
}

@media (max-width: 768px) {
  .grid-asymmetric,
  .grid-asymmetric.reverse {
    grid-template-columns: 1fr;
  }
}

.grid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .grid-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --------------------------------------------------------------------------
   Split sections / Feature blocks
   -------------------------------------------------------------------------- */
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
}

.feature-list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--coffee);
}

/* --------------------------------------------------------------------------
   Benefits / icon blocks
   -------------------------------------------------------------------------- */
.benefit {
  text-align: center;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--coffee);
}

.benefit h3 {
  margin-bottom: 0.5rem;
}

.benefit p {
  color: var(--text-light);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stat-strip {
  background: var(--slate);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--latte);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--ceramic);
}

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--coffee);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: var(--offwhite);
  margin: 0;
  font-size: 1.1rem;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--coffee);
}

.cta-banner .btn:hover {
  background: var(--offwhite);
}

/* --------------------------------------------------------------------------
   Quote block
   -------------------------------------------------------------------------- */
.quote-block {
  background: var(--offwhite);
  border-left: 4px solid var(--coffee);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

label .required {
  color: var(--coffee);
  margin-left: 0.15rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(179, 136, 103, 0.15);
  outline: none;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #c0392b;
}

.error-msg {
  display: none;
  color: #c0392b;
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

.error-msg.is-visible {
  display: block;
}

.form-success {
  display: none;
  background: #eef7f0;
  border-left: 4px solid #2d8653;
  padding: 1.25rem;
  border-radius: var(--radius);
  color: #235c39;
}

.form-success.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(36, 36, 36, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(100%, 560px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .modal {
    animation: none;
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal__header h2 {
  font-size: 1.35rem;
}

.modal__close {
  background: none;
  border: none;
  color: var(--text-light);
  padding: 0.5rem;
  display: inline-flex;
  border-radius: var(--radius);
}

.modal__close:hover {
  background: var(--bg-cream);
}

.modal__body {
  padding: 1.5rem;
}

.modal__success {
  display: none;
  padding: 2rem;
  text-align: center;
}

.modal__success.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: var(--ceramic);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-contact li,
.footer-hours li,
.footer-legal li {
  margin-bottom: 0.65rem;
}

.footer-contact a,
.footer-legal a,
.social-list a,
.messaging-list a {
  color: var(--ceramic);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-legal a:hover,
.social-list a:hover,
.messaging-list a:hover {
  color: var(--latte);
  text-decoration: underline;
}

.social-list,
.messaging-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-list a,
.messaging-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.social-list svg,
.messaging-list svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--ceramic);
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal-page .section {
  background: var(--offwhite);
}

.legal-page .legal-document {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
  max-width: 850px;
  margin-inline: auto;
}

.legal-document h1 {
  margin-bottom: 0.5rem;
}

.legal-document h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.legal-document p,
.legal-document li {
  color: var(--text-light);
}

.legal-document ul,
.legal-document ol {
  margin-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-document li {
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  font-weight: 600;
  text-align: left;
}

.faq-item button[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform var(--transition);
  width: 1rem;
  height: 1rem;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-light);
}

.faq-answer.is-open {
  display: block;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.bg-cream {
  background: var(--bg-cream);
}
.bg-ceramic {
  background: var(--ceramic);
}
.text-center {
  text-align: center;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  flex: 1;
}

.cookie-banner__text a {
  color: var(--latte);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner__btn,
.cookie-banner__btn-secondary {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.cookie-banner__btn {
  background: var(--white);
  color: var(--coffee);
}

.cookie-banner__btn:hover {
  background: var(--offwhite);
  transform: translateY(-2px);
}

.cookie-banner__btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cookie-banner__btn-secondary:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
