@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --gold: #d9a441;
  --gold-dark: #b8892f;
  --black: #121212;
  --black-soft: #1a1a1a;
  --cream: #fcffff;
  --white: #ffffff;
  --text: #2b2b2b;
  --muted: #666666;
  --border: #e4e4e4;
  --shadow: 0 14px 35px rgba(0,0,0,.12);
  --green: #25a94a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
}

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

a {
  color: inherit;
}

.bg-chalk {
  background: #fcffff;
}

/* HEADER */

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 24px 0;
}

.topbar__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  transition: .2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 9px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.chip--phone {
  background: var(--gold);
  color: #111;
}

.chip--phone:hover {
  background: var(--gold-dark);
}

/* COMMON */

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 58px auto;
}

.center {
  text-align: center;
}

.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 0 0 36px;
  color: var(--black);
}

.section__title span {
  color: var(--gold);
}

.section__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 999px;
}

.section__title--light {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 9px;
  background: var(--gold);
  color: #111;
  border: 2px solid var(--gold);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--ghost {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

.btn--outline-red {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-red:hover {
  background: var(--gold);
  color: #111;
}

.btn--whatsapp {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1f913e;
  border-color: #1f913e;
  color: #fff;
}

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--black);
}

.btn--light:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: var(--black);
}

/* HERO */

.hero {
  min-height: 640px;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 150px max(40px, calc((100vw - 1180px) / 2)) 90px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.78) 38%, rgba(0,0,0,.18) 100%),
    url("assets/hero-pizza.png") center right / cover no-repeat;
}

.hero__copy {
  max-width: 610px;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 104px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 520px;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 22px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

.hero__location {
  margin-top: 22px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__location strong {
  color: var(--gold);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* PERCHÉ SCEGLIERE */

.section-why {
  background: #fff;
  width: 100%;
  margin: 0;
  padding: 58px max(40px, calc((100vw - 1120px) / 2));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  text-align: center;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}

.why-item:last-child {
  border-right: 0;
}

.why-item img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: sepia(1) saturate(2.1) hue-rotate(350deg) brightness(.95);
}

.why-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 0 0 12px;
  color: var(--black);
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

/* LE PIÙ AMATE */

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.pizza-card {
  position: relative;
  min-height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.pizza-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: .25s ease;
}

.pizza-card:hover img {
  transform: scale(1.05);
}

.pizza-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.18) 65%);
}

.pizza-card > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.pizza-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.pizza-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

/* OFFERTA */

.offer {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.9)),
    #111;
  box-shadow: var(--shadow);
}

.offer__pizza {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 230px;
  opacity: .95;
  pointer-events: none;
}

.offer__pizza--left {
  left: -72px;
  background: url("assets/pizza1.png") center / contain no-repeat;
}

.offer__pizza--right {
  right: -72px;
  background: url("assets/pizza2.png") center / contain no-repeat;
}

.offer__content {
  position: relative;
  z-index: 2;
  min-height: 185px;
  padding: 34px 115px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
}

.offer__side {
  display: flex;
  align-items: center;
  gap: 22px;
}

.offer__side img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: sepia(1) saturate(2.1) hue-rotate(350deg) brightness(.95);
}

.offer h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin: 0 0 16px;
}

.offer h2 span,
.offer h3 {
  color: var(--gold);
}

.offer h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin: 0 0 10px;
}

.offer p {
  margin: 6px 0;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  color: #111;
  border-radius: 6px;
}

.offer__divider {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

/* WHATSAPP ORDER */

.whatsapp-order {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 38px 48px 20px 300px;
  min-height: 185px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: visible;
  margin-top: 112px;
}

.whatsapp-order__image {
  position: absolute;
  left: 8px;
  top: -95px;
  z-index: 3;
  pointer-events: none;
}

.whatsapp-order__image img {
  height: 280px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.25));
}

.whatsapp-order h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  line-height: .95;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--black);
}

.whatsapp-order h2 span {
  color: var(--gold);
}

.whatsapp-order p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.whatsapp-order__button {
  display: flex;
  justify-content: flex-end;
}

/* CHI SIAMO */

.about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}

.about__image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about__text span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.about__text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .95;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--black);
}

.about__text p {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
  margin: 0 0 14px;
}

.about__text .btn {
  margin-top: 14px;
}

/* RECENSIONI */

.reviews {
  background:
    linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.9)),
    url("assets/hero-pizza.png") center / cover no-repeat;
  padding: 62px 0;
  margin-top: 70px;
}

.reviews .section {
  margin-top: 0;
  margin-bottom: 0;
}

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

.review-card {
  background: #fff;
  color: var(--black);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  margin: 0 0 14px;
  line-height: 1.5;
  font-weight: 700;
}

.review-card strong {
  color: var(--muted);
}

/* MENU PAGE */

.container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.menu-head.card {
  width: 100%;
  min-height: 360px;
  margin: 0 0 70px;
  padding: 150px 24px 70px;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.72)),
    url("assets/hero-pizza.png") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.menu-head h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 96px);
  line-height: .9;
  margin: 0 0 28px;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.menu-head h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 999px;
}

.menu-tools {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.search {
  position: relative;
  display: block;
  margin: 0 auto 22px;
}

.search input {
  width: 100%;
  height: 58px;
  border-radius: 999px;
  border: 2px solid rgba(217,164,65,.65);
  background: #fff;
  padding: 0 24px 0 52px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  outline: none;
}

.search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,164,65,.18);
}

.search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 22px;
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 2px solid rgba(217,164,65,.75);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  transition: .2s ease;
}

.tab.is-active,
.tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.menu-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.menu-grid--center {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.menu-block {
  background: #fff;
  color: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-block h3 {
  margin: 0;
  padding: 18px 20px 14px;
  background: var(--gold);
  color: #111;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 18px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(217,164,65,.75);
}

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

.menu-item__thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(217,164,65,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item__thumb img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: cover;
}

.menu-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-item__name {
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111;
}

.menu-item__price {
  white-space: nowrap;
  font-style: italic;
  font-weight: 700;
  color: #111;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.menu-desc {
  margin: 0 0 8px 74px;
  font-size: 0.92rem;
  line-height: 1.35;
  opacity: 1;
  color: #666;
}

.menu-desc--no-thumb {
  margin-left: 0;
}

.subhead {
  margin: 16px 20px 8px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.note {
  margin: 0 20px 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(217,164,65,.10);
  border: 1px solid rgba(217,164,65,.45);
  color: #111;
}

.note strong {
  color: var(--gold-dark);
}

.note .muted {
  color: #111;
}

/* FOOTER INFO */

.footer-info {
  background: #fcffff;
  padding: 52px 0 38px;
}

.footer-info__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr;
  gap: 0;
  align-items: stretch;
}

.info-box {
  padding: 0 28px;
  border-right: 1px solid var(--border);
  font-family: 'Inter', Arial, sans-serif;
}

.info-box:first-child {
  padding-left: 0;
}

.info-box:last-child {
  padding-right: 0;
  border-right: 0;
}

.info-box h3 {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: .2px;
}

.info-box p {
  margin: 0 0 14px;
  color: #5e5e5e;
  line-height: 1.55;
  font-size: 14px;
  font-weight: 600;
}

.info-box strong {
  font-weight: 800;
  color: #4f4f4f;
}

.info-box a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.map-box {
  padding-left: 28px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 210px;
  border: 0;
  display: block;
  border-radius: 14px;
}

/* CTA FINALE */

.final-cta {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: linear-gradient(90deg, #111, #1d1d1d);
  color: #fff;
  padding: 18px 0;
  border-top: 1px solid rgba(217,164,65,.35);
}

.final-cta__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 18px;
}

.final-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: .7px;
  line-height: .95;
  text-transform: uppercase;
  color: var(--gold);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

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

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

  .why-item:nth-child(2) {
    border-right: 0;
  }

  .why-item:nth-child(1),
  .why-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .footer-info__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .info-box:nth-child(2) {
    border-right: 0;
  }

  .map-box iframe {
    min-height: 260px;
  }

  .whatsapp-order {
    padding-left: 245px;
  }

  .whatsapp-order__image {
    left: 30px;
    top: -58px;
  }

  .whatsapp-order__image img {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding: 18px 0;
  }

  .topbar__inner {
    width: min(100%, calc(100% - 28px));
  }

  .brand img {
    width: 95px;
  }

  .main-nav {
    display: none;
  }

  .chip--phone {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 130px 24px 65px;
    background:
      linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.66)),
      url("assets/hero-pizza.png") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    width: min(100%, calc(100% - 28px));
    margin: 44px auto;
  }

  .section-why {
    padding: 44px 20px;
  }

  .reviews-grid,
  .about,
  .offer__content {
    grid-template-columns: 1fr;
  }

  .offer__content {
    text-align: center;
    padding: 34px 24px;
  }

  .offer__pizza {
    opacity: .25;
  }

  .offer__side {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .offer__divider {
    margin: 0 auto;
  }

  .whatsapp-order {
    grid-template-columns: 1fr;
    padding: 120px 24px 34px;
    text-align: center;
    overflow: visible;
    margin-top: 100px;
  }

  .whatsapp-order__image {
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    display: none;
  }

  .whatsapp-order__image img {
    height: 185px;
  }

  .whatsapp-order p {
    margin: 0 auto;
  }

  .whatsapp-order__button {
    justify-content: center;
  }

  .about__image img {
    height: 280px;
  }

  .menu-grid,
  .menu-grid--center {
    grid-template-columns: 1fr;
  }

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

  .final-cta {
    position: static;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 56px;
  }

  .section__title {
    font-size: 44px;
  }

  .pizza-grid,
  .why-grid,
  .footer-info__inner {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .pizza-card,
  .pizza-card img {
    min-height: 250px;
  }

  .menu-head.card {
    padding: 200px 18px 54px;
  }

  .menu-tools {
    width: min(100%, calc(100% - 28px));
  }

  .tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .tab {
    flex: 0 0 auto;
  }

  .menu-grid {
    width: min(100%, calc(100% - 28px));
  }

  .menu-item__name {
    font-size: 1rem;
  }

  .menu-item__thumb,
  .menu-item__thumb img {
    width: 56px;
    height: 56px;
  }

  .menu-desc {
    margin-left: 70px;
  }

  .menu-desc--no-thumb {
    margin-left: 0;
  }

  .info-box,
  .info-box:first-child,
  .info-box:last-child,
  .map-box {
    padding: 0;
    border-right: 0;
  }

  .info-box {
    border-bottom: 1px solid var(--border);
    padding-bottom: 26px;
  }

  .info-box:last-child {
    border-bottom: 0;
  }

  .map-box iframe {
    min-height: 240px;
  }

  .btn {
    width: 100%;
  }
}