* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    "Instrument Sans",
    Montserrat,
    "Open Sans",
    Arial,
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 520;
  color: #111827;
  background: #f8fafc;
}

a {
  color: inherit;
  text-decoration: none;
}

.home-accordion-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.home-accordion-shell {
  max-width: 1040px;
  padding: 42px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.home-accordion-header {
  margin-bottom: 28px;
}

.home-accordion-header h2 {
  max-width: 720px;
}

.home-accordion-header p {
  max-width: 720px;
}

.home-accordion-list {
  display: grid;
  gap: 14px;
}

.home-accordion-item {
  overflow: hidden;
  border: 1px solid #e5eaf2;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.home-accordion-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.home-accordion-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}

.home-accordion-item summary::-webkit-details-marker {
  display: none;
}

.home-accordion-item summary::marker {
  content: '';
}

.home-accordion-title {
  color: #0f172a;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.home-accordion-arrow {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.home-accordion-item[open] {
  border-color: #bfdbfe;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.home-accordion-item[open] .home-accordion-arrow {
  background: #2563eb;
  color: #ffffff;
  transform: rotate(180deg);
}

.home-accordion-body {
  padding: 0 24px 24px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.home-accordion-body p {
  margin: 0;
}

.home-accordion-body p + p {
  margin-top: 12px;
}

@media (max-width: 760px) {
  .home-accordion-shell {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .home-accordion-item summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 14px;
    padding: 18px;
  }

  .home-accordion-title {
    font-size: 16px;
  }

  .home-accordion-arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .home-accordion-body {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}

/* FONT WEIGHT SYSTEM */
h1,
h2,
h3,
h4,
h5,
h6,
.site-logo,
.home-section-header-modern h2,
.restaurant-page-hero-card h1,
.blog-article-hero-card h1 {
  font-family:
    Inter,
    "Instrument Sans",
    Montserrat,
    "Open Sans",
    Arial,
    sans-serif;
  font-weight: 700;
}

p,
li,
dd,
input,
select,
textarea {
  font-weight: 520;
}

a,
button,
summary,
label,
strong,
b {
  font-weight: 760;
}

