@font-face {
  font-family: "Heebo";
  src: url("assets/heebo-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Heebo";
  src: url("assets/heebo-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Heebo";
  src: url("assets/heebo-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #1e333b;
  --body: #5d6676;
  --pink: #ed76a2;
  --blush: #fff5f7;
  --soft-pink: #fff8fa;
  --line: #ece7e8;
  --gold: #e8b84b;
  --shell: min(1360px, calc(100% - 80px));
  --motion-out: cubic-bezier(0.23, 1, 0.32, 1);
  --motion-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --motion-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --motion-fast: 150ms;
  --motion-ui: 220ms;
  --motion-reveal: 760ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Heebo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  height: 88px;
  padding: 0 max(10.5vw, 44px) 0 max(5.5vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative;
  z-index: 20;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
}

.icon-button {
  width: 64px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #111b20;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--motion-out);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--pink);
}

.header-divider {
  width: 1px;
  height: 29px;
  background: #ece8e9;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 15px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #101b20;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.hero {
  min-height: 748px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff4f6;
  overflow: hidden;
}

.hero-copy {
  padding: 166px 3vw 100px 5.55vw;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: clamp(54px, 3.78vw, 68px);
  line-height: 1.17;
  letter-spacing: -1.4px;
  font-weight: 400;
}

.hero h1 strong,
.hero h1 span {
  display: block;
}

.hero h1 strong {
  font-weight: 600;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: #293940;
  font-size: 17px;
  line-height: 1.55;
}

.hero-cta-row {
  margin-top: 43px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.split-button {
  min-height: 56px;
  display: inline-flex;
  align-items: stretch;
  color: #fff;
  background: var(--pink);
  font-weight: 600;
  transition:
    transform var(--motion-fast) var(--motion-out),
    background-color var(--motion-fast) ease,
    box-shadow var(--motion-ui) ease;
}

.split-button span {
  padding: 15px 25px;
}

.split-button b {
  min-width: 48px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgb(255 255 255 / 35%);
  font-size: 21px;
  font-weight: 400;
}

.split-button:hover,
.split-button:focus-visible {
  background: #df5f90;
  transform: translateY(-2px);
}

.icon-button:active,
.split-button:active,
.testimonial-controls button:active,
.search-dialog button:active,
.back-to-top:active,
.socials a:active {
  transform: scale(0.97);
}

.rating {
  display: flex;
  align-items: center;
  gap: 17px;
}

.rating > strong {
  font-size: 47px;
  line-height: 1;
  font-weight: 500;
}

.rating span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.rating span b {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: -2px;
}

.rating small {
  margin-top: 8px;
  color: #26343a;
  font-size: 14px;
}

.hero-portrait {
  min-height: 748px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #fde5eb;
}

.hero-portrait img {
  width: min(780px, 100%);
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.hero-copy > p,
.hero-cta-row,
.hero-portrait img,
.vertical-word {
  animation: beautyCompose 820ms var(--motion-out) both;
}

.hero-copy h1 {
  animation-delay: 45ms;
}

.hero-copy > p {
  animation-delay: 100ms;
}

.hero-cta-row {
  animation-delay: 155ms;
}

.hero-portrait img {
  animation-delay: 90ms;
}

.vertical-word {
  animation-delay: 190ms;
}

.vertical-word {
  position: absolute;
  right: 2vw;
  top: 50%;
  color: rgb(237 118 162 / 14%);
  font-size: 92px;
  font-weight: 700;
  letter-spacing: 12px;
  line-height: 1;
  transform: translateY(-50%) rotate(90deg);
  z-index: 1;
}

.features {
  padding: 150px 30px 158px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 38px;
}

.feature-card {
  padding: 35px 20px 36px;
}

.feature-card.featured {
  padding-inline: 38px;
  background: var(--blush);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 21px;
}

.feature-card h2 {
  margin: 0 0 15px;
  color: #161d20;
  font-size: 27px;
  line-height: 1.28;
}

.feature-card ul {
  margin: 0;
  padding: 0;
  color: #6b7180;
  list-style: none;
}

.feature-card li {
  padding-left: 22px;
  margin: 6px 0;
  position: relative;
}

.feature-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--pink);
  font-size: 28px;
}

.about {
  width: min(1640px, calc(100% - 160px));
  padding-bottom: 128px;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 47px;
  align-items: center;
}

.about-visual {
  min-height: 665px;
  position: relative;
}

.about-visual > img {
  width: 100%;
  height: 665px;
  object-fit: cover;
  object-position: center;
}

.experience-card {
  width: 400px;
  min-height: 244px;
  padding: 38px 35px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 28px;
  bottom: -85px;
  background: #fff;
  box-shadow: 0 8px 35px rgb(30 51 59 / 7%);
  text-align: center;
}

.experience-card strong {
  color: var(--pink);
  font-size: 48px;
  line-height: 1.2;
}

.experience-card span {
  margin-top: 21px;
  color: #69717e;
  font-size: 21px;
}

.experience-card i {
  margin-top: 18px;
  display: flex;
  gap: 5px;
}

.experience-card i b {
  width: 10px;
  height: 10px;
  background: var(--pink);
}

.experience-card i b:last-child {
  background: transparent;
  border: 1px solid var(--pink);
}

.about-copy {
  padding: 20px 3vw 20px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 29px;
  height: 2px;
  display: inline-block;
  margin: 0 11px 4px 0;
  background: var(--pink);
}

.about-copy h2,
.services h2,
.testimonials h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 3.8vw, 68px);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: -1px;
}

.about-copy h2 strong,
.services h2 strong,
.testimonials h2 strong {
  display: block;
  font-weight: 600;
}

.about-copy > p:not(.eyebrow) {
  margin: 25px 0 33px;
  color: var(--body);
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 27px;
  color: #5f6774;
}

.check-grid span {
  padding-left: 24px;
  position: relative;
}

.check-grid span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.services-wrap {
  min-height: 810px;
  padding: 180px 0;
  background:
    linear-gradient(rgb(255 247 249 / 94%), rgb(255 247 249 / 94%)),
    radial-gradient(circle at 85% 20%, #f2dfe5 0 2px, transparent 3px);
  position: relative;
}

.services-wrap::after {
  content: "OURS";
  position: absolute;
  right: 4vw;
  top: 35px;
  color: rgb(237 118 162 / 4%);
  font-size: 125px;
  font-weight: 700;
  letter-spacing: 4px;
}

.services {
  min-height: 510px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 15px 40px rgb(64 37 44 / 6%);
  position: relative;
  z-index: 1;
}

.services-intro {
  padding: 73px 78px 66px;
  border-right: 1px solid #f0ecee;
}

.services h2 {
  font-size: clamp(43px, 3.1vw, 58px);
}

.services-intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 25px 0 35px;
  color: var(--body);
}

.service-card {
  padding: 148px 105px 70px;
}

.service-icon {
  width: 60px;
  height: 60px;
  color: #80c8dc;
}

.service-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 29px 0 13px;
  color: #161d20;
  font-size: 30px;
}

.service-card p {
  max-width: 420px;
  margin: 0;
  color: var(--body);
  font-size: 18px;
}

.testimonials {
  min-height: 660px;
  padding: 155px 0 120px;
  background: #fff9fa;
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: "TESTIMONIAL";
  position: absolute;
  right: 5%;
  top: 80px;
  color: rgb(237 118 162 / 4%);
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 5px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  font-size: clamp(48px, 3.35vw, 60px);
}

.quote-panel {
  padding-top: 49px;
}

.quote-panel blockquote {
  min-height: 136px;
  margin: 0 0 32px;
  color: #6c727e;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
}

.quote-panel > strong {
  color: #181f22;
  font-size: 20px;
}

.testimonial-controls {
  margin-top: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-controls > span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #656d78;
}

.testimonial-controls span i {
  width: 52px;
  height: 2px;
  background: #c8c2c5;
}

.testimonial-controls > div {
  display: flex;
  gap: 24px;
}

.testimonial-controls button {
  width: 47px;
  height: 47px;
  border: 0;
  color: #fff;
  background: var(--pink);
  font-size: 26px;
  cursor: pointer;
  transition:
    background-color var(--motion-fast) ease,
    transform var(--motion-fast) var(--motion-out);
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
  background: #d95c8b;
}

.map-section {
  width: min(1360px, calc(100% - 80px));
  height: auto;
  margin: 170px auto 0;
  padding: 70px 0 0;
  background: #e8e6e3;
}

.map-section a,
.map-section img {
  width: 100%;
  height: auto;
  display: block;
}

footer {
  margin-top: 0;
  background: #fff9fa;
}

.footer-grid {
  padding: 125px 0 92px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  margin-bottom: 37px;
  object-fit: contain;
}

.footer-brand a {
  display: block;
  margin: 14px 0;
}

.footer-brand a:first-of-type {
  color: var(--pink);
  font-size: 22px;
  font-weight: 700;
}

.footer-grid h2 {
  margin: 10px 0 52px;
  color: #161d20;
  font-size: 21px;
}

.footer-grid p {
  color: #202b31;
}

.socials {
  display: flex;
  gap: 31px;
  margin-top: 33px;
  color: #626b76;
  font-weight: 700;
}

.footer-grid dl {
  margin: 0;
}

.footer-grid dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.footer-grid dd {
  margin: 0;
  color: var(--pink);
}

.copyright {
  min-height: 82px;
  display: grid;
  place-items: center;
  color: #727985;
  border-top: 1px solid #f2ecee;
}

.back-to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  border: 0;
  color: #fff;
  background: #172128;
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--motion-ui) var(--motion-out),
    transform var(--motion-ui) var(--motion-out),
    background-color var(--motion-fast) ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.search-dialog::backdrop {
  background: rgb(27 38 43 / 0%);
  backdrop-filter: blur(5px);
  transition: background-color 260ms var(--motion-out);
}

.search-dialog.is-visible::backdrop {
  background: rgb(27 38 43 / 76%);
}

.search-dialog form {
  padding: 44px;
  position: relative;
  background: #fff;
  opacity: 0;
  filter: blur(2px);
  transform: translateY(8px) scale(0.96);
  transform-origin: center;
  transition:
    opacity 260ms var(--motion-out),
    filter 260ms var(--motion-out),
    transform 260ms var(--motion-out);
}

.search-dialog.is-visible form {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.search-dialog.is-closing form {
  transition-duration: 170ms;
}

.search-dialog label {
  display: block;
  margin-bottom: 17px;
  font-size: 25px;
  font-weight: 600;
}

.search-dialog form > div {
  display: flex;
}

.search-dialog input {
  flex: 1;
  min-width: 0;
  padding: 14px 17px;
  border: 1px solid #e5dfe1;
  outline: none;
}

.search-dialog form > div button {
  width: 55px;
  border: 0;
  color: #fff;
  background: var(--pink);
  cursor: pointer;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-fast) var(--motion-out);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--motion-reveal) var(--motion-out),
    transform var(--motion-reveal) var(--motion-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .reveal.reveal-image {
  clip-path: inset(0 0 13% 0);
  transform: translateY(10px);
  transition:
    clip-path 880ms var(--motion-in-out),
    opacity var(--motion-reveal) var(--motion-out),
    transform 880ms var(--motion-out);
}

.motion-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.motion-ready .reveal.reveal-image.is-revealed {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

@keyframes beautyCompose {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .feature-card,
  .service-card,
  .about-visual > img,
  .map-section img {
    transition:
      transform 360ms var(--motion-out),
      box-shadow 360ms ease;
  }

  .feature-card:hover,
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgb(44 35 39 / 10%);
  }

  .about-visual:hover > img,
  .map-section:hover img {
    transform: scale(1.012);
  }
}

@media (hover: none), (pointer: coarse) {
  .split-button:hover,
  .split-button:focus-visible {
    transform: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 100px 50px;
  }

  .hero h1 {
    font-size: clamp(45px, 5vw, 60px);
  }

  .hero-portrait {
    min-height: 650px;
  }

  .features {
    padding-inline: 0;
  }

  .about {
    width: var(--shell);
    grid-template-columns: 1fr;
    gap: 110px;
  }

  .about-copy {
    padding-inline: 0;
  }

  .services-intro,
  .service-card {
    padding-inline: 55px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-panel {
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .site-header {
    height: 72px;
    padding-inline: 18px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }

  .icon-button {
    width: 44px;
  }

  .header-divider {
    display: none;
  }

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

  .hero-copy {
    padding: 67px 22px 55px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-cta-row {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 31px;
  }

  .hero-portrait {
    min-height: 420px;
  }

  .vertical-word {
    font-size: 50px;
  }

  .features {
    padding: 72px 0 80px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card,
  .feature-card.featured {
    padding: 30px;
  }

  .feature-card h2 {
    font-size: 24px;
  }

  .about {
    padding-bottom: 95px;
    gap: 105px;
  }

  .about-visual {
    min-height: 390px;
  }

  .about-visual > img {
    height: 390px;
  }

  .experience-card {
    width: calc(100% - 38px);
    min-height: 200px;
    padding: 29px 20px;
    right: 19px;
    bottom: -74px;
  }

  .experience-card strong {
    font-size: 39px;
  }

  .experience-card span {
    margin-top: 10px;
    font-size: 18px;
  }

  .about-copy h2,
  .services h2,
  .testimonials h2 {
    font-size: clamp(40px, 12vw, 53px);
  }

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

  .services-wrap {
    min-height: 0;
    padding: 90px 0;
  }

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

  .services-intro,
  .service-card {
    padding: 48px 30px;
  }

  .services-intro {
    border-right: 0;
    border-bottom: 1px solid #f0ecee;
  }

  .service-card {
    min-height: 360px;
  }

  .testimonials {
    min-height: 0;
    padding: 90px 0;
  }

  .quote-panel blockquote {
    min-height: 230px;
    font-size: 18px;
  }

  .testimonial-controls > div {
    gap: 10px;
  }

  .map-section {
    width: 100%;
    height: auto;
    margin-top: 80px;
    padding-top: 30px;
  }

  .footer-grid {
    padding: 80px 0 55px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid h2 {
    margin-bottom: 25px;
  }

  .copyright {
    min-height: 92px;
    padding: 20px;
    text-align: center;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .search-dialog form {
    padding: 48px 22px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .hero-copy h1,
  .hero-copy > p,
  .hero-cta-row,
  .hero-portrait img,
  .vertical-word {
    animation: none !important;
  }

  .motion-ready .reveal,
  .motion-ready .reveal.reveal-image,
  .motion-ready .reveal.is-revealed,
  .motion-ready .reveal.reveal-image.is-revealed {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
    transition: opacity 180ms ease;
  }

  .search-dialog form,
  .search-dialog.is-visible form {
    filter: none;
    transform: none;
    transition: opacity 180ms ease;
  }
}
