:root {
  --header-height: 92px;
  --primary: #e83e8c;
  --primary-dark: #b82d6d;
  --accent: #ffd166;
  --mint: #d8f3dc;
  --sky: #dff6ff;
  --cream: #fff8ed;
  --ink: #2f2a38;
  --muted: #675f72;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(90, 48, 86, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: linear-gradient(180deg, #fff8ed 0%, #fff 42%, #f7fbff 100%);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: 1rem 5%;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(90, 48, 86, 0.08);
}


.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 300;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.navbar h1 {
  margin: 0;
  color: var(--primary-dark);
  flex-shrink: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.navbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.35rem, 1vw, 0.75rem);
}

.navbar a {
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar a:hover,
.navbar a:focus {
  color: var(--primary-dark);
  background: #ffe4ec;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-shrink: 0;
  background: transparent;
  color: var(--primary-dark);
  box-shadow: none;
  padding: 0.65rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  line-height: 1;
}

.menu-toggle:hover,
.menu-toggle:focus {
  transform: none;
  box-shadow: none;
}

.menu-lines {
  display: block;
  width: clamp(1.8rem, 8vw, 2.2rem);
  height: 1.4rem;
  border-radius: 0;
  background:
    linear-gradient(var(--primary-dark), var(--primary-dark)) top / 100% 0.22rem no-repeat,
    linear-gradient(var(--primary-dark), var(--primary-dark)) center / 100% 0.22rem no-repeat,
    linear-gradient(var(--primary-dark), var(--primary-dark)) bottom / 100% 0.22rem no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 90px 7%;
  text-align: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 209, 102, 0.45) 0 90px, transparent 92px),
    radial-gradient(circle at 84% 18%, rgba(216, 243, 220, 0.9) 0 130px, transparent 132px),
    linear-gradient(135deg, #fff1f7 0%, #fff9df 50%, #e7f9ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(232, 62, 140, 0.12);
}

.hero h2 {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 1.25rem;
}

.btn,
button {
  display: inline-block;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 13px 24px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(232, 62, 140, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus,
button:hover,
button:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(232, 62, 140, 0.3);
}

.navbar .menu-toggle {
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--primary-dark);
  box-shadow: none;
  padding: 0.65rem 0;
}

.navbar .menu-toggle:hover,
.navbar .menu-toggle:focus {
  transform: none;
  box-shadow: none;
}

.hero,
.section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 7%;
  text-align: center;
}

.section h2 {
  margin: 0 0 18px;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section > p {
  max-width: 760px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.card {
  background: var(--card);
  padding: 26px;
  border: 1px solid rgba(232, 62, 140, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow);
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-card,
.schedule-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 96px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.9rem;
}

.schedule-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.tour-cta {
  max-width: 980px;
}

#programs .card:nth-child(1) { background: #fff1f7; }
#programs .card:nth-child(2) { background: #f0fbff; }
#programs .card:nth-child(3) { background: #fff8df; }
#programs .card:nth-child(4) { background: #eefaf0; }
#programs .card:nth-child(5) { background: #fff3e0; }
#programs .card:nth-child(6) { background: #f4efff; }

#programs .card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.program-age {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 38, 120, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

#programs .card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.program-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(232, 62, 140, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-cta:hover,
.program-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(232, 62, 140, 0.28);
}

.tour-expectations {
  max-width: 1120px;
}

.tour-expectations-grid .card {
  text-align: left;
}

.tour-expectations-grid .feature-icon {
  margin: 0 0 14px;
}

.tour-expectations-grid h3 {
  margin: 0 0 10px;
}

.tour-expectations-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 8px solid white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: white;
}


#contact {
  max-width: 1120px;
}

form {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 28px auto;
  padding: 28px;
  background: white;
  border: 1px solid rgba(232, 62, 140, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #f0dbe6;
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  background: #fffcff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 62, 140, 0.12);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-section {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}

.form-section legend {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.form-field.full,
.child-entry {
  grid-column: 1 / -1;
}

.child-fields {
  display: grid;
  gap: 14px;
}

.child-entry {
  padding-top: 14px;
  border-top: 1px solid #f0dbe6;
}

.child-entry:first-child {
  padding-top: 0;
  border-top: none;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.checkbox-field input {
  width: auto;
  margin-top: 5px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.field-error {
  min-height: 1.25em;
  color: #9c1c51;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-note {
  grid-column: 1 / -1;
  margin: -0.25rem 0 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.info p {
  margin: 0;
  padding: 18px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(90, 48, 86, 0.08);
}

.map {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

footer {
  overflow: hidden;
  text-align: center;
  padding: 0 7% 28px;
  background: linear-gradient(180deg, #fff8ed 0%, #fff8ed 66%, var(--ink) 66%, var(--ink) 100%);
  color: white;
}

.footer-illustration {
  display: block;
  width: min(100%, 1200px);
  margin: 0 auto -8px;
}

footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 18px;
}

@media (max-width: 760px) {
  .navbar {
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .navbar h1 {
    min-width: 0;
    font-size: clamp(1.25rem, 5.6vw, 1.6rem);
  }

  .menu-toggle {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: auto;
    font-size: clamp(0.8rem, 3.8vw, 0.95rem);
  }

  .menu-lines {
    width: clamp(1.5rem, 7vw, 1.8rem);
    height: 1.15rem;
  }

  .navbar nav {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.25rem;
    padding: 1.25rem 0 0.75rem;
    border-top: 1px solid #f0dbe6;
  }

  .navbar.nav-open nav {
    display: grid;
  }

  .navbar a {
    padding: 0.5rem 0;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }


  .feature-card {
    justify-content: flex-start;
    text-align: left;
  }

  .feature-icon {
    flex: 0 0 2.15rem;
  }

  .hero {
    min-height: auto;
    padding: 56px 6% 72px;
  }

  .hero h2 {
    font-size: 2.35rem;
  }

  .hero p {
    font-size: 1.08rem;
    margin-bottom: 24px;
  }

  .section {
    padding: 56px 6%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

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

.trust-line {
  margin-top: 22px;
  font-weight: 700;
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
}

.safety-grid,
.programs-grid,
.steps-grid {
  align-items: stretch;
}

.steps-grid .card {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 30px auto 0;
  text-align: left;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: white;
  border-left: 6px solid var(--primary);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(90, 48, 86, 0.08);
}

.timeline-item time {
  color: var(--primary-dark);
  font-weight: 800;
}

.timeline-item span {
  font-weight: 800;
}

.gallery-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(196, 38, 120, 0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff 0%, #fff7fb 100%);
  box-shadow: 0 18px 45px rgba(196, 38, 120, 0.16);
  cursor: pointer;
}

.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-2px);
}

.gallery-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.gallery-open:hover,
.gallery-open:focus {
  transform: none;
  box-shadow: none;
}

.gallery-item img,
.gallery-item iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 22px;
  background: #fff7fb;
  box-shadow: none;
}

.gallery-item iframe {
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(47, 42, 56, 0.86);
}

.lightbox.open {
  display: grid;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox img,
.lightbox iframe {
  width: min(100%, 980px);
  max-height: 82vh;
  border: 0;
  border-radius: 24px;
  background: white;
}

.lightbox img {
  height: auto;
}

.lightbox iframe {
  height: min(82vh, 735px);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  background: white;
  color: var(--primary-dark);
  box-shadow: none;
  font-size: 2rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 30px auto 0;
  text-align: left;
}

details {
  padding: 18px 20px;
  background: white;
  border: 1px solid rgba(232, 62, 140, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(90, 48, 86, 0.08);
}

summary {
  min-height: 44px;
  font-weight: 800;
  cursor: pointer;
}

form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

form button,
.form-status,
.checkbox-field.full,
.form-field.full {
  grid-column: 1 / -1;
}

.info a,
footer a {
  color: inherit;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 4px auto 28px;
}

.contact-actions .btn {
  margin: 0;
}

.call-button {
  margin: 0;
}

.privacy-page {
  min-height: 65vh;
  padding: clamp(2rem, 6vw, 5rem) 5%;
}

.privacy-hero,
.privacy-content {
  width: min(100%, 900px);
  margin-inline: auto;
}

.privacy-hero {
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow);
}

.privacy-eyebrow {
  margin: 0 0 0.5rem;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-hero h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 7vw, 4rem);
}

.privacy-hero p:last-child {
  max-width: 38rem;
  margin: 0.75rem auto 0;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.privacy-content {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 1.75rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.privacy-content p {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.privacy-content h3 {
  margin: 2.25rem 0 0.75rem;
  color: var(--primary-dark);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

.privacy-content ul {
  margin: -0.75rem 0 1.75rem;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.privacy-content li + li {
  margin-top: 0.4rem;
}

.privacy-content address {
  margin: -0.75rem 0 1.75rem;
  color: var(--muted);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.privacy-content address a {
  color: var(--primary-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.privacy-content .policy-date {
  color: var(--ink);
}

.privacy-content .btn {
  width: fit-content;
}

.sticky-tour {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(232, 62, 140, 0.25);
}

:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  form,
  .timeline-item {
    grid-template-columns: 1fr;
  }

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

  .sticky-tour {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.card ul {
  margin: 12px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.timeline-item {
  grid-template-columns: 1fr;
}

.gallery-carousel {
  overflow: hidden;
  margin-top: 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.gallery-carousel .gallery {
  display: flex;
  width: max-content;
  gap: 26px;
  margin-top: 0;
  animation: gallery-scroll 55s linear infinite;
}

.gallery-carousel:hover .gallery,
.gallery-carousel:focus-within .gallery {
  animation-play-state: paused;
}

.gallery-carousel .gallery-item {
  flex: 0 0 clamp(260px, 34vw, 420px);
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 13px));
  }
}

@media (max-width: 760px) {
  .gallery-carousel .gallery-item {
    flex-basis: min(78vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-carousel .gallery {
    width: auto;
    overflow-x: auto;
    animation: none;
  }
}

.about-section {
  max-width: 1180px;
}

.about-hero-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 34px;
  border-radius: 36px;
  background: white;
  box-shadow: var(--shadow);
}

.about-hero-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  text-align: left;
}

.about-hero-copy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -62px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.about-hero-copy h2,
.about-story-card h3 {
  margin: 0;
}

.about-hero-copy h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.about-hero-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: white;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
}

.about-hero-image,
.about-story-image {
  overflow: hidden;
}

.about-hero-image img,
.about-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.about-story-image {
  min-height: 320px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.about-story-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 320px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 32px;
  background: #f7f3ef;
  text-align: left;
  box-shadow: 0 10px 24px rgba(90, 48, 86, 0.08);
}

.about-line-icon {
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  color: var(--primary-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.about-story-card h3 {
  color: var(--primary-dark);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.about-story-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-hero-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    border-radius: 28px;
  }

  .about-story-image,
  .about-story-card {
    min-height: 290px;
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .about-hero-block,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy::after {
    top: auto;
    right: -42px;
    bottom: -42px;
    transform: none;
  }

  .about-hero-image img,
  .about-story-image img {
    min-height: 250px;
  }

  .about-story-card {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .about-hero-block,
  .about-story-image,
  .about-story-card {
    border-radius: 24px;
  }
}

.safety-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 62, 140, 0.16);
  text-align: left;
}

.safety-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.safety-card:nth-child(1) { background: #fff1f7; }
.safety-card:nth-child(2) { background: #f0fbff; }
.safety-card:nth-child(3) { background: #fff8df; }
.safety-card:nth-child(4) { background: #eefaf0; }

.safety-card h3 {
  color: var(--primary-dark);
}

.license-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 45, 109, 0.18);
  font-weight: 700;
}
