:root {
  --parchment: #f3ebdd;
  --parchment-soft: #fbf7ef;
  --espresso: #2b1b18;
  --chestnut: #7a4a2f;
  --terracotta: #c75c3a;
  --sage: #779b70;
  --olive: #556b3f;
  --soft-teal: #6fa6a6;
  --blush: #d9a7a1;
  --line: rgba(43, 27, 24, 0.18);
  --shadow: 0 18px 48px rgba(43, 27, 24, 0.12);
  --radius: 8px;
  --max: 1160px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--espresso);
  background:
    radial-gradient(circle at top left, rgba(119, 155, 112, 0.14), transparent 30rem),
    linear-gradient(180deg, var(--parchment-soft), var(--parchment));
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(43, 27, 24, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 27, 24, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1.15rem;
}

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

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--espresso);
  color: var(--parchment);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem clamp(1rem, 4vw, 3rem);
  background: rgba(243, 235, 221, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 150px;
  height: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.4vw, 1.8rem);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--olive);
  border-color: var(--sage);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--parchment-soft);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--espresso);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.12rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  background: var(--sage);
  color: #fffdf8;
  font-weight: 800;
  font-size: 0.87rem;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 22px rgba(85, 107, 63, 0.16);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--olive);
  border-color: var(--olive);
}

.button-secondary {
  background: transparent;
  color: var(--espresso);
  border-color: var(--chestnut);
  box-shadow: none;
}

.button-secondary:hover {
  color: #fffdf8;
  background: var(--chestnut);
  border-color: var(--chestnut);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  font-size: 0.74rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.centered {
  justify-content: center;
}

.hero,
.page-hero,
.section,
.final-cta,
.site-footer {
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.hero {
  max-width: 1380px;
  min-height: calc(92vh - var(--header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(1.5rem, 4.5vh, 3.8rem);
  padding-bottom: clamp(1.5rem, 4.5vh, 3.8rem);
}

.hero-copy {
  max-width: 680px;
}

.hero-copy p:not(.eyebrow),
.page-hero p,
.final-cta p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-media {
  margin: 0;
  position: relative;
}

.hero-media::before,
.image-card::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid rgba(122, 74, 47, 0.28);
  border-radius: var(--radius);
  z-index: -1;
}

.hero-media img,
.image-card img {
  width: 100%;
  aspect-ratio: 1.17 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  max-width: 38rem;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  color: rgba(43, 27, 24, 0.68);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: clamp(2.75rem, 5.5vw, 4.8rem);
  padding-bottom: clamp(2.75rem, 5.5vw, 4.8rem);
}

.section-muted {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.45);
}

.section-muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.intro-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  gap: clamp(1.5rem, 3.8vw, 3rem);
}

.two-col {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.align-center {
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.65rem;
  text-align: center;
}

.feature-list,
.mini-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.mini-list article,
.faq-list details,
.contact-method {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.62);
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: var(--terracotta);
}

.card-grid,
.catalogue-grid,
.bundle-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bundle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.soft-card,
.status-card,
.catalogue-card,
.bundle-card {
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 28px rgba(43, 27, 24, 0.07);
}

.studio-card {
  display: flex;
  flex-direction: column;
}

.studio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.studio-card .text-link {
  margin-top: auto;
}

.soft-card:nth-child(2n),
.catalogue-card:nth-child(3n + 2) {
  background: rgba(217, 167, 161, 0.16);
}

.soft-card:nth-child(3n),
.catalogue-card:nth-child(3n) {
  background: rgba(111, 166, 166, 0.13);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border: 1px solid rgba(85, 107, 63, 0.3);
  border-radius: 999px;
  background: rgba(119, 155, 112, 0.16);
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  color: var(--terracotta);
  font-weight: 800;
}

.bundle-card {
  display: flex;
  flex-direction: column;
}

.bundle-card .button {
  margin-top: auto;
}

.bundle-card.featured {
  border-color: rgba(199, 92, 58, 0.55);
  background: rgba(199, 92, 58, 0.08);
  transform: translateY(-0.35rem);
}

.label {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(119, 155, 112, 0.18);
  color: var(--olive);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.label.active {
  background: rgba(199, 92, 58, 0.13);
  color: var(--terracotta);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 1.45rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.steps.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps article {
  padding: 1.3rem;
  border-left: 3px solid var(--sage);
  background: rgba(255, 253, 248, 0.66);
  border-radius: var(--radius);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--parchment);
  font-weight: 800;
}

.gallery-strip,
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-strip figure,
.inspiration-grid figure,
.gallery-grid figure,
.image-card {
  position: relative;
  margin: 0;
}

.gallery-strip img,
.inspiration-grid img,
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.gallery-strip figcaption,
.inspiration-grid figcaption,
.gallery-grid figcaption {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.inspiration-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.inspiration-grid figcaption {
  text-align: center;
  color: var(--olive);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figcaption span {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  color: rgba(43, 27, 24, 0.72);
}

.final-cta {
  max-width: 940px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.8rem);
  padding-top: clamp(2.3rem, 4.5vw, 3.8rem);
  padding-bottom: clamp(2.3rem, 4.5vw, 3.8rem);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: clamp(3rem, 6.5vw, 5rem);
  padding-bottom: clamp(2.2rem, 5vw, 4rem);
}

.page-hero.compact {
  max-width: 900px;
  text-align: center;
}

.kids-hero {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2));
  padding-right: max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max)) / 2));
  min-height: 540px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(243, 235, 221, 0.95), rgba(243, 235, 221, 0.62)),
    url("assets/images/felt-14.png") right center / min(56vw, 860px) auto no-repeat;
}

.kids-hero > div {
  max-width: 690px;
}

.badge-row,
.tag-cloud,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.3rem 0;
}

.centered-tags {
  justify-content: center;
  text-align: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="gallery"] .page-hero,
body[data-page="contact"] .page-hero {
  padding-bottom: clamp(0.75rem, 1.5vw, 1.35rem);
}

body[data-page="gallery"] .page-hero + .section,
body[data-page="contact"] .page-hero + .section {
  padding-top: clamp(1rem, 2vw, 1.8rem);
}

body[data-page="gallery"] .filter-row {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

body[data-page="kids"] .section-muted .note {
  text-align: center;
}

.badge-row span,
.tag-cloud span {
  display: inline-flex;
  padding: 0.45rem 0.74rem;
  border: 1px solid rgba(85, 107, 63, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.note {
  color: rgba(43, 27, 24, 0.72);
  font-size: 0.9rem;
}

.text-link {
  color: var(--olive);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.26em;
}

.filter-row {
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-button {
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--espresso);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--sage);
  color: #fffdf8;
  border-color: var(--sage);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.7);
}

.contact-method {
  display: block;
  margin-bottom: 0.7rem;
  text-decoration: none;
}

.contact-method span {
  display: block;
  color: rgba(43, 27, 24, 0.68);
}

.contact-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.enquiry-form {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

[hidden] {
  display: none !important;
}

.conditional-section {
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(119, 155, 112, 0.28);
  border-radius: var(--radius);
  background: rgba(119, 155, 112, 0.08);
}

.conditional-section legend {
  padding: 0 0.45rem;
  color: var(--olive);
  font-weight: 800;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.form-grid > .full {
  grid-column: 1 / -1;
}

.field-label {
  margin: 0 0 0.35rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.choice-help {
  margin: 0 0 0.75rem;
  color: rgba(43, 27, 24, 0.68);
  font-size: 0.86rem;
}

.page-choice-groups {
  display: grid;
  gap: 1rem;
}

.page-choice-group {
  padding: 0.85rem;
  border: 1px solid rgba(119, 155, 112, 0.24);
  border-radius: calc(var(--radius) * 0.75);
  background: rgba(255, 253, 248, 0.52);
}

.page-choice-group h3 {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.7rem;
  color: var(--espresso);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
}

.page-choice-group h3 span {
  flex: 0 0 auto;
  color: var(--olive);
  font-size: 0.78rem;
}

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

.page-choice-grid label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(43, 27, 24, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  font-size: 0.82rem;
  line-height: 1.25;
}

.page-choice-grid input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  accent-color: var(--olive);
}

.page-choice-grid label:has(input:checked) {
  border-color: rgba(85, 107, 63, 0.45);
  background: rgba(119, 155, 112, 0.14);
}

.page-choice-grid label:has(input:disabled) {
  opacity: 0.55;
}

.field-note {
  color: rgba(43, 27, 24, 0.68);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

.selection-summary {
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(85, 107, 63, 0.3);
  border-radius: var(--radius);
  background: rgba(119, 155, 112, 0.1);
}

.selection-summary h2 {
  margin: 0 0 0.75rem;
  color: var(--olive);
  font-size: 1.25rem;
}

.selection-summary > p {
  margin: 0;
  color: rgba(43, 27, 24, 0.68);
  font-size: 0.86rem;
}

.selection-summary dl {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 0.45rem 0.9rem;
  margin: 0;
}

.selection-summary dt {
  color: var(--espresso);
  font-size: 0.8rem;
  font-weight: 800;
}

.selection-summary dd {
  margin: 0;
  color: rgba(43, 27, 24, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

.design-disclaimer {
  margin: 0 0 1rem;
  padding: 1rem;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(185, 106, 79, 0.08);
}

.design-disclaimer h2 {
  margin: 0 0 0.5rem;
  color: var(--espresso);
  font-size: 1.05rem;
}

.design-disclaimer p {
  margin: 0;
  color: rgba(43, 27, 24, 0.74);
  font-size: 0.8rem;
  line-height: 1.6;
}

.design-disclaimer p + p {
  margin-top: 0.55rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(43, 27, 24, 0.22);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--espresso);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus,
.filter-button:focus,
.menu-toggle:focus {
  outline: 3px solid rgba(111, 166, 166, 0.5);
  outline-offset: 2px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 5.5rem;
  border-top: 1px solid var(--line);
  background: rgba(43, 27, 24, 0.045);
}

.footer-logo {
  width: 140px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--olive);
}

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fffdf8;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 26px rgba(43, 27, 24, 0.22);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.final-cta.standalone {
  margin: 0;
}

.thank-logo {
  width: 170px;
  margin: 0 auto 1.6rem;
  mix-blend-mode: multiply;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .site-header > .button {
    justify-self: end;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(243, 235, 221, 0.98);
  }

  .site-nav.open {
    display: grid;
    gap: 0.4rem;
  }

  .hero,
  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid.four,
  .catalogue-grid,
  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inspiration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    gap: 0.7rem;
    padding: 0.55rem 1rem;
  }

  .brand img {
    width: 118px;
    height: 50px;
  }

  .site-header > .button {
    display: none;
  }

  .hero,
  .page-hero,
  .section,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.8rem);
  }

  .hero {
    gap: 1.5rem;
  }

  .hero-media::before,
  .image-card::before {
    display: none;
  }

  .card-grid.four,
  .card-grid.three,
  .catalogue-grid,
  .bundle-grid,
  .gallery-strip,
  .inspiration-grid,
  .gallery-grid,
  .steps,
  .steps.five,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .bundle-card.featured {
    transform: none;
  }

  .kids-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(243, 235, 221, 0.94), rgba(243, 235, 221, 0.76)),
      url("assets/images/felt-14.png") center bottom / cover no-repeat;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .sticky-whatsapp {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }
}
