:root {
  --ink: #281b17;
  --cocoa: #4d2c22;
  --terracotta: #b76343;
  --blush: #d7a490;
  --cream: #f7f0e7;
  --paper: #fcfaf6;
  --gold: #d9b36a;
  --line: rgba(40, 27, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #e8ded2;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 1600px);
  padding: 25px 5vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

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

.nav-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background: var(--ink);
  color: white;
}

.nav-cta span {
  margin-left: 8px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 47% 53%;
  min-height: 800px;
  padding-top: 82px;
  background: var(--cream);
}

.hero-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 5vw 58px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--terracotta);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(183, 99, 67, 0.12);
}

h1,
h2,
blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(62px, 6.35vw, 104px);
}

h1 em,
h2 em,
blockquote em {
  color: var(--terracotta);
  font-weight: 500;
}

.hero-text {
  max-width: 510px;
  margin: 30px 0 0;
  color: #715f57;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 0 27px;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 8px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 58px;
}

.mini-faces {
  display: flex;
}

.mini-faces span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--blush);
  color: white;
  font-size: 8px;
}

.mini-faces span:first-child {
  margin-left: 0;
  background: var(--cocoa);
}

.mini-faces span:last-child {
  background: var(--terracotta);
}

.hero-note p {
  margin: 0;
  color: #75615a;
  font-size: 11px;
  line-height: 1.5;
}

.hero-note strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0 26px 26px 0;
  overflow: hidden;
  border-radius: 3px 3px 140px 3px;
}

.hero-image-wrap,
.hero-image-wrap img {
  width: 100%;
  height: 100%;
}

.hero-image-wrap {
  overflow: hidden;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: rgba(78, 43, 30, 0.08);
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  display: block;
  object-fit: cover;
  object-position: 51% center;
  transform: scale(1.08);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 17px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 16px 45px rgba(47, 26, 20, 0.14);
  backdrop-filter: blur(12px);
  font-size: 11px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  margin-bottom: 3px;
  font-size: 11px;
}

.floating-card small {
  color: #7d6a62;
  font-size: 9px;
}

.card-top {
  top: 19%;
  left: 7%;
  border-radius: 2px 20px 20px 20px;
}

.card-bottom {
  right: 7%;
  bottom: 8%;
  border-radius: 20px 20px 2px 20px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #ead8ca;
  color: var(--terracotta);
}

.availability-dot {
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: #4c9660;
  box-shadow: 0 0 0 4px rgba(76, 150, 96, 0.15);
}

.orbit-label {
  position: absolute;
  top: 36px;
  right: 35px;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: white;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-align: center;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip > p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-style: italic;
}

.trust-items {
  display: flex;
  gap: 46px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-items b {
  margin-right: 8px;
  color: var(--terracotta);
  font-weight: 500;
}

.section {
  padding: 120px 5vw;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 10%;
  margin-bottom: 65px;
}

.section-kicker {
  margin-bottom: 21px;
}

.section-heading h2,
.experience-copy h2,
.booking h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 6px;
  color: #75635c;
  font-size: 14px;
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  min-height: 570px;
  padding: 29px;
  overflow: hidden;
  border-radius: 2px 2px 70px 2px;
  color: white;
}

.service-braids {
  background: var(--cocoa);
}

.service-nails {
  background: #ca8c77;
}

.service-number {
  position: relative;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.service-art {
  position: absolute;
  inset: 58px 30px 196px;
}

.braid-art {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 10px;
  transform: rotate(-5deg);
}

.braid-art span {
  width: 26px;
  height: 270px;
  border: 4px double rgba(238, 198, 154, 0.68);
  border-width: 0 5px;
  border-radius: 50%;
  transform: rotate(8deg);
}

.braid-art span:nth-child(2n) {
  height: 300px;
  transform: rotate(-6deg);
}

.nail-art {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: rotate(-18deg);
}

.nail-art span {
  width: 54px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50% 50% 24px 24px;
  background: rgba(255, 238, 226, 0.13);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.05);
}

.nail-art span:nth-child(2) {
  margin-top: -45px;
}

.nail-art span:nth-child(3) {
  margin-top: -25px;
}

.service-content {
  position: absolute;
  z-index: 2;
  right: 29px;
  bottom: 29px;
  left: 29px;
}

.service-content h3 {
  margin: 0 0 13px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 500;
}

.service-content p {
  max-width: 330px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.7;
}

.service-content a {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.visit-story {
  background: var(--ink);
  color: white;
}

.story-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 68px;
}

.story-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -4px;
  color: var(--gold);
}

.story-heading h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.story-heading h2 em {
  color: var(--blush);
}

.story-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 54px 18px;
}

.story-card {
  margin: 0;
}

.story-arrival,
.story-braids {
  grid-column: 1 / span 7;
}

.story-nails,
.story-selfie {
  grid-column: 8 / -1;
  padding-top: 110px;
}

.story-image {
  position: relative;
  overflow: hidden;
  background: var(--cocoa);
}

.story-arrival .story-image,
.story-selfie .story-image {
  border-radius: 2px 70px 2px 2px;
}

.story-nails .story-image,
.story-braids .story-image {
  border-radius: 70px 2px 2px 2px;
}

.story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.story-card:hover .story-image img {
  transform: scale(1.035);
}

.story-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.9);
  color: var(--ink);
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.story-card figcaption {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  padding: 20px 3px 0;
}

.story-card figcaption strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
}

.story-card figcaption p {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: #eee2d5;
}

.experience-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 150px 2px 2px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.23);
  filter: saturate(0.82);
}

.image-stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
}

.experience-copy {
  align-self: center;
}

.experience-intro {
  max-width: 490px;
  margin: 31px 0 42px;
  color: #745f57;
  font-size: 14px;
  line-height: 1.8;
}

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

.steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(40, 27, 23, 0.15);
}

.steps li > span {
  padding-top: 4px;
  color: var(--terracotta);
  font-size: 10px;
}

.steps h3 {
  margin: 0 0 7px;
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 500;
}

.steps p {
  margin: 0;
  color: #75635c;
  font-size: 12px;
  line-height: 1.6;
}

.promise {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 530px;
  text-align: center;
}

.promise blockquote {
  max-width: 950px;
  font-size: clamp(48px, 6vw, 88px);
}

.promise > p {
  margin: 29px 0 0;
  color: #806c64;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10vw;
  color: white;
  background: var(--ink);
}

.section-kicker.light {
  color: var(--gold);
}

.booking h2 em {
  color: var(--blush);
}

.booking-copy > p {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.booking-form label {
  display: block;
  margin-bottom: 25px;
}

.booking-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: white;
  font-size: 14px;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
}

.booking-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.booking-form select option {
  color: var(--ink);
}

.button-light {
  width: 100%;
  margin-top: 10px;
  background: var(--cream);
  color: var(--ink);
}

.form-message {
  min-height: 20px;
  margin: 15px 0 0;
  color: var(--gold);
  font-size: 12px;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 50px 5vw 35px;
  background: #17100e;
  color: white;
}

.footer-brand {
  grid-row: span 2;
}

footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-style: italic;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 27px;
  font-size: 11px;
}

footer small {
  grid-column: 2 / -1;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
  text-align: right;
}

.mobile-menu {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 10vw;
  background: var(--ink);
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  transform: translateY(-105%);
  visibility: hidden;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: 6vw;
  border: 0;
  background: transparent;
  color: white;
  font-size: 38px;
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
  }

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

  .menu-button {
    display: block;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding-top: 77px;
    flex-direction: column;
  }

  .hero-copy {
    padding: 65px 24px 44px;
  }

  .hero-title {
    font-size: clamp(55px, 14vw, 82px);
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-note {
    padding-top: 45px;
  }

  .hero-visual {
    min-height: 620px;
    margin: 0 14px 14px;
    border-radius: 2px 2px 70px 2px;
  }

  .hero-image-wrap img {
    object-position: 58% center;
  }

  .trust-strip {
    align-items: flex-start;
    gap: 24px;
  }

  .trust-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding: 85px 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .story-heading {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .story-grid {
    gap: 48px 14px;
  }

  .story-arrival,
  .story-braids {
    grid-column: 1 / span 7;
  }

  .story-nails,
  .story-selfie {
    grid-column: 8 / -1;
    padding-top: 70px;
  }

  .story-card figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  .experience-image {
    min-height: 560px;
  }

  .booking {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  footer small {
    grid-column: auto;
    grid-row: auto;
  }

  footer small {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    min-height: 610px;
  }

  .hero-title {
    font-size: 57px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-wrap img {
    object-position: 61% center;
  }

  .card-top {
    top: 6%;
    left: 5%;
  }

  .orbit-label {
    display: none;
  }

  .trust-strip {
    display: none;
  }

  .section-heading h2,
  .experience-copy h2,
  .booking h2 {
    font-size: 49px;
  }

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

  .story-heading h2 {
    font-size: 49px;
  }

  .story-grid {
    display: block;
  }

  .story-card,
  .story-nails,
  .story-selfie {
    margin-bottom: 48px;
    padding-top: 0;
  }

  .story-image img {
    aspect-ratio: 1 / 0.8;
  }

  .experience-image {
    min-height: 440px;
    border-radius: 90px 2px 2px;
  }

  .promise {
    min-height: 470px;
  }

  .promise blockquote {
    font-size: 47px;
  }

  .image-stamp {
    width: 105px;
    height: 105px;
    font-size: 13px;
  }
}

@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;
  }
}
