:root {
  --white: #FFFFFF;
  --ink: #1a2522;
  --moss: #2d4a42;
  --sage: #4a7c6f;
  --clay: #b85c38;
  --sand: #f4ede8;
  --stone: #e8e2dc;
  --slate: #3d3d38;
  --smoke: #9a9590;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --shadow-sm: 0 1px 3px rgba(26, 37, 34, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 37, 34, 0.12);
  --shadow-lg: 0 8px 24px rgba(26, 37, 34, 0.16);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --header-height: 3rem;
  --max-width: 75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--slate);
  background: var(--sand);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--moss);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(1.25rem, 3.5vw, 1.85rem); }
h2 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
h3 { font-size: clamp(1rem, 2.2vw, 1.2rem); }
h4, h5, h6 { font-size: clamp(0.95rem, 1.8vw, 1.05rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(244, 237, 232, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-height);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-link:hover {
  color: var(--sage);
}

.nav-menu {
  display: none;
  list-style: none;
}

.nav-menu a {
  color: var(--slate);
  font-weight: 500;
  font-size: 0.8125rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
}

.nav-menu a:hover {
  color: var(--sage);
  background: var(--stone);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--moss);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 102;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.menu-toggle:hover {
  background: var(--sage);
  color: var(--white);
}

.menu-toggle[aria-expanded="true"],
body.menu-open .menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88%, 20rem);
  height: 100vh;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
  z-index: 101;
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu .nav-menu {
  display: flex !important;
  flex-direction: column;
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-xl);
  gap: 0;
  list-style: none;
}

.mobile-menu .nav-menu li {
  border-bottom: 1px solid var(--stone);
}

.mobile-menu .nav-menu a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
}

.mobile-menu .nav-menu a:hover {
  color: var(--sage);
  background: var(--stone);
}

.menu-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
  color: var(--slate);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 102;
  transition: background var(--transition-fast);
}

.menu-close:hover {
  background: var(--smoke);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, rgba(26, 37, 34, 0.82) 0%, rgba(45, 74, 66, 0.7) 50%, rgba(74, 124, 111, 0.4) 100%), url('../img/hero-bg.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.25rem, 4vw, 1.9rem);
}

.hero-content p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  opacity: 0.95;
  margin-bottom: var(--space-lg);
  max-width: 32ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.15);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
}

.hero-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 12rem;
}

.hero-figure-inner {
  width: 8rem;
  height: 8rem;
  position: relative;
}

.hero-figure-inner .box {
  position: absolute;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  animation: float 4s ease-in-out infinite;
}

.hero-figure-inner .box:nth-child(1) { width: 3rem; height: 3rem; top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-figure-inner .box:nth-child(2) { width: 2.5rem; height: 2.5rem; bottom: 2rem; left: 0; animation-delay: 0.5s; }
.hero-figure-inner .box:nth-child(3) { width: 2.8rem; height: 2.8rem; bottom: 1.5rem; right: 0; animation-delay: 1s; }
.hero-figure-inner .box:nth-child(4) { width: 2rem; height: 2rem; bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-0.5rem) translateX(-50%); }
}

.hero-figure-inner .box:nth-child(2),
.hero-figure-inner .box:nth-child(3),
.hero-figure-inner .box:nth-child(4) {
  transform: none;
}

.hero-figure-inner .box:nth-child(2) { animation-name: floatLeft; }
.hero-figure-inner .box:nth-child(3) { animation-name: floatRight; }
.hero-figure-inner .box:nth-child(4) { animation-name: floatCenter; }

@keyframes floatLeft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.4rem); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.4rem); }
}

@keyframes floatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-0.3rem); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  margin-top: var(--space-md);
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--moss);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
}

.section-title span {
  color: var(--sage);
  font-size: 0.78em;
  font-weight: 500;
  display: block;
  margin-bottom: var(--space-xs);
}

.intro-block {
  background: var(--white);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--stone);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-grid.reverse .intro-text {
  order: 2;
}

.intro-text h2 {
  margin-bottom: var(--space-md);
  color: var(--ink);
}

.intro-text p {
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  background: var(--stone);
  border-radius: var(--radius-lg);
  font-size: clamp(3rem, 8vw, 4.5rem);
  color: var(--sage);
}

.icon-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
}

.icon-row i {
  margin-right: var(--space-sm);
  color: var(--sage);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-image,
.card-icon {
  aspect-ratio: 16/10;
  background: var(--stone);
  object-fit: cover;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--sage);
}

.card-body {
  padding: var(--space-lg);
}

.card-body h3 {
  margin-bottom: var(--space-sm);
  color: var(--ink);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

.card-body p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.voices-block {
  background: var(--white);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.voice-item {
  padding: var(--space-lg);
  background: var(--sand);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--clay);
}

.voice-item blockquote {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--slate);
  margin-bottom: var(--space-sm);
  line-height: 1.55;
}

.voice-item cite {
  font-size: 0.8rem;
  color: var(--smoke);
  font-style: normal;
}

.voice-item .voice-label {
  font-size: 0.75rem;
  color: var(--sage);
  margin-top: var(--space-xs);
}

.trust-strip {
  background: var(--moss);
  color: var(--white);
  padding: var(--space-lg) 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  font-size: 0.8rem;
  font-weight: 500;
}

.trust-strip i {
  margin-right: var(--space-sm);
  color: var(--clay);
}

.how-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.how-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.how-list .step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.how-list h3 {
  margin-bottom: var(--space-xs);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.how-list p {
  font-size: 0.875rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--moss) 100%);
  color: var(--white);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 0 var(--space-md) var(--space-2xl);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
}

.cta-banner p {
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  opacity: 0.95;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--moss);
}

.cta-banner .btn-primary:hover {
  background: var(--stone);
  color: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: var(--smoke);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-col h4 {
  color: var(--white);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--space-sm);
}

.footer-col a {
  color: var(--smoke);
  font-size: 0.8125rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

.page-hero {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
  background: var(--stone);
  text-align: center;
}

.page-hero h1 {
  color: var(--ink);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
}

.page-hero p {
  font-size: 0.9rem;
  max-width: 42ch;
  margin: 0 auto;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-info {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.contact-details i {
  color: var(--sage);
  margin-top: 0.2rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  margin-bottom: var(--space-lg);
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-group.checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.form-group.checkbox a {
  text-decoration: underline;
}

.map-wrap {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--stone);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.pricing-card h3 {
  color: var(--ink);
  margin-bottom: var(--space-sm);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.8vw, 1.6rem);
  font-weight: 700;
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
}

.pricing-card li {
  padding: var(--space-xs) 0;
  padding-left: 1.25rem;
  position: relative;
}

.pricing-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--sage);
}

.legal-page {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
}

.legal-page .container {
  max-width: 50rem;
}

.legal-page h1 {
  color: var(--ink);
  margin-bottom: var(--space-lg);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

.legal-page h2 {
  color: var(--ink);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.legal-page p,
.legal-page li {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.legal-page ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  color: var(--sage);
  font-weight: 500;
}

.home-button:hover {
  color: var(--moss);
}

.table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.legal-page th,
.legal-page td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--stone);
}

.legal-page th {
  background: var(--stone);
  font-weight: 600;
  color: var(--ink);
}

.legal-page tr:hover td {
  background: var(--sand);
}

.thank-you-page,
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + var(--space-3xl)) var(--space-md) var(--space-3xl);
}

.thank-you-page .center-block,
.error-page .center-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-page .center-block p,
.error-page .center-block p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.thank-you-page h1,
.error-page h1 {
  margin-bottom: var(--space-md);
  color: var(--ink);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 37, 34, 0.65);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 28rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

.popup-box h3 {
  margin-bottom: var(--space-md);
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.popup-box p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.popup-box .btn {
  margin-top: var(--space-md);
}

@media (min-width: 48rem) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
  }

  .menu-toggle {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    grid-template-columns: 1fr 1.2fr;
  }

  .map-wrap iframe {
    height: 20rem;
  }

  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-strip .container {
    gap: var(--space-2xl);
  }

  .how-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 47.9375rem) {
  .hero-figure {
    min-height: 10rem;
  }

  .hero-figure-inner {
    width: 6rem;
    height: 6rem;
  }

  .hero-figure-inner .box {
    font-size: 1.2rem;
  }

  .hero-figure-inner .box:nth-child(1) { width: 2.5rem; height: 2.5rem; }
  .hero-figure-inner .box:nth-child(2) { width: 2rem; height: 2rem; bottom: 1.5rem; }
  .hero-figure-inner .box:nth-child(3) { width: 2.2rem; height: 2.2rem; bottom: 1rem; }
  .hero-figure-inner .box:nth-child(4) { width: 1.6rem; height: 1.6rem; }
}

@media (max-width: 20rem) {
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
}
