/* Azores Coffee — warm chalkboard & morning light */

:root {
  /* Light surfaces */
  --parchment: #ebe3d6;
  --parchment-deep: #e0d6c8;
  --cream: #faf7f1;
  --cream-bright: #fffdf9;

  /* Warm dark surfaces (not black) */
  --chalkboard: #5a4e42;
  --chalkboard-light: #6e6256;
  --chalkboard-deep: #4a4038;

  /* Text */
  --espresso: #2e241c;
  --chalk: #faf6ee;
  --chalk-dim: #d9cfc0;
  --chalk-faded: #b8aa98;
  --ink: #3a322a;
  --ink-soft: #5c5248;
  --ink-muted: #7a6f63;

  /* Accents */
  --caramel: #d9a84c;
  --caramel-dark: #c08f35;
  --caramel-light: #edd08a;
  --sage: #7d9b7f;
  --sage-light: #b5cdb7;
  --rust: #b5644f;
  --ocean: #5a8a96;

  --shadow: rgba(46, 36, 28, 0.12);
  --shadow-deep: rgba(46, 36, 28, 0.22);
  --font-chalk: "Caveat", "Segoe Print", cursive;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(217, 168, 76, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 100%, rgba(125, 155, 127, 0.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rust);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--caramel-dark);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px var(--shadow);
  padding: 0.6rem 0;
}

.nav.scrolled .nav__logo {
  color: var(--espresso);
}

.nav.scrolled .nav__links a {
  color: var(--ink-soft);
}

.nav.scrolled .nav__links a:hover {
  color: var(--rust);
}

.nav.scrolled .nav__toggle {
  color: var(--espresso);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-chalk);
  font-size: 1.75rem;
  color: var(--cream-bright);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(46, 36, 28, 0.35);
}

.nav__logo span {
  color: var(--caramel);
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 253, 249, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__links a:hover {
  color: var(--caramel-light);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--chalk);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(146, 74, 3, 0.558) 45%,
      rgba(180, 239, 173, 0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-chalk);
  font-size: 1.25rem;
  color: var(--espresso);
  background: rgba(255, 253, 249, 0.82);
  border: 1px dashed var(--caramel);
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream-bright);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 24px rgba(46, 36, 28, 0.4);
}

.hero__title em {
  font-style: italic;
  color: var(--caramel-light);
}

.hero__subtitle {
  font-family: var(--font-chalk);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
  text-shadow: 0 1px 16px rgba(46, 36, 28, 0.35);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  color: var(--cream);
  text-shadow: 0 1px 10px rgba(46, 36, 28, 0.3);
}

.hero__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
}

.btn--primary {
  background: var(--caramel);
  color: var(--espresso);
}

.btn--primary:hover {
  background: var(--caramel-light);
  color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 168, 76, 0.35);
}

.btn--outline {
  background: rgba(255, 253, 249, 0.15);
  color: var(--cream-bright);
  border: 1px solid rgba(255, 253, 249, 0.55);
}

.btn--outline:hover {
  border-color: var(--cream-bright);
  background: rgba(255, 253, 249, 0.28);
  color: var(--cream-bright);
  transform: translateY(-2px);
}

.section--cream .btn--outline,
.instagram .btn--outline,
.visit__links .btn--outline {
  background: transparent;
  color: var(--rust);
  border-color: var(--rust);
}

.section--cream .btn--outline:hover,
.instagram .btn--outline:hover,
.visit__links .btn--outline:hover {
  background: var(--rust);
  color: var(--cream-bright);
  border-color: var(--rust);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-chalk);
  font-size: 1rem;
  color: var(--cream);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── Section shared ── */
.section {
  padding: 6rem 0;
  position: relative;
}

.section--cream {
  background: var(--cream-bright);
  color: var(--espresso);
}

.section--cream a {
  color: var(--rust);
}

.section--cream a:hover {
  color: var(--caramel-dark);
}

.section--warm {
  background: var(--parchment-deep);
  color: var(--ink);
}

.section__label {
  font-family: var(--font-chalk);
  font-size: 1.3rem;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.section--cream .section__label {
  color: var(--rust);
}

.section--dark .section__label {
  color: var(--caramel-light);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: var(--espresso);
}

.section--dark .section__title {
  color: var(--chalk);
}

.section__intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 3rem;
}

.section--cream .section__intro {
  color: var(--ink-soft);
}

.section--dark .section__intro {
  color: var(--chalk-dim);
}

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}

.about__image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--caramel);
  border-radius: 4px;
  transform: rotate(2deg);
  z-index: 1;
  pointer-events: none;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__text p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.about__text__marker {
  color: var(--espresso);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  padding: 0 0.15em;
  background-image: linear-gradient(102deg,
      transparent 0,
      transparent 0.32em,
      rgba(237, 208, 138, 0.15) 0.36em,
      rgba(237, 208, 138, 0.62) 0.42em,
      rgba(237, 208, 138, 0.58) 1.05em,
      rgba(237, 208, 138, 0.12) 1.1em,
      transparent 1.14em,
      transparent 1.75em);
  background-size: 100% 1.75em;
  background-repeat: repeat-y;
  background-position: 0 0;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.highlight {
  background: var(--cream-bright);
  border: 1px dashed var(--caramel-light);
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 16px var(--shadow);
}

.highlight__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--caramel-dark);
}

.highlight__text {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

/* ── Chalkboard Menu ── */
.menu-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(217, 168, 76, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(125, 155, 127, 0.12) 0%, transparent 40%),
    var(--chalkboard);
  color: var(--chalk);
}

.menu-section .section__title {
  color: var(--chalk);
}

.menu-section .section__label {
  color: var(--caramel-light);
}

.menu-section .section__intro {
  color: var(--chalk-dim);
}

.menu-boards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.chalkboard {
  background: var(--chalkboard-light);
  border: 2px solid rgba(255, 253, 249, 0.12);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.12),
    0 12px 32px var(--shadow-deep);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s;
}

.chalkboard:hover {
  transform: rotate(0deg) scale(1.02);
}

.chalkboard:nth-child(1) {
  --tilt: -1.5deg;
}

.chalkboard:nth-child(2) {
  --tilt: 0.8deg;
}

.chalkboard:nth-child(3) {
  --tilt: -0.5deg;
}

.chalkboard::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 14px;
  background: linear-gradient(180deg, var(--caramel), var(--caramel-dark));
  border-radius: 2px 2px 0 0;
}

.chalkboard__header {
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--chalk-faded);
}

.chalkboard__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.chalkboard__title {
  font-family: var(--font-chalk);
  font-size: 2rem;
  color: var(--chalk);
  line-height: 1.1;
}

.chalkboard__subtitle {
  font-family: var(--font-chalk);
  font-size: 1rem;
  color: var(--chalk-faded);
  margin-top: 0.25rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px dotted rgba(201, 191, 176, 0.15);
  gap: 1rem;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__name {
  font-family: var(--font-chalk);
  font-size: 1.35rem;
  color: var(--chalk);
  flex: 1;
}

.menu-item__desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--chalk-faded);
  margin-top: 0.1rem;
}

.menu-item__price {
  font-family: var(--font-chalk);
  font-size: 1.25rem;
  color: var(--caramel-light);
  white-space: nowrap;
}

.menu-item--star .menu-item__name::after {
  content: " ★";
  color: var(--caramel-light);
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-chalk);
  font-size: 1.1rem;
  color: var(--chalk-faded);
}

/* ── Drinks showcase ── */
.drinks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.drink-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}

.drink-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.drink-card:hover img {
  transform: scale(1.08);
}

.drink-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(74, 64, 56, 0.75));
  font-family: var(--font-chalk);
  font-size: 1.4rem;
  color: var(--chalk);
  text-align: center;
}

/* ── Gallery ── */
#waffle {
  object-position: bottom;
}

#lagoa-fogo {
  object-position: center;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.gallery__item {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(2) {
  grid-column: 5 / 9;
}

.gallery__item:nth-child(3) {
  grid-column: 9 / 13;
}

.gallery__item:nth-child(4) {
  grid-column: 5 / 8;
}

.gallery__item:nth-child(5) {
  grid-column: 8 / 13;
}

.gallery__caption {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-chalk);
  font-size: 1rem;
  color: var(--chalk);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* ── Reviews ── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#reviews {
  background: var(--parchment-deep);
}

#reviews .section__label {
  color: var(--rust);
}

#reviews .section__title {
  color: var(--espresso);
}

.review {
  background: var(--cream-bright);
  border: 1px dashed var(--sage-light);
  padding: 2rem;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 6px 20px var(--shadow);
}

.review::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--caramel);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.review__stars {
  color: var(--caramel);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.15em;
}

.review__text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.review__author {
  font-family: var(--font-chalk);
  font-size: 1.1rem;
  color: var(--ink-muted);
}

.rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.rating-banner__score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--caramel);
}

.rating-banner__detail {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.rating-banner__detail strong {
  display: block;
  font-family: var(--font-chalk);
  font-size: 1.3rem;
  color: var(--espresso);
}

/* ── Visit ── */
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.visit__info h3 {
  font-family: var(--font-chalk);
  font-size: 1.5rem;
  color: var(--rust);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.visit__info h3:first-child {
  margin-top: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #5a5048;
  border-bottom: 1px dotted #d4ccc0;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--espresso);
}

.hours-table tr.closed td {
  color: #a09890;
}

.hours-table tr.closed td:last-child {
  text-decoration: line-through;
}

.visit__address {
  font-size: 1.05rem;
  color: #5a5048;
  line-height: 1.7;
}

.visit__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.visit__map {
  aspect-ratio: 2/3;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Instagram ── */
.instagram {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(217, 168, 76, 0.12), rgba(181, 205, 183, 0.18)),
    var(--cream);
}

.instagram__handle {
  font-family: var(--font-chalk);
  font-size: 2.5rem;
  color: var(--espresso);
  margin-bottom: 1rem;
}

.instagram__handle a {
  color: var(--rust);
}

.instagram__handle a:hover {
  color: var(--caramel-dark);
}

.instagram__text {
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ── Footer ── */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px dashed var(--caramel-light);
  text-align: center;
  background: var(--chalkboard-deep);
  color: var(--chalk-dim);
}

.footer a {
  color: var(--caramel-light);
}

.footer a:hover {
  color: var(--cream-bright);
}

.footer__logo {
  font-family: var(--font-chalk);
  font-size: 1.5rem;
  color: var(--chalk);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-chalk);
  font-size: 1rem;
  color: var(--chalk-faded);
  margin-bottom: 1.5rem;
}

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

.footer__links a {
  font-size: 0.85rem;
  color: var(--chalk-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--chalk-faded);
  opacity: 0.6;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .menu-boards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .drinks {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 247, 241, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px dashed var(--chalk-faded);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links.open a {
    color: var(--ink-soft);
    text-shadow: none;
  }

  .nav__toggle {
    display: block;
  }

  .about__grid,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .drinks {
    grid-template-columns: 1fr 1fr;
  }

  .hero__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  inset: auto 0 0;
  padding: 1rem 1.25rem;
  background: var(--chalkboard-deep);
  color: var(--chalk-dim);
  box-shadow: 0 -8px 32px var(--shadow-deep);
  border-top: 1px solid rgb(255 255 255 / 0.08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  width: min(76rem, 100%);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-banner__text {
  flex: 1 1 16rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--chalk-dim);
}

.cookie-banner__text strong {
  color: var(--chalk);
  font-weight: 600;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__accept {
  cursor: pointer;
  border: 0;
}

.map-placeholder {
  display: grid;
  place-content: center;
  gap: 1rem;
  height: 100%;
  min-height: 280px;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--cream);
  border: 2px dashed var(--chalk-faded);
  border-radius: 0.5rem;
}

.map-placeholder[hidden] {
  display: none;
}

.map-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 28ch;
}

.map-placeholder__btn {
  cursor: pointer;
  border: 0;
  justify-self: center;
}

.map-placeholder__link {
  font-size: 0.85rem;
  color: var(--rust);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner__accept {
    width: 100%;
  }
}
