/* =============================================
   笑い塾 スタンダップコメディスクール
   zero-peace-534.css
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg: #040a11;
  --color-bg-alt: #0a192a;
  --color-bg-dark: #000d18;
  --color-bg-footer: #000000;
  --color-primary: #ed6502;
  --color-secondary: #f7b829;
  --color-text: #ffffff;
  --color-accent: #ec3900;
  --color-text-muted: rgba(255,255,255,0.7);
  --color-card-dark: #343434;
  --color-borders: #222222;
  --color-input-bg: #ffffff;
  --color-input-fg: #111111;
  --color-success: #31862D;
  --color-error: #DD4242;

  --gradient-primary: linear-gradient(135deg, rgba(237,101,2,1), rgba(255,191,106,1) 98%);
  --gradient-dark: radial-gradient(rgba(50,50,50,1), rgba(58,64,47,1) 100%);

  --font-main: 'Jost', sans-serif;
  --font-size-base: 1.6rem;
  --line-height-base: 1.6;

  --button-radius: 0px;
  --button-padding: 0.6em 2.6em;
  --input-radius: 6px;
  --input-shadow: inset 2px 2px 8px rgba(0,0,0,.25);

  --container-max: 1440px;
  --container-margin: 25px;
  --grid-gap: 16px;

  --ideal-width: 1440px;
  --container-inner-width: min(100vw - var(--container-margin)*2  , var(--ideal-width));
}

@media only screen and (min-width: 768px) {
  :root {
    --container-margin: 48px;
    --grid-gap: 24px;
  }
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; font-family: var(--font-main); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.03em;
  word-break: break-word;
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.6rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 2.0rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.6rem; }
p  { font-size: var(--font-size-base); line-height: var(--line-height-base); }

@media only screen and (min-width: 768px) {
  body  { font-size: 1.8rem; }
  h1    { font-size: 4.0rem; }
  h2    { font-size: 3.2rem; }
  h3    { font-size: 2.6rem; }
  h4    { font-size: 2.2rem; }
  h5    { font-size: 2.0rem; }
  h6    { font-size: 1.8rem; }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted   { color: var(--color-text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.subheading   { letter-spacing: 0.2em; text-transform: uppercase; font-size: 1.2rem; font-weight: 600; color: var(--color-primary); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--container-margin);
  padding-right: var(--container-margin);
  margin-left: auto;
  margin-right: auto;
}
.section { padding-top: 60px; padding-bottom: 60px; }
@media only screen and (min-width: 768px) {
  .section { padding-top: 100px; padding-bottom: 100px; }
}
.section--alt { background-color: var(--color-bg-alt); }
.section--dark { background-color: var(--color-bg-dark); }
.section--black { background-color: var(--color-bg-footer); }

.grid { display: grid; gap: var(--grid-gap); }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2,1fr); }
.grid-cols-3 { grid-template-columns: repeat(3,1fr); }
@media only screen and (min-width: 768px) {
  .sm-grid-cols-2 { grid-template-columns: repeat(2,1fr); }
  .sm-grid-cols-3 { grid-template-columns: repeat(3,1fr); }
  .sm-grid-cols-4 { grid-template-columns: repeat(4,1fr); }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap { gap: var(--grid-gap); }
.center-center { justify-content: center; align-items: center; }
.space-between { justify-content: space-between; }
.align-center  { align-items: center; }
.flex-col      { flex-direction: column; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--button-padding);
  border-radius: var(--button-radius);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 2px solid transparent;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn--primary {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}
.btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--secondary:hover { background-color: rgba(255,255,255,0.1); }
.btn--gold {
  background-color: var(--color-secondary);
  color: #000000;
  border-color: var(--color-secondary);
}
.btn--full { width: 100%; }
.btn--inline { display: inline-flex; }
.btn i { margin-right: 8px; }

/* ---------- HEADER / NAV ---------- */
#MainHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4,10,17,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo svg {
  height: 40px;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .header-logo svg {
    height: 48px;
  }
}
.header-nav {
  display: none;
  gap: 32px;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .header-nav { display: flex; }
}
.header-nav a {
  font-size: 18px;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transition: color 0.2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--color-primary); opacity: 1; }
.header-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-nav-right a {
  font-size: 18px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.header-nav-right a:hover { opacity: 1; color: var(--color-primary); }

/* Mobile menu toggle */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s, opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .burger-btn { display: none; }
}

/* Mobile drawer */
#mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: left 0.3s ease;
  border-right: 1px solid var(--color-borders);
}
#mobile-menu.open { left: 0; }
#mobile-menu a {
  display: block;
  font-size: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--color-primary); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  opacity: 0.7;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
}
.mobile-overlay.open { display: block; }

/* Spacer for fixed header */
.header-spacer { height: 80px; }

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .hero { min-height: 100vh; }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,10,17,0.6);
  z-index: 1;
}
.hero__text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}
.hero__text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}
.hero__content {
  max-width: 800px;
  text-align: center;
  padding: 0 var(--container-margin);
}
.hero__title {
  font-size: 3.2rem;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .hero__title { font-size: 5.5rem; }
  .hero__content { padding: 0; }
}
.hero__subtitle {
  font-size: 1.8rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero__badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 16px;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ---------- RICH TEXT SECTION ---------- */
.richtext-section {
  text-align: center;
}
.richtext-section .section-title {
  margin-bottom: 16px;
}
.richtext-section p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-muted);
}
.section-label {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 24px; }
.section-desc {
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- CARDS (courses) ---------- */
.card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-borders);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}
.card__media {
  position: relative;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.4s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 24px;
}
.card__price {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 8px;
}
.card__title {
  font-size: 2.0rem;
  margin-bottom: 12px;
}
.card__desc {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card__tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 12px;
  margin-bottom: 12px;
}

/* ---------- FEATURE / WHY US BLOCKS ---------- */
.feature-block {
  padding: 32px;
  background: var(--gradient-dark);
  border: 1px solid var(--color-borders);
  text-align: center;
  transition: border-color 0.3s;
}
.feature-block:hover { border-color: var(--color-primary); }
.feature-block__icon {
  font-size: 3.6rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.feature-block__title {
  font-size: 2.0rem;
  margin-bottom: 12px;
}
.feature-block__desc {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1.7;
}

/* ---------- INSTRUCTOR CARDS ---------- */
.instructor-card {
  text-align: center;
}
.instructor-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--color-primary);
}
.instructor-card__name {
  font-size: 2.0rem;
  margin-bottom: 6px;
}
.instructor-card__role {
  color: var(--color-primary);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.instructor-card__bio { color: var(--color-text-muted); font-size: 1.5rem; line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-borders);
  padding: 32px;
}
.testimonial-card__stars {
  color: var(--color-secondary);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.testimonial-card__text {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  font-weight: 600;
  font-size: 1.6rem;
}
.testimonial-card__city {
  font-size: 1.3rem;
  color: var(--color-text-muted);
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--color-primary);
  padding: 40px 0;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-item__num {
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 1.4rem;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

/* ---------- BANNER / CTA HERO ---------- */
.banner-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-hero__media {
  position: absolute;
  inset: 0;
}
.banner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.banner-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,10,17,0.72);
}
.banner-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 60px var(--container-margin);
}
.banner-hero__title {
  font-size: 3.2rem;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .banner-hero__title { font-size: 4.4rem; }
}
.banner-hero__subtitle {
  color: var(--color-text-muted);
  font-size: 1.8rem;
  margin-bottom: 32px;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-input-bg);
  color: var(--color-input-fg);
  border: none;
  border-radius: var(--input-radius);
  box-shadow: var(--input-shadow);
  font-size: 16px;
  transition: box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: var(--input-shadow), 0 0 0 2px var(--color-primary);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 1.3rem; color: var(--color-text-muted); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-borders);
}
.faq-item:first-child { border-top: 1px solid var(--color-borders); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-primary); }
.faq-question i { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
#SiteFooter {
  background: var(--color-bg-footer);
  padding-top: 64px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
@media only screen and (min-width: 768px) {
  #SiteFooter { padding-top: 80px; padding-bottom: 80px; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media only screen and (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
}
.footer-brand__logo { margin-bottom: 16px; }
.footer-brand__logo svg { height: 40px; width: auto; }
.footer-brand__desc {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--color-primary); color: #fff; }
.footer-col__title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #fff;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--color-primary); }
.footer-contact p {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1.8;
}
.footer-contact i { color: var(--color-primary); margin-right: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-bottom-links a {
  color: var(--color-text-muted);
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--color-primary); }
.footer-copyright { color: rgba(255,255,255,0.4); font-size: 1.3rem; }
.to-top-link {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  font-size: 1.6rem;
}
.to-top-link.visible { opacity: 1; transform: translateY(0); }
.to-top-link:hover { background: #c45400; }

/* ---------- COOKIES GDPR ---------- */
#cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0a192a;
  border-top: 2px solid var(--color-primary);
  padding: 20px var(--container-margin);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-alert.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie-text { font-size: 1.4rem; color: var(--color-text-muted); line-height: 1.6; }
.cookie-text a { color: var(--color-primary); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- UTILITY ---------- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.pt-0  { padding-top: 0; }
.pb-0  { padding-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.text-primary  { color: var(--color-primary); }
.text-gold     { color: var(--color-secondary); }
.fw-600        { font-weight: 600; }
.page-content  { padding-top: 80px; padding-bottom: 80px; }
.page-content h2 { margin: 40px 0 16px; }
.page-content h3 { margin: 28px 0 12px; }
.page-content p  { color: var(--color-text-muted); line-height: 1.8; margin-bottom: 16px; }
.page-content ul { color: var(--color-text-muted); padding-left: 20px; list-style: disc; line-height: 1.9; }
.page-content ul li { margin-bottom: 8px; }
.page-hero {
  background: var(--color-bg-alt);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--color-borders);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p  { color: var(--color-text-muted); max-width: 600px; }

/* ---------- SECTION DIVIDER ---------- */
.divider { width: 60px; height: 3px; background: var(--color-primary); margin: 16px auto 0; }
.divider--left { margin-left: 0; }

/* Newsletter inline form */
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: var(--color-input-bg);
  color: var(--color-input-fg);
  border: none;
  border-radius: 6px 0 0 6px;
  font-size: 15px;
  box-shadow: var(--input-shadow);
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #c45400; }

/* Company details / contact page helpers */
.info-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-borders);
  border-left: 4px solid var(--color-primary);
  padding: 28px 32px;
  margin-bottom: 24px;
}
.info-box p { color: var(--color-text-muted); line-height: 1.8; }
.info-box strong { color: #fff; }
.map-stub {
  width: 100%;
  height: 300px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-borders);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .map-stub { height: 400px; }
}

/* Send success / PHP page */
.send-result {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--container-margin);
}
.send-result__icon { font-size: 5rem; color: var(--color-primary); margin-bottom: 20px; }
.send-result h1 { margin-bottom: 16px; }
.send-result p { color: var(--color-text-muted); max-width: 500px; margin: 0 auto 32px; }
