:root {
  --ink: #111111;
  --paper: #fdfcfb;
  --pearl: #f3f0fb;
  --lilac: #d7c5f3;
  --violet: #b69be3;
  --line: rgba(17, 17, 17, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

main {
  overflow: clip;
}

.section-pad {
  padding-right: 5.7vw;
  padding-left: 5.7vw;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 104px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  padding: 0 4.6vw;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(253, 252, 251, 0.82);
  box-shadow: 0 8px 32px rgba(45, 30, 60, 0.06);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand span {
  position: relative;
  top: -0.75em;
  margin-left: 0.18em;
  font-family: inherit;
  font-size: 0.33em;
}

.desktop-nav {
  display: flex;
  gap: clamp(25px, 3.1vw, 52px);
  font-size: 0.96rem;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 30px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 550;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 32px rgba(33, 17, 51, 0.14);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #29212e;
  box-shadow: 0 16px 38px rgba(33, 17, 51, 0.22);
}

.button-light {
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.button-light:hover,
.button-light:focus-visible {
  background: rgba(255, 255, 255, 0.82);
}

.header-cta {
  min-height: 50px;
  justify-self: end;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  padding: 150px 4.6vw 75px;
  background-color: #f6f3fc;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.08) 46%,
      rgba(255, 255, 255, 0) 68%
    ),
    url("assets/lucky-braids-background.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 2.7vw;
  bottom: 4.5vh;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, white 0 8%, transparent 9%),
    radial-gradient(circle at 36% 33%, #fff 0, #e7dff2 34%, #aea3be 68%, #fff 71%);
  box-shadow: 0 18px 44px rgba(91, 70, 121, 0.22);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 50vw);
  animation: reveal 700ms both ease-out;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 27px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  font-size: 1.05rem;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 7vw, 7.35rem);
  font-weight: 400;
  letter-spacing: -0.073em;
  line-height: 0.88;
}

.hero-copy {
  max-width: 540px;
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 34px;
}

.service-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 54px;
  font-size: 0.86rem;
  font-weight: 550;
}

.service-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.33;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 4.8vw;
  bottom: 6.5vh;
  display: flex;
  gap: 26px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) 2fr;
  gap: 7vw;
  padding-top: 145px;
  padding-bottom: 100px;
  background: var(--paper);
}

.section-kicker {
  display: flex;
  height: max-content;
  align-items: center;
  gap: 17px;
  padding-top: 13px;
}

.section-kicker span {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.72rem;
  place-items: center;
}

.section-kicker p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 1040px;
}

.intro-copy .eyebrow,
.process .eyebrow,
.gallery .eyebrow,
.pricing .eyebrow,
.about .eyebrow,
.booking .eyebrow {
  margin-bottom: 26px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.intro-copy > p:last-child {
  max-width: 720px;
  margin: 36px 0 0 auto;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 360px 360px;
  gap: 18px;
  padding-bottom: 145px;
  background: var(--paper);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 320px;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  background-color: #efebf8;
  background-image:
    linear-gradient(180deg, transparent 20%, rgba(17, 17, 17, 0.48) 100%),
    url("assets/lucky-braids-background.png");
  background-size: cover;
  color: white;
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent);
  content: "";
}

.service-card-a {
  grid-row: 1 / span 2;
  background-position: 68% center;
}

.service-card-b {
  background-position: 15% 29%;
}

.service-card-c {
  background-position: 100% 74%;
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 0.74rem;
  place-items: center;
}

.card-copy {
  align-self: flex-end;
  max-width: 520px;
  margin-top: auto;
}

.card-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.card-copy p {
  max-width: 460px;
  margin: 13px 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8vw;
  padding-top: 130px;
  padding-bottom: 145px;
  background: #f1eef8;
}

.process-heading {
  position: sticky;
  top: 130px;
  height: max-content;
}

.process-heading h2 {
  max-width: 600px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  place-items: center;
}

.process-list h3 {
  margin: 3px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
  font-weight: 400;
}

.process-list p {
  max-width: 530px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.96rem;
  line-height: 1.65;
}

.gallery {
  display: grid;
  min-height: 800px;
  grid-template-columns: 1fr;
  gap: 70px;
  padding-top: 110px;
  padding-bottom: 110px;
  background: #15131a;
  color: white;
}

.gallery-copy {
  display: grid;
  grid-template-columns: minmax(160px, 0.65fr) 1.35fr 0.75fr;
  align-items: end;
  gap: 4vw;
}

.section-kicker-light span {
  border-color: rgba(255, 255, 255, 0.32);
}

.gallery-copy .section-kicker {
  align-self: start;
  grid-row: 1 / span 3;
}

.gallery-copy .eyebrow {
  grid-column: 2;
}

.gallery-copy h2 {
  max-width: 760px;
  grid-column: 2;
}

.gallery-copy > p:not(.eyebrow) {
  max-width: 470px;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.gallery-button {
  width: max-content;
  grid-column: 3;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.instagram-profile {
  position: relative;
  width: min(100%, 880px);
  justify-self: center;
  padding: 18px 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  background: #f8f5fc;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.instagram-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 15px 18px 24px;
}

.instagram-label span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
  letter-spacing: -0.045em;
}

.instagram-label strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-profile .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 22px !important;
}

.instagram-grid-window {
  height: min(560px, calc((100vw - 13vw - 36px) * 2 / 3));
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #f7f2fb, #e8dff5);
}

.instagram-grid-window iframe {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  transform: translateY(-154px) !important;
}

.instagram-profile .instagram-media > a {
  display: grid;
  min-height: 430px;
  padding: 32px;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("assets/lucky-braids-background.png");
  background-position: center;
  background-size: cover;
  font-weight: 650;
  place-items: center;
  text-align: center;
}

.instagram-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 17px 16px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.82rem;
  font-weight: 600;
}

.instagram-hint span {
  color: var(--ink);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.instagram-hint:hover span,
.instagram-hint:focus-visible span {
  transform: translate(3px, -3px);
}

.pricing {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  padding-top: 145px;
  padding-bottom: 145px;
  background: var(--paper);
}

.pricing-title > p:last-child {
  max-width: 560px;
  margin: 34px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.pricing-copy {
  align-self: end;
}

.price-list {
  margin: 0 0 36px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.price-list li {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.price-list li > div {
  display: grid;
  gap: 6px;
}

.price-list li span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.025em;
}

.price-list li small {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.78rem;
}

.price-list li strong {
  flex: 0 0 auto;
  font-size: 0.98rem;
  font-weight: 650;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-weight: 650;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 9vw;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #eeebf6;
}

.about-visual {
  display: grid;
  aspect-ratio: 0.86;
  overflow: hidden;
  border-radius: 280px 280px 32px 32px;
  background-image:
    linear-gradient(180deg, transparent 45%, rgba(15, 12, 20, 0.42)),
    url("assets/lucky-braids-background.png");
  background-position: 69% center;
  background-size: cover;
  box-shadow: 0 34px 90px rgba(61, 44, 82, 0.16);
  color: white;
  place-items: end start;
}

.about-visual span {
  padding: 35px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
}

.about-copy h2 {
  max-width: 680px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 35px 0;
  font-size: 1.05rem;
  line-height: 1.76;
}

.about-links {
  display: flex;
  gap: 36px;
}

.about-links a {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-weight: 650;
}

.booking {
  display: flex;
  min-height: 610px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("assets/lucky-braids-background.png");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.booking h2 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.booking > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px auto 34px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  min-height: 130px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: #111;
  color: white;
}

.site-footer .brand {
  font-size: 2rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.site-footer > a:last-child {
  justify-self: end;
  font-size: 0.84rem;
}

.mobile-sticky-booking {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-modal[hidden],
.booking-form-view[hidden],
.booking-success[hidden],
.booking-error[hidden] {
  display: none;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 16, 28, 0.58);
  backdrop-filter: blur(8px);
}

.booking-dialog {
  position: relative;
  width: min(100%, 530px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("assets/lucky-braids-background.png") center / cover;
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(20, 12, 27, 0.34);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.booking-dialog h2 {
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 0.92;
}

.booking-form-view > p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0 30px;
  line-height: 1.65;
}

.booking-form {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.message-preview {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.message-preview label:not(:first-child) {
  margin-top: 10px;
}

.booking-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
}

.booking-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(186, 150, 222, 0.2);
}

.booking-form .button {
  width: 100%;
  margin-top: 8px;
}

.booking-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.booking-consent {
  margin: 4px 2px 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.72rem;
  line-height: 1.5;
}

.booking-error {
  margin: 2px 0 0;
  color: #8b1733;
  font-size: 0.8rem;
  font-weight: 650;
}

.booking-success {
  padding: 22px 0 8px;
  text-align: center;
}

.booking-success > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1.6rem;
}

.booking-success p {
  max-width: 360px;
  margin: 24px auto 30px;
  line-height: 1.65;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  section[id] {
    scroll-margin-top: 84px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 84px;
    padding-inline: 24px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--ink);
    border-radius: 50%;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: grid;
    width: min(80vw, 280px);
    padding: 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 60px rgba(49, 29, 65, 0.16);
    backdrop-filter: blur(18px);
  }

  .mobile-menu nav a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    font-weight: 650;
  }

  .hero {
    min-height: 840px;
    align-items: flex-start;
    padding: 142px 24px 80px;
    background-position: 56% center;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(251, 250, 255, 0.92) 0%,
      rgba(251, 250, 255, 0.8) 48%,
      rgba(251, 250, 255, 0.16) 100%
    );
    content: "";
  }

  .hero-content {
    width: min(650px, 78vw);
  }

  .hero-note {
    display: none;
  }

  .intro {
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 500px 340px;
  }

  .service-card-a {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .process,
  .pricing {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .process-heading {
    position: static;
  }

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

  .gallery-copy {
    grid-template-columns: 1fr 1.4fr;
  }

  .gallery-copy .section-kicker {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-copy .eyebrow,
  .gallery-copy h2 {
    grid-column: 1;
  }

  .gallery-copy > p:not(.eyebrow),
  .gallery-button {
    grid-column: 2;
    grid-row: auto;
  }

  .about {
    gap: 6vw;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 126px;
    background-position: 61% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(252, 251, 255, 0.96) 0%,
        rgba(252, 251, 255, 0.86) 47%,
        rgba(252, 251, 255, 0.25) 100%
      );
  }

  .hero::after {
    right: -22px;
    bottom: 30px;
    width: 70px;
    height: 70px;
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 23px;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 470px;
    font-size: clamp(3.5rem, 16vw, 5rem);
    line-height: 0.92;
  }

  .hero-copy {
    max-width: 460px;
    margin-top: 28px;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .service-line {
    flex-wrap: wrap;
    gap: 10px 13px;
    margin-top: 34px;
    font-size: 0.78rem;
  }

  .section-pad {
    padding-right: 24px;
    padding-left: 24px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 92px;
    padding-bottom: 65px;
  }

  .intro-copy > p:last-child {
    margin-left: 0;
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding-bottom: 90px;
  }

  .service-card,
  .service-card-a {
    min-height: 410px;
    grid-column: auto;
    grid-row: auto;
  }

  .process {
    gap: 50px;
    padding-top: 85px;
    padding-bottom: 90px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .gallery {
    min-height: auto;
    gap: 48px;
    padding-top: 85px;
    padding-bottom: 90px;
  }

  .gallery-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .gallery-copy > p:not(.eyebrow) {
    margin: 28px 0 32px;
  }

  .instagram-profile {
    padding: 9px 9px 16px;
    border-radius: 28px;
  }

  .instagram-label {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 13px 20px;
  }

  .instagram-grid-window iframe {
    transform: translateY(-142px) !important;
  }

  .instagram-hint {
    margin: 13px 12px 0;
    font-size: 0.75rem;
  }

  .pricing {
    gap: 45px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .about-visual {
    width: 100%;
    max-height: 620px;
  }

  .about-links {
    flex-wrap: wrap;
  }

  .booking {
    min-height: 550px;
  }

  .booking h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 48px;
    padding-bottom: 122px;
  }

  .site-footer > a:last-child {
    justify-self: start;
  }

  .mobile-sticky-booking {
    position: fixed;
    z-index: 60;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.94);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.3);
    color: white;
    font-size: 0.92rem;
    font-weight: 650;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .booking-modal {
    padding: 14px;
  }

  .booking-dialog {
    max-height: calc(100vh - 28px);
    padding: 46px 24px 28px;
    border-radius: 26px;
  }

  .message-preview {
    padding: 18px;
  }

  .booking-dialog h2 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
