:root {
  color-scheme: light;
  --ink: #232323;
  --muted: #6f6459;
  --paper: #fbf7f0;
  --sand: #f5ece0;
  --sand-strong: #e8d8c4;
  --terracotta: #c0754a;
  --terracotta-dark: #8a6a3b;
  --mint: #2f5d4a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(138, 106, 59, 0.14);
  --radius: 22px;
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

h1, h2, h3, .brand strong, .eyebrow {
  font-family: "Yanone Kaffeesatz", "Quicksand", sans-serif;
  letter-spacing: 0.5px;
}

h1, h2 { font-weight: 500; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(192, 117, 74, 0.18), transparent 32rem),
    linear-gradient(180deg, #fbf7f0 0%, #f5ece0 100%);
  color: var(--ink);
  line-height: 1.6;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: top 0.2s ease;
}

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

.hero {
  min-height: 76vh;
  padding: 1rem clamp(1rem, 4vw, 4rem) 3rem;
  background:
    linear-gradient(120deg, rgba(30, 25, 22, 0.62), rgba(30, 25, 22, 0.18)),
    url("/assets/images/hero.jpg") center/cover;
  color: var(--white);
}

.topbar,
.hero-grid,
.content,
.footer,
.quick-nav > div {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

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

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  opacity: 0.78;
}

.language-switcher {
  display: flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.language-switcher button {
  min-width: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0.55rem 0.75rem;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--white);
  color: var(--terracotta-dark);
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  align-items: end;
  gap: 2rem;
  min-height: 58vh;
}

.kicker {
  color: #f0d2b7;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.hero-copy > p:not(.kicker) {
  max-width: 680px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.section-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  padding: 0.85rem 1.2rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  background: var(--white);
  color: var(--terracotta-dark);
}

.ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.arrival-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 1.4rem;
}

.arrival-card span,
.arrival-card strong,
.arrival-card a {
  display: block;
}

.arrival-card span {
  color: #f0d2b7;
  font-weight: 800;
  text-transform: uppercase;
}

.arrival-card strong {
  margin: 0.45rem 0 1rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.quick-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(108, 61, 37, 0.12);
  background: rgba(255, 250, 243, 0.9);
  backdrop-filter: blur(18px);
}

.quick-nav > div {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  scrollbar-width: thin;
}

.quick-nav a {
  flex: 0 0 auto;
  border: 1px solid rgba(108, 61, 37, 0.13);
  border-radius: 999px;
  background: var(--white);
  color: var(--terracotta-dark);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  padding: 0.65rem 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.quick-nav a.active {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(108, 61, 37, 0.28);
}

.content {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.sections {
  display: grid;
  gap: 1.25rem;
}

.section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1rem, 4vw, 3rem);
  border: 1px solid rgba(108, 61, 37, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section.full {
  grid-template-columns: 1fr;
}

.section-heading {
  background: linear-gradient(180deg, rgba(155, 93, 58, 0.12), rgba(36, 77, 63, 0.08));
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.section-image {
  width: 100%;
  max-height: 22rem;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.section-heading .section-image {
  margin-top: 1rem;
}

.section-heading .eyebrow,
.card .eyebrow {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-body {
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Intro — combined welcome + riad + hosts card */
.intro-section {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.intro-panel {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
}

.intro-welcome {
  max-width: 46rem;
}

.intro-welcome h2 {
  margin-bottom: 0.6rem;
}

.intro-welcome-lead {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text, #2c2320);
  margin-bottom: 1rem;
}

.intro-welcome .lead + .lead {
  margin-top: 0.75rem;
}

.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3.5vw, 2.6rem);
  align-items: center;
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
  border-top: 1px solid rgba(108, 61, 37, 0.12);
}

.intro-block:nth-child(even) .intro-block-media {
  order: 2;
}

.intro-block-media img {
  width: 100%;
  height: 100%;
  max-height: 24rem;
  min-height: 16rem;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(60, 30, 15, 0.18);
}

.intro-block-content h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0.2rem 0 0.6rem;
}

.intro-block-lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.intro-block-content p {
  color: var(--muted);
}

.intro-features-title {
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  color: var(--terracotta-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.notice,
.wifi-panel,
.map-panel,
.review-panel {
  border: 1px solid rgba(108, 61, 37, 0.12);
  border-radius: 22px;
  background: var(--white);
  padding: 1.1rem;
}

.card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p,
.card li,
.notice p,
.section-body li {
  color: var(--muted);
}

.hl-time {
  display: block;
  margin: 0.2rem 0 0.55rem;
  color: var(--terracotta-dark);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hl-price {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border-radius: 8px;
  background: rgba(36, 77, 63, 0.12);
  color: #1f7a4d;
  font-weight: 800;
}

.list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 1.35rem;
}

.list li::before {
  position: absolute;
  left: 0;
  color: var(--terracotta);
  content: "•";
  font-weight: 900;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.time-card strong,
.wifi-code strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.time-card span,
.wifi-code span {
  color: var(--terracotta);
  font-weight: 850;
  text-transform: uppercase;
}

.wifi-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #fff, #f4eadf);
}

.wifi-code code {
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 14px;
  background: rgba(36, 77, 63, 0.08);
  color: var(--mint);
  font-size: clamp(1.35rem, 4vw, 2.3rem);
  font-weight: 850;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.7rem;
}

.copy-feedback {
  min-height: 1.5rem;
  margin-top: 0.65rem;
  color: var(--mint);
  font-weight: 800;
}

.map-panel {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(36, 77, 63, 0.08), rgba(155, 93, 58, 0.12)),
    var(--white);
}

.map-placeholder {
  display: grid;
  min-height: 15rem;
  place-items: center;
  border: 1px dashed rgba(108, 61, 37, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  text-align: center;
  padding: 1.5rem;
}

.review-panel {
  background: var(--mint);
  color: var(--white);
}

.review-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.review-panel .button {
  width: fit-content;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  padding: 2rem clamp(1rem, 4vw, 2rem) 3rem;
}

.footer a {
  color: var(--terracotta-dark);
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero-grid,
  .section,
  .time-grid,
  .card-grid,
  .wifi-panel,
  .intro-block {
    grid-template-columns: 1fr;
  }

  .intro-block:nth-child(even) .intro-block-media {
    order: 0;
  }

  .intro-block-media img {
    min-height: 14rem;
    max-height: 20rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 4rem;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand small {
    display: none;
  }

  .language-switcher button {
    min-width: 2.35rem;
    padding-inline: 0.55rem;
  }

  .footer {
    display: block;
  }
}

/* Transfer panel — premium card */
.transfer-panel {
  margin-top: 1.5rem;
}

.transfer-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: var(--white);
}

.transfer-card-header {
  background: linear-gradient(135deg, #b87333 0%, #d4a05a 50%, #c4813a 100%);
  color: #fff;
  padding: 1.4rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.transfer-card-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.transfer-card-header-text strong {
  font-size: 1.2rem;
}
.transfer-card-header-text span {
  font-size: 0.85rem;
  opacity: 0.9;
}
.transfer-card-icon {
  font-size: 2.2rem;
  opacity: 0.7;
}

.transfer-features {
  padding: 0.4rem 0;
}

.transfer-feature-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.15s;
}
.transfer-feature-row:last-child { border-bottom: none; }
.transfer-feature-row:hover { background: #faf6f2; }

.transfer-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.transfer-feature-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.1rem;
}
.transfer-feature-text strong {
  font-size: 0.95rem;
}
.transfer-feature-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.transfer-feature-arrow {
  font-size: 1.3rem;
  color: #ccc;
  flex-shrink: 0;
}

.transfer-cta {
  display: block;
  width: calc(100% - 2.4rem);
  margin: 0.8rem 1.2rem;
  padding: 0.9rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #b87333, #d4a05a);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}
.transfer-cta:hover { opacity: 0.9; }

.transfer-badge {
  text-align: center;
  padding: 0.6rem 1.2rem 1rem;
  font-size: 0.85rem;
  color: #2e7d32;
  font-weight: 600;
}

.form-section-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.2rem 0 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid #eee;
  color: var(--terracotta);
}

/* Dinner panel — premium card */
.dinner-panel { text-align: center; }

.dinner-premium-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: var(--white);
}

.dinner-card-header {
  background: linear-gradient(135deg, #3e2723 0%, #5d4037 100%);
  color: #fff;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dinner-card-header-icon {
  font-size: 2rem;
  background: rgba(255,255,255,0.15);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dinner-card-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.dinner-card-header-text strong { font-size: 1.2rem; }
.dinner-card-header-text span { font-size: 0.85rem; opacity: 0.85; }

.dinner-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 1rem 1.2rem;
}
.dinner-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.2rem 0.8rem;
  border-radius: 14px;
  background: #faf6f2;
  text-align: center;
  transition: transform 0.15s;
}
.dinner-menu-card:hover { transform: translateY(-2px); }
.dinner-menu-icon {
  font-size: 2rem;
  background: rgba(184,115,51,0.12);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dinner-menu-card strong { font-size: 0.95rem; }
.dinner-menu-detail { font-size: 0.78rem; color: var(--text-muted); min-height: 1rem; }
.dinner-menu-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--terracotta);
}

.dinner-cta {
  display: block;
  width: calc(100% - 2.4rem);
  margin: 0.4rem 1.2rem 0.6rem;
  padding: 0.9rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #b87333, #d4a05a);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}
.dinner-cta:hover { opacity: 0.9; }

.dinner-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem 1.2rem 1.2rem;
  flex-wrap: wrap;
}
.dinner-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 7rem;
}
.dinner-badge-item span:first-child { font-size: 1.2rem; }

.dinner-menu-perperson {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Dinner form — live total summary */
.dinner-summary {
  margin: 0.6rem 0 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fbf6ef;
  border: 1px solid #ecdcc7;
}
.dinner-summary-empty {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.dinner-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}
.dinner-summary-row span:last-child { font-weight: 600; }
.dinner-summary-total {
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  border-top: 1px solid #ecdcc7;
  font-size: 1.05rem;
}
.dinner-summary-total span { color: var(--terracotta); font-weight: 800; }

/* Rules — colored cards */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.rules-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.15s;
}
.rules-card:hover { transform: translateY(-2px); }

.rules-icon-circle {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.rules-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.rules-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.rules-red .rules-icon-circle { background: #fde8e8; }
.rules-red h3 { color: #c62828; }
.rules-orange .rules-icon-circle { background: #fff3e0; }
.rules-orange h3 { color: #e65100; }
.rules-yellow .rules-icon-circle { background: #fff8e1; }
.rules-yellow h3 { color: #f9a825; }
.rules-green .rules-icon-circle { background: #e8f5e9; }
.rules-green h3 { color: #2e7d32; }
.rules-blue .rules-icon-circle { background: #e3f2fd; }
.rules-blue h3 { color: #1565c0; }
.rules-purple .rules-icon-circle { background: #f3e5f5; }
.rules-purple h3 { color: #7b1fa2; }

/* Dinner modal */
.dinner-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.dinner-modal.active { display: flex; }

.dinner-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.dinner-modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  width: min(92vw, 480px);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.dinner-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.dinner-modal-close:hover { color: var(--terracotta); }

.dinner-modal-dialog h3 {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.dinner-modal-dialog .button.primary {
  width: 100%;
  margin-top: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ---- Riad Mylaya guide adjustments ---- */

/* Section anchors must clear the sticky quick-nav */
.section {
  scroll-margin-top: 7.5rem;
}

h1 {
  letter-spacing: 1.5px;
}

/* Multi-line access / parking instructions keep their line breaks */
.map-placeholder {
  white-space: pre-line;
  text-align: left;
  padding: 1.25rem;
  line-height: 1.7;
}

/* Service call-to-actions must be unmistakable buttons on mobile */
.card-actions .button.primary {
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(192, 117, 74, 0.28);
}

.card-actions .button.primary:hover,
.card-actions .button.primary:focus-visible {
  background: var(--terracotta-dark);
}

.review-panel .card-actions .button.primary,
.map-panel .card-actions .button.primary {
  width: 100%;
}

@media (min-width: 640px) {
  .card-actions .button.primary {
    width: auto;
  }
}
