:root {
  --background: #fffbf5;
  --foreground: #000000;
  --primary: #441340;
  --primary-strong: #441340;
  --secondary: #db8cb3;
  --accent: #f3dce8;
  --muted: #000000;
  --border: #e8e6f1;
  --card: #fff;
  --shadow: 0 20px 60px -25px rgba(0, 0, 0, 0.28);
  --radius: 16px;
  --max-width: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.8;
  font-size: 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("logo/fc1e0b70-fb3e-4f15-b675-83d32cb1feec.png");
  background-repeat: no-repeat;
  background-position: center 65%;
  background-size: min(80vw, 800px);
  opacity: 0.06;
  filter: saturate(0.9);
  z-index: 0;
}

.home::before {
  display: block;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}

p {
  font-style: normal;
  font-weight: 500;
  color: var(--foreground);
}

.container {
  width: min(var(--max-width), 96%);
  margin: 0 auto;
}

.topbar {
  background: #f7f7fb;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  padding: 8px 0;
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar__left {
  gap: 8px;
}

.topbar__right {
  font-weight: 600;
  justify-content: flex-end;
}

.topbar__dot {
  color: #a0a4b2;
}

.topbar__location {
  font-weight: 500;
}

.topbar__muted {
  color: #6b7280;
}

.topbar__phone {
  font-weight: 800;
  color: var(--foreground);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
}

.badge--outline {
  background: #e8f6ed;
  color: #0f9d58;
  border: 1px solid #c9ead7;
}

.topbar__info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.icon {
  font-size: 14px;
}

.divider {
  opacity: 0.4;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary-strong);
  background: #f3dce8;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #e6c4d6;
}

.link-strong {
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #ededf3;
  box-shadow: 0 16px 28px -26px rgba(0, 0, 0, 0.35);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 86px;
  gap: 16px;
  padding: 10px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand__name {
  font-family: "Playfair Display", "Merriweather", serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--primary-strong);
}

.brand__tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 600;
  color: var(--foreground);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
}

.nav a {
  padding: 9px 10px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  font-size: 16px;
}

.nav a:hover {
  color: var(--primary-strong);
  background: rgba(68, 19, 64, 0.08);
  transform: translateY(-1px);
}

.nav a.active {
  color: var(--primary-strong);
  border-bottom: 2px solid var(--primary-strong);
  border-radius: 0;
  padding-bottom: 10px;
}

.nav__cta {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 34px -18px rgba(68, 19, 64, 0.55);
  padding: 10px 18px;
  border-radius: 999px;
  animation: cta-pulse 2.6s ease-in-out infinite;
}

.hero {
  padding: 70px 0 40px;
  background: var(--background);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(64px, 9vw, 110px);
  align-items: center;
}

.hero__text {
  max-width: 560px;
  margin-left: -48px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid #e6e6ef;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.2s, opacity 0.2s;
}

.detail-image img,
.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero__text h1 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(50px, 6vw, 66px);
  line-height: 1.08;
  margin: 20px 0 36px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.text-primary {
  color: var(--primary);
}

.hero__text p {
  font-size: 23px;
  color: var(--muted);
  max-width: 660px;
  margin: 0 0 38px;
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary-strong);
  border: 1px solid rgba(68, 19, 64, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 18px -12px rgba(0, 0, 0, 0.22);
}

.pill--icon {
  font-size: 14px;
}

.pill__icon {
  font-size: 18px;
}

.pill--light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.pill--secondary {
  background: rgba(219, 140, 179, 0.18);
  color: var(--primary-strong);
  border: 1px solid rgba(219, 140, 179, 0.35);
}

.pill--muted {
  background: rgba(219, 140, 179, 0.16);
  color: var(--primary-strong);
  border: 1px solid rgba(219, 140, 179, 0.32);
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 30px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border 0.2s;
  min-height: 64px;
  font-size: 19px;
}

.btn-pill {
  border-radius: 14px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 38px -18px rgba(68, 19, 64, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark {
  background: #fff;
  color: #111827;
  border-color: #111827;
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.3);
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: linear-gradient(180deg, #f9d9ec, #db8cb3);
  color: #441340;
  border: 1px solid #eac3d9;
  box-shadow: 0 16px 32px -20px rgba(68, 19, 64, 0.38);
}

.btn:hover {
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.hero__badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.chip {
  background: #f3dce8;
  color: var(--primary-strong);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid #e6c4d6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chip__icon {
  font-size: 16px;
}

.chip__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary-strong);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.chip--green {
  background: #f3dce8;
  color: var(--primary-strong);
  border-color: #e6c4d6;
}

.chip--blue {
  background: #f8e8f1;
  color: var(--primary-strong);
  border: 1px solid #eed3e3;
}

.hero__image {
  position: relative;
  max-width: 1215px;
  margin-left: auto;
}

.hero__image img {
  width: 100%;
  max-height: 1082px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 28px 48px -28px rgba(0, 0, 0, 0.4);
  transform: rotate(4deg);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.hero__image:hover img {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 32px 60px -32px rgba(0, 0, 0, 0.45);
}

.hero__card {
  position: absolute;
  right: 20px;
  bottom: -28px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 22px 42px -20px rgba(0, 0, 0, 0.35);
  border: 1px solid #f1eef8;
  width: 260px;
}


.stars {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 3px;
}

.hero__quote {
  font-weight: 700;
  font-size: 17px;
  margin: 4px 0 2px;
}

.hero__quote-sub {
  color: var(--muted);
  font-size: 14px;
}

/* Homepage spacing adjustments to visually enlarge each block */
.home .hero {
  padding: clamp(90px, 10vw, 140px) 0 clamp(90px, 10vw, 150px);
}

.home .hero__grid {
  gap: clamp(40px, 6vw, 88px);
}

.home .section {
  padding: clamp(110px, 12vw, 180px) 0;
}

.home .section-why {
  padding-top: clamp(120px, 13vw, 180px);
  padding-bottom: clamp(108px, 11vw, 160px);
}

.home .call-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

.home .section-story {
  padding: clamp(100px, 11vw, 160px) 0;
}

.home .section--primary {
  padding: clamp(92px, 10vw, 148px) 0;
}

.home .services-section .service-cards {
  gap: clamp(32px, 4vw, 40px);
}

.home .services-section .service-image img {
  height: 260px;
}

.section {
  padding: clamp(90px, 9vw, 140px) 0;
}

.section--light {
  background: #fff;
}

.section--primary {
  background: linear-gradient(135deg, #441340 0%, #7b2f6c 45%, #db8cb3 100%);
  color: #fff;
}

.section--border {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-story {
  background: #f9f7fc;
  padding: clamp(60px, 8vw, 100px) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.story-text {
  max-width: 520px;
}

.story-text h2 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(34px, 5vw, 44px);
  line-height: 1.15;
  margin: 10px 0 40px;
}

.story-eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong);
  font-size: 13px;
  margin-bottom: 10px;
}

.story-quote {
  font-size: 23px;
  line-height: 1.8;
  color: var(--foreground);
  margin: 0 0 14px;
  font-style: italic;
  font-weight: 500;
}

.story-link {
  font-weight: 700;
  color: var(--primary-strong);
  text-decoration: none;
}

.story-link:hover {
  text-decoration: underline;
}

.story-image img {
  width: 100%;
  max-width: 640px;
  max-height: 460px;
  border-radius: 18px;
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  transform: rotate(3deg);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.story-image:hover img {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.42);
}

.section-why {
  background: #fff;
  padding-top: 90px;
  padding-bottom: 70px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 90px;
  align-items: start;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 24px;
}

.why-item {
  padding: 10px 24px;
  color: var(--foreground);
  position: relative;
  border-right: 1px solid #f0eafe;
}

.why-item h3 {
  font-family: "Playfair Display", "Merriweather", serif;
  margin: 18px 0 16px;
  font-size: 28px;
  font-weight: 800;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 19px;
  max-width: 360px;
  margin-inline: auto;
}

.why-icon {
  width: 98px;
  height: 98px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0eafe;
  color: var(--primary-strong);
  font-size: 42px;
  border: 2px solid #e5dcfb;
  box-shadow: 0 18px 34px -22px rgba(0, 0, 0, 0.22);
}

.why-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--primary-strong);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-divider {
  display: none;
}

@media (min-width: 900px) {
  .why-item:last-child {
    border-right: none;
  }
}
.call-section {
  background: #441340;
  padding: clamp(52px, 7vw, 90px) 0;
  color: #fff;
}

.call-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  flex-wrap: wrap;
}

.call-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
  max-width: 520px;
}

.call-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: transparent;
  font-size: 28px;
}

.call-icon svg {
  width: 60px;
  height: 60px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.call-text p {
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.call-card {
  background: #fff;
  color: var(--foreground);
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 22px 48px -26px rgba(0, 0, 0, 0.35);
  border: 1px solid #f1eef8;
}

.call-card label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--foreground);
}

.call-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.call-form-row input {
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.call-form-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(68, 19, 64, 0.18);
}

.btn-call {
  height: 58px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid #eac3d9;
  background: linear-gradient(180deg, #f9d9ec, #db8cb3);
  color: #441340;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.2s;
  box-shadow: 0 12px 30px -18px rgba(68, 19, 64, 0.35);
}

.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -18px rgba(68, 19, 64, 0.4);
}

@keyframes cta-pulse {
  0% { box-shadow: 0 16px 34px -18px rgba(68, 19, 64, 0.6), 0 0 0 0 rgba(68, 19, 64, 0.32); }
  60% { box-shadow: 0 16px 34px -18px rgba(68, 19, 64, 0.6), 0 0 0 12px rgba(68, 19, 64, 0); }
  100% { box-shadow: 0 16px 34px -18px rgba(68, 19, 64, 0.6), 0 0 0 0 rgba(68, 19, 64, 0); }
}

@media (max-width: 800px) {
  .call-form-row {
    grid-template-columns: 1fr;
  }
  .call-card {
    width: 100%;
  }
}

.services-section {
  background: #fff;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.service-card {
  border: 1px solid #e8e2f5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px -26px rgba(0, 0, 0, 0.32);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f3dce8;
  color: var(--primary-strong);
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 10px 20px -16px rgba(0, 0, 0, 0.35);
}

.service-body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
}

.service-body h3 {
  margin: 0;
  font-family: "Playfair Display", "Merriweather", serif;
  color: var(--primary-strong);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-icon {
  font-size: 18px;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.service-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--foreground);
  display: grid;
  gap: 8px;
  font-size: 18px;
}

.service-link {
  font-weight: 700;
  color: var(--primary-strong);
  text-decoration: none;
  font-size: 18px;
}

.service-link:hover {
  text-decoration: underline;
}

.services-hero {
  background: #f7f2ff;
  text-align: center;
  padding: clamp(50px, 8vw, 90px) 0;
}

.services-hero .container {
  width: min(var(--max-width), 98%);
}

.services-hero h1 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(40px, 6vw, 58px);
  margin: 0 0 14px;
  color: var(--primary-strong);
}

.services-hero p {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(19px, 3.2vw, 24px);
  max-width: 960px;
  line-height: 1.65;
}

.detail-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(28px, 5.5vw, 42px);
  align-items: center;
  padding: clamp(24px, 5vw, 40px);
}

.detail-text h2 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(26px, 4vw, 32px);
  margin: 6px 0 12px;
}

.detail-text p {
  margin: 0 0 10px;
  color: var(--muted);
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3dce8;
  color: var(--primary-strong);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid rgba(68, 19, 64, 0.2);
  margin-bottom: 8px;
}

.detail-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: var(--foreground);
  display: grid;
  gap: 6px;
}

.detail-list li {
  position: relative;
  padding-left: 34px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23441340' stroke-width='2'/%3E%3Cpath d='M8 12.5l3 3 5-6' fill='none' stroke='%23441340' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.detail-cta {
  display: inline-flex;
  width: min(100%, 420px);
  justify-content: center;
  border-radius: 14px;
  margin-top: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 16px 34px -18px rgba(68, 19, 64, 0.55);
  padding: 14px 20px;
  min-height: 54px;
  font-size: 17px;
}

.detail-image img {
  width: 100%;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 20px 46px -28px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* About / story */
.about-hero {
  text-align: center;
  padding: clamp(60px, 9vw, 110px) 0 40px;
  background: var(--background);
}

.about-hero__inner {
  max-width: 920px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(40px, 6vw, 54px);
  color: var(--primary-strong);
  margin: 0 0 8px;
}

.about-hero__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.about-story {
  background: var(--background);
  padding-top: 0;
}

.story-layout {
  display: grid;
  grid-template-columns: auto auto;
  gap: 56px;
  align-items: start;
  justify-content: center;
  justify-items: start;
}

@media (max-width: 960px) {
  .story-layout {
    grid-template-columns: 1fr;
  }
}

.story-main {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 560px;
}

.story-main p {
  margin: 0;
  color: var(--foreground);
  line-height: 1.8;
  font-size: 19px;
}

.story-main .dropcap:first-letter {
  float: left;
  font-size: 46px;
  line-height: 1;
  padding-right: 12px;
  color: var(--primary-strong);
  font-family: "Playfair Display", "Merriweather", serif;
}

.about-quote {
  background: #f6f1ff;
  border-left: 4px solid var(--primary-strong);
  padding: 16px 18px;
  margin: 10px 0 6px;
  font-weight: 700;
  color: var(--primary-strong);
  font-style: italic;
  border-radius: 12px;
  box-shadow: 0 10px 26px -20px rgba(0, 0, 0, 0.32);
}

.story-side {
  display: grid;
  gap: 18px;
  max-width: 420px;
  width: 100%;
}

.story-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 18px 38px -30px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.story-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 260px;
}

.story-card__body {
  padding: 16px 18px 18px;
}

.story-card__title {
  font-weight: 800;
  color: var(--primary-strong);
  margin-bottom: 4px;
  font-size: 18px;
}

.story-card__sub {
  color: var(--muted);
  font-size: 15px;
}

blockquote,
.story-quote {
  quotes: none;
}

blockquote::before,
blockquote::after,
.story-quote::before,
.story-quote::after {
  content: none !important;
}

.story-quote span,
.text-primary,
.highlight {
  font-weight: 700;
  color: var(--primary);
}

.about-values {
  background: #f7f2ff;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.values-card {
  background: #f7f2ff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 36px -30px rgba(0, 0, 0, 0.28);
  border: 1px solid #ebe3f7;
  width: 100%;
}

.values-card h3 {
  margin-top: 0;
  font-family: "Playfair Display", "Merriweather", serif;
  color: var(--primary-strong);
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 16px;
  color: var(--foreground);
}

.value-num {
  font-weight: 800;
  color: var(--primary-strong);
  font-size: 16px;
}

.about-cta {
  background: var(--background);
  text-align: center;
  padding-top: clamp(24px, 6vw, 60px);
}

.about-cta__inner {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.about-cta h3 {
  margin: 0;
  font-family: "Playfair Display", "Merriweather", serif;
  color: var(--primary-strong);
  font-size: clamp(22px, 3vw, 26px);
}

.about-cta .btn {
  border-radius: 14px;
  padding: 14px 28px;
}

.about-values {
  padding-top: clamp(30px, 6vw, 50px);
}

.section__title {
  text-align: center;
  margin-bottom: 120px;
}

.section__title--compact {
  margin-bottom: 40px;
}

.section__title h2,
.section__title h1 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 14px;
  line-height: 1.15;
}

.section__title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.35);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.card--accent {
  border-color: rgba(68, 19, 64, 0.3);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card__body {
  padding: 18px 18px 22px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  background: rgba(219, 140, 179, 0.25);
  color: var(--primary-strong);
}

.eyebrow--blue {
  background: rgba(219, 140, 179, 0.2);
  color: var(--primary-strong);
}

.eyebrow--green {
  background: rgba(219, 140, 179, 0.18);
  color: var(--primary-strong);
}

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

.card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--foreground);
}

.list li {
  padding: 6px 0;
  border-bottom: 1px solid #f3f3f3;
}

.list li:last-child {
  border-bottom: none;
}

.section__actions {
  text-align: center;
  margin-top: 72px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(22px, 4vw, 36px);
  align-items: center;
}

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

.lead {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.lead-light {
  color: rgba(255, 255, 255, 0.9);
}

.values {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.values strong {
  display: block;
}

.values span {
  color: var(--muted);
  display: block;
}

.photo-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.35);
}

.photo-card img {
  width: 100%;
  display: block;
}

.photo-card__caption {
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid #f2f2f2;
}

.caption__title {
  font-weight: 700;
  color: var(--primary);
}

.caption__text {
  color: var(--muted);
  font-size: 14px;
}

.photo-card--shadow {
  box-shadow: 0 26px 50px -28px rgba(0, 0, 0, 0.45);
  transform: translate3d(0, 0, 0);
}

.text-light h2 {
  color: #fff;
  margin: 10px 0;
}

.text-light p,
.text-light span {
  color: rgba(255, 255, 255, 0.9);
}

.list--light li {
  border-color: rgba(255, 255, 255, 0.24);
}

.recruitment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 26px -18px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.recruitment-points {
  margin: 30px 0 38px;
  padding: 0;
  list-style: none;
  color: #fff;
  display: grid;
  gap: 10px;
}

.recruitment-points li {
  position: relative;
  padding-left: 34px;
  font-weight: 700;
}

.recruitment-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23f5e2c6' stroke-width='2'/%3E%3Cpath d='M8 12.5l3 3 5-6' fill='none' stroke='%23f5e2c6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(20px, 4vw, 28px);
  box-shadow: 0 12px 30px -24px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.panel__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 18px -16px rgba(0, 0, 0, 0.3);
}

.contact-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-link {
  color: var(--primary);
  font-weight: 700;
}

.form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, 0.32);
  max-width: 560px;
  width: 100%;
}

.form-card h3 {
  margin-top: 0;
}

form label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(68, 19, 64, 0.18);
}

.helper {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.footer {
  background: #f7f7fb;
  border-top: 1px solid #e6e6ef;
  padding: 54px 0 36px;
  color: var(--foreground);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 28px;
}

.footer__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer__section--accordion {
  display: grid;
  gap: 10px;
}

.footer__toggle {
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.footer__toggle::after {
  content: "v";
  font-size: 14px;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.footer__section.is-open .footer__toggle::after {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .footer__toggle {
    cursor: default;
  }

  .footer__toggle::after {
    content: "";
  }
}

.footer__panel {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.footer__links {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__text {
  color: var(--muted);
  line-height: 1.6;
}

.footer__bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e4e4e4;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 16px;
  color: var(--muted);
}

.recruitment-hero {
  background: #fdfcf9;
  padding-top: clamp(50px, 7vw, 90px);
  padding-bottom: clamp(10px, 3vw, 20px);
}

.recruitment-hero h1 {
  font-family: "Playfair Display", "Merriweather", serif;
  font-size: clamp(34px, 5vw, 42px);
  color: var(--primary-strong);
  margin: 0 0 10px;
}

.recruitment-hero .lead {
  margin: 0;
  max-width: 860px;
}

.recruitment-grid {
  background: #fdfcf9;
  padding-top: 0;
}

.recruit-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(18px, 4vw, 32px);
  align-items: start;
}

@media (max-width: 960px) {
  .recruit-layout {
    grid-template-columns: 1fr;
  }
}

.recruit-cards {
  display: grid;
  gap: 16px;
}

.recruit-card {
  background: #fff;
  border: 1px solid #e9e3f2;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 14px 34px -28px rgba(0, 0, 0, 0.32);
  border-left-width: 6px;
  border-left-style: solid;
}

.recruit-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--foreground);
}

.recruit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.recruit-card--purple { border-left-color: var(--primary-strong); }
.recruit-card--amber { border-left-color: #db8cb3; }
.recruit-card--green { border-left-color: #1faf73; }

.recruit-form-card {
  background: #fff;
  border: 1px solid #ece7f2;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: 0 16px 38px -30px rgba(0, 0, 0, 0.35);
  width: 100%;
}

.recruit-form-card h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", "Merriweather", serif;
  color: var(--primary-strong);
}

.recruit-form-card form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-row--split {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.recruit-submit {
  width: 100%;
  border-radius: 12px;
}

.contact-section {
  background: #fdfcf9;
  padding-top: clamp(28px, 5vw, 46px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 32px);
  align-items: start;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 14px 38px -30px rgba(0, 0, 0, 0.35);
  padding: 18px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(68, 19, 64, 0.08);
  color: var(--primary-strong);
}

.contact-card__title {
  font-weight: 800;
  color: var(--primary-strong);
  font-size: 18px;
}

.contact-card__link {
  display: inline-block;
  font-weight: 800;
  color: var(--primary-strong);
  font-size: 20px;
  text-decoration: none;
}

.contact-card__link:hover {
  text-decoration: underline;
}

.contact-card__text {
  margin: 6px 0 0;
  color: var(--foreground);
  line-height: 1.6;
}

.contact-card__muted {
  color: var(--muted);
  font-size: 14px;
}

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ece7f2;
  box-shadow: 0 16px 40px -30px rgba(0, 0, 0, 0.4);
  padding: clamp(18px, 3vw, 26px);
}

.contact-form-card h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Merriweather", serif;
  color: var(--primary-strong);
}

.contact-form-card form {
  display: grid;
  gap: 12px;
}

.contact-submit {
  width: 100%;
  border-radius: 12px;
}


.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  h4,
  h5,
  h6 {
    font-size: 17px;
    line-height: 1.4;
  }

  p,
  li {
    font-size: 16px;
    line-height: 1.6;
  }

  .container {
    width: min(var(--max-width), 90%);
  }

  .topbar {
    display: none;
  }

  .topbar {
    font-size: 14px;
    padding: 14px 0;
  }

  .topbar__content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .topbar__left,
  .topbar__right {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 6px;
    column-gap: 10px;
  }

  .topbar__right {
    flex-direction: column;
    font-weight: 600;
  }

  .topbar__info {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .header__content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0 10px;
  }

  .brand {
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }

  .brand__name {
    font-size: 26px;
  }

  .brand__tagline {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    display: flex;
    align-self: flex-end;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: -8px;
    left: -8px;
    background: #fff;
    padding: 14px;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 14px 34px -22px rgba(0, 0, 0, 0.4);
    border-radius: 14px;
    border: 1px solid #ecebf3;
    z-index: 20;
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
  }

  .nav a:hover,
  .nav a:focus {
    background: #f6f1ff;
  }

  .header.nav-open .nav {
    display: flex;
  }

  .header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 52px 0 34px;
  }

  .hero__grid {
    gap: 30px;
  }

  .hero__text {
    margin-left: 0;
  }

  .hero__text h1 {
    font-size: 30px;
  }

  .hero__text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero__image {
    margin: 0 auto;
  }

  .hero__image img {
    max-height: 340px;
    transform: none;
    width: 100%;
  }

  .hero__card {
    position: static;
    margin-top: 12px;
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .section__title {
    margin-bottom: 32px;
  }

  .section__title p {
    font-size: 16px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-image img {
    height: auto;
    max-height: 220px;
  }

  .detail-split {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 16px;
  }

  .detail-image img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-width: 4px;
    box-shadow: 0 12px 30px -20px rgba(0, 0, 0, 0.32);
  }

  .call-inner {
    gap: 18px;
    flex-direction: column;
  }

  .call-card {
    width: 100%;
    min-width: auto;
  }

  .form-card {
    max-width: 100%;
  }

  .footer {
    padding: 42px 0 30px;
  }

  .footer__grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .footer__links {
    font-size: 14px;
  }

  .footer__bottom {
    font-size: 14px;
    line-height: 1.6;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}
.no-scroll {
  overflow: hidden;
}

.devis-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 16px;
}

.devis-overlay.is-open {
  display: flex;
}

.devis-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 26px 60px -28px rgba(0, 0, 0, 0.45);
  padding: clamp(22px, 3vw, 30px);
  position: relative;
}

.devis-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #4a4a4a;
}

.devis-modal h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--primary-strong);
}

.devis-subtitle {
  margin: 0 0 18px;
  color: #4a4a4a;
}

.devis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 16px;
}

.devis-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: #2b2b2b;
}

.devis-field__label {
  font-weight: 600;
}

.devis-field input,
.devis-field select,
.devis-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.devis-field select {
  height: 44px;
}

.devis-field textarea {
  min-height: 110px;
  resize: vertical;
}

.devis-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #2b2b2b;
}

.devis-option input {
  width: auto;
  accent-color: var(--primary);
}

.devis-dropdown {
  position: relative;
  display: grid;
  gap: 6px;
}

.devis-dropdown__toggle {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  font-family: inherit;
  text-align: left;
  background: #fff;
  color: #2b2b2b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.devis-dropdown__toggle::after {
  content: "▾";
  color: #6b7280;
  font-size: 14px;
}

.devis-dropdown.is-open .devis-dropdown__toggle::after {
  transform: rotate(180deg);
}

.devis-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: none;
  box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.35);
  z-index: 4;
  max-height: 240px;
  overflow: auto;
}

.devis-dropdown.is-open .devis-dropdown__menu {
  display: grid;
  gap: 8px;
}



.footer__section.is-open .footer__toggle::after {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .footer__toggle {
    cursor: default;
  }

  .footer__toggle::after {
    content: "";
  }
}

.footer__panel {
    display: none;
  }

  .footer__section.is-open .footer__panel {
    display: grid;
  }
}

.devis-field input:focus,
.devis-field select:focus,
.devis-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(68, 19, 64, 0.16);
}

.devis-field.full {
  grid-column: 1 / -1;
}

.devis-privacy {
  margin: 10px 0 0;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  body {
    line-height: 1.6;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  .section,
  .hero,
  .call-section,
  .section-story,
  .section--primary,
  .services-hero,
  .about-hero,
  .recruitment-hero,
  .contact-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero__actions,
  .panel__actions,
  .section__actions {
    flex-direction: column;
  }

  .btn,
  .btn-call,
  .btn-light,
  .btn-outline,
  .btn-outline-dark,
  .nav__cta {
    width: 100%;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }

  .btn-call,
  .btn-light {
    box-shadow: 0 16px 32px -20px rgba(68, 19, 64, 0.4);
  }

  .hero__text h1 {
    font-size: clamp(36px, 9vw, 48px);
  }

  h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  h3 {
    font-size: clamp(20px, 5.5vw, 26px);
  }

  p,
  .story-quote,
  .section__title p,
  .footer__text {
    line-height: 1.6;
  }

  input,
  textarea,
  select,
  .devis-dropdown__toggle {
    font-size: 16px;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .service-image img {
    border-radius: 16px;
  }

  .footer__toggle::after {
    content: "+";
  }

  .footer__section.is-open .footer__toggle::after {
    content: "-";
    transform: none;
  }

  .footer__panel {
    display: none;
  }

  .footer__section.is-open .footer__panel {
    display: grid;
  }
}

