:root {
  --color-primary: #f27d9d;
  --color-primary-dark: #e16286;
  --color-secondary: #63b6c6;
  --color-accent: #fdd5e5;
  --color-soft: #f6f9fc;
  --color-text: #2f3e4c;
  --color-muted: #5c6b78;
  --color-border: #e2e8f0;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-brand: 'Kosugi Maru', sans-serif;
  --shadow-soft: 0 20px 40px rgba(18, 44, 76, 0.12);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 12px;
  --transition-base: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: #fffafc;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  z-index: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: -120px;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(242, 125, 157, 0.14) 0, rgba(242, 125, 157, 0.14) 12px, transparent 13px),
    radial-gradient(circle at 92px 46px, rgba(99, 182, 198, 0.15) 0, rgba(99, 182, 198, 0.15) 10px, transparent 11px),
    radial-gradient(circle at 54px 120px, rgba(246, 204, 102, 0.14) 0, rgba(246, 204, 102, 0.14) 14px, transparent 15px);
  background-size: 220px 220px, 280px 280px, 240px 240px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-medium);
}

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

a:hover,
a:focus {
  color: var(--color-primary);
}

ul,
ol {
  padding-left: 1.2rem;
}

h1, h2, h3, h4 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.5rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, rgba(242, 125, 157, 0.88), rgba(99, 182, 198, 0.88));
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar__inner {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Header */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(18, 44, 76, 0.08);
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-brand);
  font-size: 1.3rem;
  color: var(--color-primary);
}

.brand i {
  font-size: 1.4rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  color: var(--color-muted);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: 0 10px 20px rgba(242, 125, 157, 0.25);
}

.nav-cta:hover {
  background: var(--color-primary-dark);
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.6rem;
  gap: 0.3rem;
}

.nav-toggle__line {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(242, 125, 157, 0.2), transparent 55%),
              radial-gradient(circle at bottom right, rgba(99, 182, 198, 0.25), transparent 55%),
              #fff5f8;
  padding: 5rem 0 4rem;
}

.floating-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cloud,
.sparkle,
.heart {
  position: absolute;
}

.cloud {
  width: 180px;
  height: 100px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: drop-shadow(0 12px 18px rgba(99, 182, 198, 0.18));
  animation: drift 32s linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  width: 120px;
  height: 82px;
  top: -26px;
  left: 18px;
}

.cloud::after {
  width: 130px;
  height: 86px;
  top: -18px;
  right: 20px;
}

.cloud--one {
  top: 8%;
  left: 18%;
  animation-duration: 36s;
}

.cloud--two {
  top: 62%;
  left: 10%;
  animation-duration: 40s;
}

.cloud--three {
  top: 18%;
  right: 16%;
  animation-duration: 34s;
}

.sparkle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.22);
  animation: twinkle 6s ease-in-out infinite;
}

.sparkle--one {
  top: 14%;
  left: 42%;
}

.sparkle--two {
  top: 50%;
  left: 36%;
  animation-delay: 1.8s;
}

.sparkle--three {
  top: 32%;
  right: 24%;
  animation-delay: 3s;
}

.heart {
  width: 26px;
  height: 26px;
  background: rgba(242, 125, 157, 0.45);
  transform: rotate(-45deg);
  border-radius: 50% 0 50% 50%;
  animation: bob 12s ease-in-out infinite;
  filter: drop-shadow(0 12px 18px rgba(242, 125, 157, 0.2));
}

.heart::before,
.heart::after {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  background: inherit;
  border-radius: 50%;
}

.heart::before {
  top: -50%;
  left: 0;
}

.heart::after {
  left: 50%;
  top: 0;
}

.heart--one {
  top: 68%;
  right: 28%;
}

.heart--two {
  top: 26%;
  left: 28%;
  animation-duration: 15s;
}

.balloon {
  position: absolute;
  width: 110px;
  height: 150px;
  border-radius: 60% 60% 50% 50%;
  filter: drop-shadow(0 18px 24px rgba(18, 44, 76, 0.12));
  animation: float 12s ease-in-out infinite;
}

.balloon::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  width: 2px;
  height: 32px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.08);
}

.balloon::before {
  content: '';
  position: absolute;
  top: 22%;
  left: 22%;
  width: 22px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.balloon--pink {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(242, 125, 157, 0.95));
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.balloon--blue {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.75), rgba(99, 182, 198, 0.95));
  top: 45%;
  left: 4%;
  animation-delay: 4s;
}

.balloon--yellow {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.75), rgba(246, 204, 102, 0.98));
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.balloon--mint {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.72), rgba(132, 214, 189, 0.96));
  top: 60%;
  right: 4%;
  animation-delay: 6s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-24px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(28px, -16px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(-18px) rotate(-42deg);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(242, 125, 157, 0.12);
  color: var(--color-primary-dark);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero__content p {
  font-size: 1.05rem;
  color: var(--color-muted);
}

.hero__content,
.hero__media {
  position: relative;
  z-index: 2;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__note {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  color: var(--color-muted);
}

.hero__media img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(242, 125, 157, 0.32);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid rgba(242, 125, 157, 0.4);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: #fff;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Highlights */
.highlights {
  position: relative;
  padding: 3.5rem 0;
}

.highlights::before,
.highlights::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle at 30% 30%, rgba(242, 125, 157, 0.25), rgba(242, 125, 157, 0));
  pointer-events: none;
  z-index: 0;
}

.highlights::before {
  top: -60px;
  left: -40px;
}

.highlights::after {
  bottom: -70px;
  right: -30px;
  transform: rotate(18deg);
  background: radial-gradient(circle at 40% 40%, rgba(99, 182, 198, 0.22), rgba(99, 182, 198, 0));
}

.highlights__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-large);
  background: linear-gradient(160deg, rgba(255, 236, 245, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(242, 125, 157, 0.18);
  text-align: center;
  box-shadow: 0 16px 32px rgba(242, 125, 157, 0.18);
}

.highlight-card::before,
.highlight-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.highlight-card::before {
  width: 160px;
  height: 160px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle at center, rgba(242, 125, 157, 0.35), rgba(242, 125, 157, 0));
}

.highlight-card::after {
  width: 120px;
  height: 120px;
  bottom: -60px;
  left: -40px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.highlights__grid .highlight-card:nth-child(2) {
  background: linear-gradient(160deg, rgba(230, 248, 252, 0.95), rgba(255, 255, 255, 0.98));
  border-color: rgba(99, 182, 198, 0.28);
  box-shadow: 0 16px 32px rgba(99, 182, 198, 0.2);
}

.highlights__grid .highlight-card:nth-child(2)::before {
  background: radial-gradient(circle at center, rgba(99, 182, 198, 0.3), rgba(99, 182, 198, 0));
}

.highlights__grid .highlight-card:nth-child(3) {
  background: linear-gradient(160deg, rgba(232, 252, 245, 0.95), rgba(255, 255, 255, 0.98));
  border-color: rgba(132, 214, 189, 0.32);
  box-shadow: 0 16px 32px rgba(132, 214, 189, 0.22);
}

.highlights__grid .highlight-card:nth-child(3)::before {
  background: radial-gradient(circle at center, rgba(132, 214, 189, 0.3), rgba(132, 214, 189, 0));
}

.highlight-card i {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--color-muted);
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(99, 182, 198, 0.15);
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header::after {
  content: '';
  display: block;
  width: 82px;
  height: 8px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, rgba(242, 125, 157, 0.8), rgba(99, 182, 198, 0.8));
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(18, 44, 76, 0.18);
}

.section-header p {
  color: var(--color-muted);
  max-width: 720px;
  margin: 0.75rem auto 0;
}

/* News */
.news {
  position: relative;
  padding: 4rem 0;
  background: #fff;
}

.news::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 40% 40%, rgba(253, 213, 229, 0.35), rgba(253, 213, 229, 0));
  pointer-events: none;
  z-index: 0;
}

.news__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.news-card {
  background: #fff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card__image img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.news-card time {
  font-size: 0.9rem;
  color: var(--color-secondary);
  font-weight: 600;
}

.news-card p {
  color: var(--color-muted);
}

.news-tag {
  align-self: flex-start;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-primary);
  font-weight: 600;
}

.arrow-link i {
  transition: var(--transition-base);
}

.arrow-link:hover i {
  transform: translateX(4px);
}

/* Services */
.services {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(246, 249, 252, 0.95), rgba(253, 213, 229, 0.65));
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(242, 125, 157, 0.15);
  color: var(--color-primary);
  font-size: 1.4rem;
}

.service-card p {
  color: var(--color-muted);
}

.service-toggle {
  align-self: flex-start;
  border: none;
  background: transparent;
  color: var(--color-secondary);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-toggle::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: var(--transition-base);
}

.service-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.service-detail {
  background: var(--color-soft);
  border-radius: var(--radius-medium);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(99, 182, 198, 0.2);
  margin-top: -0.5rem;
}

.service-detail ul {
  margin: 0;
  color: var(--color-muted);
  padding-left: 1.2rem;
}

/* About */
.about {
  padding: 4.5rem 0;
}

.about__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.about__media img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-soft);
}

.about__content p {
  color: var(--color-muted);
}

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

.about__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-muted);
}

.about__list i {
  color: var(--color-secondary);
}

/* Flow */
.flow {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(99, 182, 198, 0.08), rgba(242, 125, 157, 0.12));
}

.flow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.flow-step {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 2rem 1.6rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.flow-step__number {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(99, 182, 198, 0.25);
}

.flow-step p {
  margin-top: 1.2rem;
  color: var(--color-muted);
}

/* Access */
.access {
  padding: 4.5rem 0;
}

.access__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.8rem;
  align-items: start;
}

.schedule {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-medium);
  overflow: hidden;
}

.schedule th,
.schedule td {
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.schedule thead {
  background: var(--color-secondary);
  color: #fff;
}

.schedule tbody tr:nth-child(even) {
  background: rgba(99, 182, 198, 0.08);
}

.access__notes {
  margin-top: 1.2rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.access__info {
  display: grid;
  gap: 1.4rem;
}

.info-card,
.map-card {
  background: #fff;
  border-radius: var(--radius-large);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
}

.info-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.map-card iframe {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius-medium);
}

/* CTA */
.cta {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(90deg, rgba(242, 125, 157, 0.85), rgba(99, 182, 198, 0.85));
  color: #fff;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta__content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(18, 44, 76, 0.25);
}

.cta .btn-outline:hover,
.cta .btn-outline:focus {
  background: #fff;
  color: var(--color-primary);
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.84);
  padding-top: 3.5rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .brand {
  color: #fff;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav a:hover {
  color: #fff;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-small);
  border: none;
}

.newsletter-form button {
  padding: 0.7rem 1.4rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.newsletter-form button:hover {
  background: var(--color-primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.2rem 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  margin-left: 0.8rem;
}

.footer-social a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner,
  .about__inner,
  .access__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    order: 2;
  }

  .hero__media {
    order: 1;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: #fff;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    width: min(240px, 80vw);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.9rem;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .top-bar__inner {
    justify-content: flex-start;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .balloon {
    width: 78px;
    height: 110px;
  }

  .balloon--pink {
    top: 6%;
    left: -6%;
  }

  .balloon--blue {
    top: 52%;
    left: -10%;
  }

  .balloon--yellow {
    top: 12%;
    right: -8%;
  }

  .balloon--mint {
    top: 70%;
    right: -12%;
  }

  .cloud {
    width: 120px;
    height: 70px;
  }

  .cloud--one {
    top: 2%;
    left: -4%;
  }

  .cloud--two {
    top: 66%;
    left: -6%;
  }

  .cloud--three {
    top: 10%;
    right: -10%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
