@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --ink: #2a1112;
  --muted: #6f5652;
  --soft: #fff8f6;
  --petal: #f7e5e1;
  --petal-strong: #f2cfca;
  --rose: #cf8484;
  --rose-deep: #a75f61;
  --line: #ead5d0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(79, 35, 33, 0.12);
  --content-max: 1100px;
  --page-gutter: clamp(18px, 5.8vw, 84px);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.topbar {
  min-height: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 18px;
  padding: 7px 5.8vw;
  background: linear-gradient(90deg, #f4d7d4 0%, #fae6e2 52%, #f2d3d0 100%);
  color: #3e2424;
  font-size: 12px;
  font-weight: 600;
}

.topbar p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  text-align: center;
}

.topbar svg,
.footer-services svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.site-header {
  min-height: 70px;
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 16px;
  padding: 0 5.8vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(234, 213, 208, 0.65);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.86;
  color: #8f7470;
  filter: blur(1.7px);
  opacity: 0.82;
  user-select: none;
}

.brand__name {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
}

.brand__tagline {
  align-self: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
}

.main-nav a {
  position: relative;
  padding: 27px 0;
  color: #211010;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.icon-button,
.circle-button,
.menu-toggle,
.modal__close {
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.icon-button {
  position: relative;
  width: 25px;
  height: 25px;
  padding: 0;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-radius: 999px;
  color: var(--white);
  background: #3a1515;
  font-size: 10px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-content: center;
  gap: 6px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] {
  color: var(--rose-deep);
  background: var(--soft);
  border-color: var(--rose);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin: 0 auto;
  scroll-margin-top: 96px;
}

.hero {
  width: 100%;
  height: clamp(380px, 31vw, 420px);
  display: grid;
  grid-template-columns: minmax(330px, 40%) minmax(0, 60%);
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 248, 0.96) 37%, rgba(248, 224, 219, 0.58) 100%),
    url("assets/hero-atmosphere.png") center / cover no-repeat;
}

.hero__content {
  width: min(100%, 420px);
  margin-left: 8.1vw;
  padding: 24px 0 22px;
  align-self: center;
  position: relative;
  z-index: 2;
}

.section-label {
  margin: 0 0 18px;
  color: #3b1718;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1,
.editorial-card h2,
.results h2,
.newsletter h2,
.modal h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.94;
}

.hero h1 {
  max-width: 370px;
  margin: 0;
  font-size: 51px;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--rose);
}

.hero__text {
  max-width: 345px;
  margin: 12px 0 14px;
  color: #392322;
  font-size: 14px;
  line-height: 1.58;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button--primary {
  min-width: 186px;
  padding: 0 26px;
  color: var(--white);
  background: var(--rose);
}

.button--small {
  min-height: 32px;
  padding: 0 20px;
  color: var(--white);
  background: var(--rose);
  font-size: 10px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--rose-deep);
  box-shadow: 0 12px 22px rgba(167, 95, 97, 0.22);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(350px, 100%);
  margin-top: 22px;
}

.hero-points p {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0;
  color: #2f201f;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-points svg {
  width: 24px;
  height: 24px;
}

.hero__visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
}

.products-section,
.testimonials-section {
  position: relative;
  padding: clamp(36px, 4.8vw, 54px) 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(26px, 2.35vw, 34px);
  font-weight: 600;
  line-height: 0.98;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  gap: 12px;
}

.products-section .carousel-controls,
.testimonials-section .carousel-controls {
  position: static;
  justify-content: flex-end;
  pointer-events: auto;
}

.testimonials-section .carousel-controls {
  top: auto;
}

.circle-button {
  width: 38px;
  height: 38px;
  border: 1px solid #e8c8c3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  pointer-events: auto;
}

.circle-button svg {
  width: 18px;
  height: 18px;
}

.circle-button:hover,
.circle-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rose);
  background: var(--soft);
}

.snap-rail {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.snap-rail::-webkit-scrollbar {
  display: none;
}

.product-rail {
  grid-auto-columns: calc((100% - 84px) / 4);
  gap: 28px;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__media {
  position: relative;
  height: clamp(156px, 14.5vw, 184px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff9f7;
  border-radius: 5px;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 4px 8px;
  color: #3c1a1a;
  background: #dba4a2;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 0;
  margin: 11px 0 3px;
  color: #2c1717;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-card p {
  min-height: 0;
  margin: 0 0 6px;
  color: #47312f;
  font-size: 12px;
}

.product-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

.commitments {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin: clamp(34px, 4vw, 46px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #fff9f7, #fbefec);
  border-radius: 4px;
  overflow: hidden;
}

.commitments article {
  min-height: 124px;
  padding: 18px 20px 19px;
  text-align: center;
  border-right: 1px solid #e8cbc5;
}

.commitments article:last-child {
  border-right: 0;
}

.commitments svg {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: #2e1818;
}

.commitments h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.05;
}

.commitments p {
  max-width: 200px;
  margin: 0 auto;
  color: #4d3532;
  font-size: 11px;
  line-height: 1.45;
}

.editorial {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0;
  margin-top: 24px;
}

.editorial-card {
  min-height: 258px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(170px, 42%);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(90deg, #fff8f6 0%, #f8e2dd 100%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.editorial-card > div {
  align-self: center;
  padding: 28px 24px 28px 28px;
}

.editorial-card .section-label {
  margin-bottom: 11px;
  font-size: 10px;
}

.editorial-card h2 {
  max-width: 330px;
  margin: 0 0 11px;
  font-size: 31px;
}

.editorial-card p:not(.section-label) {
  max-width: 315px;
  margin: 0 0 16px;
  color: #3e2927;
  font-size: 12px;
  line-height: 1.5;
}

.editorial-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.inline-link::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
  transition: transform 180ms ease;
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: translateX(4px);
}

.testimonials-section {
  padding-top: clamp(38px, 4.4vw, 52px);
}

.testimonial-rail {
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  padding: 0;
}

.testimonial-card {
  min-height: 158px;
  padding: 20px 22px 19px;
  scroll-snap-align: center;
  text-align: center;
  background: #fffafa;
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stars {
  margin: 0 0 7px;
  color: #c98786;
  font-size: 14px;
}

.testimonial-card blockquote {
  margin: 0 auto 14px;
  color: #4a3330;
  font-size: 12px;
  line-height: 1.45;
}

.client {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.client img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

.client p {
  margin: 0;
  font-size: 11px;
}

.client span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.results {
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 28px 32px;
  margin-top: 44px;
  background: #fbf0ed;
  border-radius: 4px;
}

.results__copy h2 {
  margin: 0 0 14px;
  font-size: 30px;
  text-transform: uppercase;
}

.results ul {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  color: #311a1a;
  font-size: 12px;
  font-weight: 600;
}

.results li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.results li::before {
  content: "✓";
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 1px solid #c39891;
  border-radius: 999px;
  color: #8b5e58;
  font-size: 11px;
}

.results__copy p {
  margin: 0;
  color: #5f4642;
  font-size: 10px;
  font-weight: 600;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
}

.before-after-grid article {
  min-width: 0;
  text-align: center;
}

.before-after-grid img {
  width: 100%;
  aspect-ratio: 180 / 70;
  max-width: none;
  object-fit: cover;
}

.before-after-grid div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
  color: #1f1111;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  min-height: 136px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 220px minmax(250px, 1fr) minmax(330px, 390px);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background: linear-gradient(90deg, #f4d8d4 0%, #f8e6e2 50%, #efc6c3 100%);
  border-radius: 4px;
}

.newsletter > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.newsletter h2 {
  margin: 0 0 7px;
  font-size: 32px;
}

.newsletter p {
  max-width: 390px;
  margin: 0;
  color: #553b37;
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-form {
  min-width: 0;
  padding-right: 22px;
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(140px, 170px);
  gap: 8px;
}

.newsletter .button--primary {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
}

.newsletter input[type="email"],
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  font-size: 12px;
}

.newsletter input[type="email"]:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(207, 132, 132, 0.18);
}

.consent {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: #5a3e3b;
  font-size: 10px;
}

.footer {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin: 12px auto 0;
  background: var(--white);
}

.footer-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 11px 28px 10px;
  border-bottom: 1px solid var(--line);
}

.footer-services p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: #2a1717;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-services small {
  display: block;
  color: #5b4440;
  font-size: 9px;
  font-weight: 600;
  text-transform: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.25fr 0.9fr 1.3fr;
  gap: 24px;
  padding: 14px 28px 8px;
}

.footer-main h2 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-main a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-bottom: 3px;
  color: #382321;
  font-size: 10px;
  line-height: 1.35;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--rose-deep);
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand {
  text-align: center;
}

.footer-brand .brand__name {
  display: block;
  font-size: 38px;
  filter: blur(1.8px);
  opacity: 0.58;
}

.footer-brand p {
  max-width: 190px;
  margin: 2px auto 0;
  color: #5f4642;
  font-size: 11px;
  line-height: 1.35;
}

.copyright {
  margin: 0;
  padding: 4px 0 8px;
  color: #4f3734;
  font-size: 10px;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  max-width: min(420px, calc(100% - 32px));
  padding: 13px 18px;
  color: var(--white);
  background: #2f1414;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(47, 20, 20, 0.22);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 18, 18, 0.36);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: 34px;
  background: var(--soft);
  box-shadow: var(--shadow);
  border-radius: 6px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 22px;
}

.modal h2 {
  margin: 0 36px 20px 0;
  font-size: 34px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: #422724;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-inline: 24px;
    font-size: 10px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    padding: 10px var(--page-gutter) 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(79, 35, 33, 0.12);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 12px 0;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .header-actions {
    gap: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .hero__content {
    width: min(100% - 40px, 520px);
    margin: 0 auto;
    padding: 34px 0 12px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-points {
    width: 100%;
  }

  .hero__visual {
    height: clamp(280px, 40vw, 330px);
  }

  .product-rail {
    grid-auto-columns: minmax(220px, 42%);
    gap: 22px;
  }

  .commitments {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitments article:nth-child(2) {
    border-right: 0;
  }

  .commitments article:nth-child(-n + 2) {
    border-bottom: 1px solid #e8cbc5;
  }

  .editorial {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .editorial-card {
    min-height: 260px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 42%);
  }

  .testimonial-rail {
    grid-auto-columns: minmax(260px, 58%);
    padding: 0;
  }

  .testimonial-card {
    min-height: 136px;
  }

  .results {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 24px;
  }

  .newsletter {
    grid-template-columns: 160px 1fr;
    height: auto;
    gap: 18px;
    padding: 0 20px 20px 0;
  }

  .newsletter-form {
    grid-column: 1 / -1;
    padding: 0;
  }

  .footer-services,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-services {
    row-gap: 16px;
  }

  .footer-main {
    row-gap: 22px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 13px;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 0;
    padding-inline: 18px;
    padding-block: 5px;
    font-size: 10px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding-inline: 18px;
    gap: 12px;
  }

  .topbar svg,
  .footer-services svg {
    width: 17px;
    height: 17px;
  }

  .brand__name {
    font-size: 34px;
  }

  .header-actions .icon-button:not(.cart-button) {
    display: none;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(39px, 11vw, 43px);
    line-height: 0.98;
  }

  .hero__text {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hero .button--primary {
    width: 100%;
    min-width: 0;
    padding-inline: 18px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 24px;
  }

  .hero__visual {
    height: clamp(245px, 68vw, 285px);
  }

  .products-section,
  .testimonials-section,
  .editorial {
    padding-left: 0;
    padding-right: 0;
  }

  .products-section,
  .testimonials-section {
    padding-top: 34px;
  }

  .results {
    padding: 22px 18px 24px;
    margin-top: 32px;
  }

  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: stretch;
    gap: 10px;
  }

  .products-section .section-heading h2,
  .testimonials-section .section-heading h2 {
    grid-column: auto;
  }

  .section-heading h2 {
    text-align: left;
    font-size: 24px;
  }

  .carousel-controls {
    justify-content: flex-end;
  }

  .products-section .carousel-controls,
  .testimonials-section .carousel-controls {
    position: static;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .product-rail {
    grid-auto-columns: minmax(232px, 84%);
  }

  .commitments,
  .newsletter,
  .footer {
    width: calc(100% - 36px);
  }

  .commitments {
    grid-template-columns: 1fr;
  }

  .commitments article {
    border-right: 0;
    border-bottom: 1px solid #e8cbc5;
  }

  .commitments article:last-child {
    border-bottom: 0;
  }

  .editorial-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .editorial-card > div {
    padding: 24px 22px;
  }

  .editorial-card img {
    height: 178px;
  }

  .testimonial-rail {
    grid-auto-columns: minmax(250px, 88%);
    gap: 18px;
  }

  .testimonial-card {
    height: auto;
    min-height: 124px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 20px;
  }

  .newsletter > img {
    height: 132px;
  }

  .newsletter > div,
  .newsletter-form {
    padding: 0 18px;
  }

  .newsletter-form__row {
    grid-template-columns: 1fr;
  }

  .footer-services,
  .footer-main {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .footer-services {
    gap: 12px;
    padding-block: 16px;
  }

  .footer-main {
    gap: 18px;
    padding-block: 18px 8px;
  }

  .footer-services p {
    justify-content: flex-start;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-brand p {
    margin-left: 0;
  }

  .modal__panel {
    padding: 26px 20px 22px;
  }

  .modal h2 {
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
