:root {
  --ink: #102d3b;
  --ink-soft: #5e747d;
  --deep: #07556a;
  --deep-2: #063d4d;
  --teal: #0e918c;
  --aqua: #4fd2c4;
  --mint: #e5f7f3;
  --page: #f8fbfa;
  --line: #dce8e8;
  --white: #fff;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

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

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--deep);
  font-weight: 700;
  transition: top .2s;
}

.skip-link:focus {
  top: 12px;
}

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  pointer-events: none;
}

.reading-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #4fd2c4, #a8eee5);
  box-shadow: 0 0 10px rgba(168, 238, 229, .65);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.lazy-content {
  content-visibility: auto;
  contain-intrinsic-size: auto 650px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(9, 73, 89, .08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.1;
}

.brand strong {
  display: block;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--teal);
  border-radius: 11px;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #49626d;
}

.main-nav>a:not(.nav-contact) {
  position: relative;
  padding: 28px 0;
}

.main-nav>a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .2s;
}

.main-nav>a:hover,
.main-nav>a.active {
  color: var(--deep);
}

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

.nav-contact {
  padding: 10px 16px;
  border-radius: 7px;
  color: var(--white);
  background: var(--deep);
  transition: background .2s, transform .2s;
}

.nav-contact:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  color: var(--deep);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 662px;
  color: var(--white);
  background: linear-gradient(118deg, #063f50 0%, #075d6d 60%, #0b7c80 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .33;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .4) 1px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black 0%, transparent 68%);
}

.hero::after {
  position: absolute;
  width: 560px;
  height: 560px;
  right: -210px;
  bottom: -340px;
  content: "";
  border: 1px solid rgba(205, 255, 250, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(205, 255, 250, .05), 0 0 0 140px rgba(205, 255, 250, .04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .95fr;
  align-items: center;
  min-height: 610px;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow>span {
  width: 21px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #a8eee5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.3vw, 66px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.09;
}

h1 em,
h2 em {
  color: var(--aqua);
  font-style: normal;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 30px;
  color: #d0edef;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}

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

.btn-primary {
  color: #053e4d;
  background: #d9fbf5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
}

.btn-quiet {
  color: #dffafa;
}

.btn-quiet:hover {
  color: #fff;
}

.pin-icon {
  font-size: 22px;
  line-height: 0;
}

.hero-trust {
  display: flex;
  gap: 27px;
  margin-top: 43px;
}

.hero-trust>div {
  display: grid;
  padding-right: 27px;
  border-right: 1px solid rgba(226, 255, 252, .27);
}

.hero-trust>div:last-child {
  padding: 0;
  border: 0;
}

.hero-trust strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.hero-trust span {
  color: #b4dadd;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 465px;
  margin-left: auto;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(91, 220, 208, .17);
  transform: translate(-50%, -50%);
  filter: blur(2px);
}

.medical-card {
  position: absolute;
  top: 43px;
  right: 18px;
  left: 27px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 24px 50px rgba(0, 35, 48, .24);
  backdrop-filter: blur(8px);
}

.card-top,
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #d2fffa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
}

.card-top {
  border-bottom: 1px solid rgba(255, 255, 255, .23);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #8cf3e6;
  box-shadow: 0 0 0 4px rgba(140, 243, 230, .17);
}

.card-top span:last-child {
  margin-right: auto;
}

.medical-illustration {
  display: grid;
  height: 290px;
  place-items: center;
  background: linear-gradient(142deg, rgba(255, 255, 255, .12), rgba(0, 77, 94, .2));
}

.medical-illustration svg {
  width: 100%;
  height: 100%;
}

.card-bottom {
  background: rgba(5, 65, 79, .33);
}

.card-cross {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: #bdf8f0;
  font-size: 19px;
}

.float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 184px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 24px rgba(2, 50, 58, .16);
}

.float-badge b,
.float-badge small {
  display: block;
  line-height: 1.25;
}

.float-badge b {
  font-size: 12px;
}

.float-badge small {
  color: #6f8287;
  font-size: 10px;
}

.badge-icon,
.badge-heart {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 13px;
}

.badge-heart {
  color: #e86969;
  background: #fff0ef;
}

.badge-one {
  top: 13px;
  left: 0;
}

.badge-two {
  right: -14px;
  bottom: 37px;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  z-index: 2;
  color: #a8d9d7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.hero-bottom .container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-bottom i {
  width: 45px;
  height: 1px;
  background: currentColor;
}

.section {
  padding: 112px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: 110px;
}

.about-art {
  position: relative;
  min-height: 392px;
}

.about-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  border-radius: 75px 8px 8px 8px;
  background: linear-gradient(145deg, #b4eee7, #d8f6f2);
}

.store-placeholder {
  position: absolute;
  top: 45px;
  right: 0;
  /* bottom: 23px; */
  left: 34px;
  display: grid;
  place-content: center;
  gap: 13px;
  border: 1px solid #e1eded;
  border-radius: 7px;
  color: #3c8a8a;
  background: #f7fffd;
  box-shadow: 17px 17px 0 #f1c674;
  text-align: center;
}

.store-placeholder svg {
  width: 66px;
  height: 66px;
  margin: auto;
}

.store-placeholder span {
  color: #66858a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.since-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 17px;
  border-radius: 4px;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 8px 18px rgba(7, 75, 91, .22);
}

.since-badge strong,
.since-badge span {
  display: block;
}

.since-badge strong {
  color: #96dcd4;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.since-badge span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  color: var(--deep);
  font-size: clamp(32px, 3.6vw, 45px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.15;
}

.about-copy>p:not(.eyebrow) {
  max-width: 490px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--deep);
}

.categories {
  background: #fff;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading>p {
  max-width: 340px;
  margin: 0 3px 6px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  min-height: 270px;
  padding: 27px 23px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 24px rgba(24, 74, 84, .12);
}

.category-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 29px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .69);
}

.category-icon svg {
  width: 30px;
  height: 30px;
}

.category-card h3 {
  margin-bottom: 9px;
  font-size: 17px;
  letter-spacing: -.6px;
  line-height: 1.3;
}

.category-card p {
  min-height: 62px;
  margin-bottom: 15px;
  color: #4e6e75;
  font-size: 13px;
  line-height: 1.55;
}

.category-card a {
  color: var(--deep);
  font-size: 12px;
  font-weight: 700;
}

.category-card a span {
  margin-left: 5px;
}

.teal-card {
  background: #e6f8f5;
}

.blue-card {
  background: #e7f1f6;
}

.green-card {
  background: #eff7e8;
}

.warm-card {
  background: #fff4e4;
}

.teal-card .category-icon {
  color: #087b77;
}

.blue-card .category-icon {
  color: #327c9d;
}

.green-card .category-icon {
  color: #5f9460;
}

.warm-card .category-icon {
  color: #bc7d34;
}

.promise {
  color: #dff8f5;
  background: var(--deep);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  min-height: 112px;
}

.promise-text {
  display: flex;
  gap: 14px;
  align-items: center;
}

.promise-cross {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: #a8eee5;
  font-family: var(--font-display);
  font-size: 26px;
}

.promise-text p {
  max-width: 270px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.promise-points {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: #bde5e0;
  font-size: 12px;
  font-weight: 600;
}

.promise-points span::first-letter {
  color: #85e5da;
}

.location {
  background: #f2f8f7;
}

.location-grid {
  display: grid;
  grid-template-columns: .77fr 1.23fr;
  align-items: center;
  gap: 82px;
}

.location-copy>p:not(.eyebrow) {
  max-width: 360px;
  color: var(--ink-soft);
}

.location-copy address {
  display: grid;
  gap: 13px;
  margin: 27px 0 29px;
  font-style: normal;
}

.location-copy address>div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.address-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: #d8f2ee;
  font-weight: 700;
}

.location-copy address p {
  margin: 0;
  color: #557078;
  font-size: 13px;
  line-height: 1.45;
}

.location-copy address b {
  color: var(--ink);
  font-size: 13px;
}

.btn-dark {
  color: #fff;
  background: var(--deep);
}

.btn-dark:hover {
  background: var(--teal);
}

.map-wrap {
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  min-height: 349px;
  overflow: hidden;
  border: 1px solid #d7e5e3;
  border-radius: 8px;
  background-color: #e3eddf;
  background-image: linear-gradient(35deg, transparent 48%, rgba(255, 255, 255, .75) 49%, rgba(255, 255, 255, .75) 51%, transparent 52%), linear-gradient(130deg, transparent 49%, rgba(252, 247, 221, .94) 50%, rgba(252, 247, 221, .94) 52%, transparent 53%), radial-gradient(circle at 30% 25%, #c7e0b9 0 14%, transparent 14.5%), radial-gradient(circle at 75% 70%, #d2e8c2 0 17%, transparent 17.5%);
}

.map-roads {
  position: absolute;
  border: 12px solid rgba(255, 255, 255, .88);
  border-radius: 50%;
  transform: rotate(-31deg);
}

.road-one {
  top: -100px;
  right: -80px;
  width: 510px;
  height: 250px;
}

.road-two {
  bottom: -155px;
  left: -160px;
  width: 490px;
  height: 250px;
}

.road-three {
  top: 75px;
  left: 173px;
  width: 250px;
  height: 110px;
  border-width: 8px;
}

.map-label {
  position: absolute;
  color: rgba(35, 87, 77, .55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}

.label-one {
  top: 46px;
  left: 74px;
}

.label-two {
  right: 76px;
  bottom: 74px;
}

.map-pin {
  position: absolute;
  top: 43%;
  left: 51%;
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 4px;
  color: #fff;
  background: #e74f57;
  box-shadow: 0 5px 12px rgba(38, 81, 65, .26);
  font-size: 26px;
  font-weight: 700;
  transform: rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-caption {
  position: absolute;
  top: calc(43% + 33px);
  left: calc(51% + 35px);
  display: grid;
  min-width: 195px;
  padding: 10px 12px 10px 27px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(38, 81, 65, .16);
  line-height: 1.25;
}

.map-caption b {
  color: var(--deep);
  font-size: 12px;
}

.map-caption small {
  color: #668087;
  font-size: 10px;
}

.mini-pin {
  position: absolute;
  left: 11px;
  top: 12px;
  color: #e74f57;
  font-size: 11px;
}

.map-link {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 3px;
  color: var(--deep);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 2px 8px rgba(32, 85, 71, .1);
  font-size: 11px;
  font-weight: 700;
}

.contact {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: center;
  gap: 95px;
}

.contact-copy>p:not(.eyebrow) {
  max-width: 365px;
  color: var(--ink-soft);
}

.contact-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 350px;
  margin-top: 29px;
  padding: 14px;
  border-radius: 7px;
  background: #eaf8f5;
}

.contact-note>span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: #a9e8df;
}

.contact-note p {
  margin: 0;
  color: #5f787e;
  font-size: 12px;
  line-height: 1.45;
}

.contact-note b {
  color: var(--deep);
}

.contact-form {
  padding: 29px;
  border: 1px solid #dcebe8;
  border-radius: 10px;
  background: #f8fcfb;
  box-shadow: 0 16px 35px rgba(22, 77, 82, .08);
}

.form-heading {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 23px;
}

.form-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--teal);
}

.form-heading h3 {
  margin: 0;
  color: var(--deep);
  font-size: 17px;
  letter-spacing: -.6px;
}

.form-heading p {
  margin: 1px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #385964;
  font-size: 12px;
  font-weight: 700;
}

.field label>span:not(.optional) {
  color: #c75050;
}

.optional {
  color: #81959a;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #ccdedd;
  border-radius: 5px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  transition: border-color .2s, box-shadow .2s;
}

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

.field select {
  appearance: auto;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aadb0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 145, 140, .13);
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-privacy {
  margin: 12px 0 0;
  color: #82969a;
  font-size: 10px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-top: 57px;
  color: #c9e4e4;
  background: var(--deep-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-mark {
  background: var(--teal);
}

.footer-brand p {
  margin: 17px 0 0;
  color: #9cc8cb;
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

.footer-links p,
.footer-contact p {
  margin-bottom: 5px;
  color: #79c8c6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact span {
  color: #9cc8cb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-top: 1px solid rgba(203, 243, 240, .17);
  color: #92b9bd;
  font-size: 11px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .hero-grid {
    gap: 30px;
  }

  .about-grid {
    gap: 65px;
  }

  .location-grid,
  .contact-grid {
    gap: 45px;
  }

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

  .category-card {
    min-height: 230px;
  }

  .category-card p {
    min-height: auto;
  }

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

  .promise-points {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .section {
    padding: 82px 0;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 540px);
  }

  .nav-wrap {
    min-height: 67px;
  }

  .main-nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 16px 17px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 12px rgba(14, 57, 67, .08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav>a:not(.nav-contact) {
    padding: 11px 5px;
  }

  .main-nav>a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    margin: 7px 0 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: unset;
    gap: 2px;
    padding-top: 69px;
    padding-bottom: 68px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-bottom {
    display: none;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
    letter-spacing: -2.3px;
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-art {
    min-height: 330px;
    max-width: 430px;
  }

  .section-heading {
    display: block;
  }

  .section-heading>p {
    margin-top: 17px;
  }

  .map-placeholder {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .store-placeholder {
    box-shadow: 12px 12px 0 #f1c674;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(100% - 28px, 540px);
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-grid {
    padding-top: 55px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 14px;
    margin-top: 33px;
  }

  .hero-trust>div {
    padding-right: 14px;
  }

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

  .category-card {
    min-height: 0;
  }

  .category-icon {
    margin-bottom: 20px;
  }

  .location h2 br,
  .contact h2 br {
    display: none;
  }

  .map-caption {
    top: calc(43% + 38px);
    left: calc(51% - 55px);
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .about-art {
    min-height: 295px;
  }

  .contact-form {
    padding: 22px 17px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}