:root {
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --bg-soft-contrast: #f3f4f6;
  --bg-pink: #fdf2f8;
  --text-strong: #101828;
  --text-body: #3c3f48;
  --text-muted: #575c6b;
  --accent: #e60076;
  --accent-soft: #fccee8;
  --border: #eae2db;
  --shadow: 0 4px 20px rgba(16, 24, 40, 0.08);
  --container: 1216px;
  --section-space: clamp(72px, 9vw, 120px);
  --hero-title: clamp(34px, 5vw, 60px);
  --section-title: clamp(34px, 4.2vw, 48px);
  --about-title: clamp(34px, 5vw, 60px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.topbar {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 0 16px;
  background: var(--bg-pink);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(234, 226, 219, 0.7);
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 81px;
  gap: 24px;
  padding: 0 0 env(safe-area-inset-right) 0;
}

.brand img {
  width: 208px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.menu a.is-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--text-strong);
  background: transparent;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero {
  position: relative;
  min-height: 823px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.26)),
    url("assets/Hero/Image%20%28Minimalist%20eyebrow%20beauty%29.png")
      68% top / cover no-repeat;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 823px;
  padding: 96px 0 72px;
}

.hero-card {
  width: min(100%, 672px);
  padding: clamp(24px, 4vw, 64px);
  border: 1px solid var(--bg-pink);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.about h2 {
  margin: 0;
  color: var(--text-strong);
  font-family: "Abhaya Libre", serif;
  text-wrap: balance;
}

.hero h1 {
  max-width: 420px;
  font-size: var(--hero-title);
  line-height: 1.05;
}

.hero-text {
  max-width: 494px;
  margin: 24px 0 32px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 180ms ease;
  text-align: center;
  line-height: 1.3;
  white-space: normal;
}

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

.button-dark {
  background: var(--text-strong);
  color: #fff;
}

.button-dark:hover {
  background: var(--accent);
  color: #fff;
}

.button-outline {
  border-color: var(--text-strong);
  color: var(--text-strong);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.services-page .button-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(230, 0, 118, 0.16);
}

.section {
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 32px;
  margin-bottom: 44px;
  text-align: center;
}

.section-heading h2 {
  font-size: var(--section-title);
  line-height: 1;
}

.section-heading.compact {
  gap: 16px;
}

.section-heading.compact p {
  margin: 0;
  font-size: 16px;
}

.heading-line {
  width: 1px;
  height: 64px;
  background: var(--accent-soft);
}

.services {
  padding-top: clamp(72px, 8vw, 88px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-soft);
  overflow: hidden;
  transition: box-shadow 260ms ease-out, transform 260ms ease-out;
}

.service-card img {
  width: 100%;
  aspect-ratio: 381 / 235;
  object-fit: cover;
  transition: transform 260ms ease-out;
  transform-origin: center;
}

.service-card:hover {
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-copy {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 24px;
  text-align: center;
}

.divider {
  width: 24px;
  height: 1px;
  background: var(--accent-soft);
}

.service-copy h3 {
  margin: 0;
  color: var(--text-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-copy p {
  margin: 0;
  line-height: 1.625;
  text-wrap: pretty;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.about {
  background: linear-gradient(to bottom, #fff 0%, #fff 12%, var(--bg-soft) 12%, var(--bg-soft) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 544px;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 4vw, 44px);
  border: 1px solid #ebecef;
  background: var(--bg-soft-contrast);
}

.about h2 {
  display: grid;
  margin-bottom: 21px;
  font-size: var(--about-title);
  line-height: 1.1;
}

.about-text {
  display: grid;
  gap: 16px;
  max-width: 595px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dfe3e8;
}

.about-text p {
  margin: 0;
  line-height: 1.625;
}

.signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

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

.signature strong {
  display: block;
  color: var(--text-strong);
  font-family: "Abhaya Libre", serif;
  font-size: 20px;
  font-weight: 400;
}

.signature span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: min(725px, 72vw);
  object-fit: cover;
}

.frame {
  position: absolute;
  width: 128px;
  height: 128px;
  pointer-events: none;
}

.frame-top {
  top: -24px;
  right: -24px;
  border-top: 1px solid var(--accent-soft);
  border-right: 1px solid var(--accent-soft);
}

.frame-bottom {
  left: -24px;
  bottom: -24px;
  border-left: 1px solid var(--accent-soft);
  border-bottom: 1px solid var(--accent-soft);
}

.cta-band {
  display: flex;
  justify-content: center;
  padding-top: 120px;
}

.gallery {
  padding-top: 24px;
  background: var(--bg-soft-contrast);
}

.gallery-shell {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 39px;
  background: var(--bg-soft-contrast);
}

.gallery-content {
  display: grid;
  justify-items: center;
  gap: 39px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 356px));
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.gallery-item {
  overflow: hidden;
  background: var(--bg-soft-contrast);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease-out;
  transform-origin: center;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.instagram-note {
  margin: 0;
  text-align: center;
}

.instagram-note a {
  color: var(--accent);
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.testimonial {
  margin: 0;
  padding-top: 24px;
  text-align: center;
}

.testimonial p {
  position: relative;
  margin: 0 0 32px;
  font-style: italic;
  line-height: 2;
}

.testimonial p::before {
  content: '"';
  display: block;
  margin-bottom: 24px;
  color: var(--accent-soft);
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1;
}

.testimonial cite {
  display: inline-block;
  padding-top: 24px;
  border-top: 1px solid var(--accent-soft);
  color: var(--text-strong);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--bg-pink);
  padding: 86px 0 20px;
}

.page-hero {
  padding: clamp(84px, 9vw, 108px) 0 64px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.page-hero-inner h1 {
  font-size: var(--hero-title);
  line-height: 1;
}

.page-hero-inner p {
  max-width: 512px;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.services-page {
  background: #fff;
}

.services-page .page-hero-inner,
.services-page .detail-grid,
.services-page .lash-pricing,
.services-page .service-cta-inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.service-detail {
  padding: 64px 0;
}

.lash-section {
  padding-top: 8px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  align-items: center;
}

.service-detail.reverse .detail-copy {
  order: 1;
}

.service-detail.reverse .detail-media {
  order: 2;
}

.detail-media img {
  width: 100%;
  aspect-ratio: 512 / 600;
  object-fit: cover;
}

.detail-copy h2,
.service-cta h2 {
  margin: 0 0 24px;
  color: var(--text-strong);
  font-family: "Abhaya Libre", serif;
  font-size: var(--section-title);
  line-height: 1.05;
}

.detail-intro,
.highlight-box p,
.price-note {
  margin: 0;
}

.highlight-box {
  margin-bottom: 32px;
  padding: 24px 24px 24px 26px;
  border-left: 2px solid var(--accent-soft);
  background: #f8f5f2;
}

.highlight-box p,
.detail-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.detail-intro-secondary {
  margin-top: 16px;
}

.detail-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.detail-pills li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  min-width: 0;
}

.detail-pills li img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.detail-pills li span {
  min-width: 0;
}

.price-block {
  margin-bottom: 28px;
  width: 100%;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--text-body);
}

.price-row span {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  min-width: 0;
}

.price-row strong {
  color: var(--text-body);
  font-family: "Abhaya Libre", serif;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.price-note {
  padding-top: 8px;
  opacity: 0.7;
  font-size: 14px;
  text-align: right;
}

.detail-action {
  min-width: 220px;
  width: 100%;
}

.lash-section .detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  align-items: center;
  margin-bottom: 32px;
}

.lash-section .detail-media {
  width: 100%;
}

.lash-section .detail-media img {
  width: 100%;
  aspect-ratio: 544 / 548;
  object-position: center;
}

.lash-section .detail-copy {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  padding-top: 0;
}

.lash-section .detail-copy h2 {
  margin-bottom: 54px;
}

.lash-section .detail-copy .detail-intro {
  max-width: 100%;
}

.lash-section .detail-copy .detail-intro + .detail-intro {
  margin-top: 42px;
}

.lash-section .detail-copy .detail-action {
  margin-top: 56px;
}

.lip-section {
  padding-top: 40px;
}

.lip-section .detail-grid {
  align-items: center;
}

.lip-section .detail-copy {
  max-width: 616px;
}

.lip-section .detail-copy h2 {
  margin-bottom: 32px;
}

.lip-section .detail-copy .detail-intro {
  max-width: 616px;
}

.lip-section .price-block {
  max-width: 616px;
  margin-top: 56px;
  margin-bottom: 40px;
}

.lip-section .detail-media img {
  aspect-ratio: 618 / 617;
}

.lash-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
}

.pricing-card {
  background: rgba(248, 245, 242, 0.45);
  padding: 32px;
  min-width: 0;
}

.pricing-card.bordered {
  background: #fff;
  border: 1px solid var(--text-body);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  margin: 0 0 8px;
  color: var(--text-body);
  font-family: "Abhaya Libre", serif;
  font-size: 24px;
  font-weight: 800;
}

.pricing-caption {
  margin: 0 0 20px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.maintenance-note,
.pricing-removal {
  margin: 8px 0 0;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
}

.pricing-removal {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
}

.service-cta {
  padding: 64px 0;
  background: var(--bg-soft);
}

.service-cta-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.footer-grid h3 {
  margin: 0 0 48px;
  color: var(--text-strong);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0 0 16px;
  line-height: 1.625;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
}

.footer-contact-item span {
  display: block;
}

.footer-logo {
  width: 159px;
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #fce7f3;
  font-size: 14px;
}

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

.socials a {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.socials img {
  width: 20px;
  height: 20px;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .service-grid,
  .testimonial-grid,
  .footer-grid,
  .about-grid,
  .detail-grid,
  .lash-pricing {
    grid-template-columns: 1fr;
  }

  .about-grid {
    padding: 32px 24px;
  }

  .about-media {
    order: -1;
  }

  .about-media img {
    min-height: 420px;
  }

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

  .service-detail.reverse .detail-copy,
  .service-detail.reverse .detail-media {
    order: initial;
  }

  .detail-grid {
    gap: 48px;
  }

  .lash-section .detail-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .lash-section .detail-media,
  .lash-section .detail-copy {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 12px 0 4px;
  }

  .menu.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 96px 0 56px;
  }

  .hero-card,
  .detail-action,
  .button {
    max-width: 100%;
  }

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

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

  .testimonial-grid {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-grid {
    gap: 40px;
  }

  .detail-pills {
    grid-template-columns: 1fr;
  }

  .lash-section .detail-copy {
    padding-top: 0;
  }

  .lash-section .detail-copy h2 {
    margin-bottom: 32px;
  }

  .lash-section .detail-copy .detail-intro + .detail-intro {
    margin-top: 24px;
  }

  .lash-section .detail-copy .detail-action {
    margin-top: 32px;
  }

  .page-hero-inner p,
  .detail-intro,
  .highlight-box p {
    max-width: 100%;
  }

  .price-row {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-grid > div:last-child {
    display: grid;
    justify-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-grid > div:last-child h3 {
    margin-bottom: 0;
  }

  .footer-grid > div:last-child p {
    margin: 0;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-bottom {
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
  }

  .footer-bottom p {
    display: none;
  }

  .socials {
    justify-content: center;
    gap: 32px;
    width: 100%;
  }

  .socials a {
    width: 28px;
    height: 28px;
  }

  .socials img {
    width: 28px;
    height: 28px;
  }

  .brand img {
    width: 160px;
  }

  .topbar {
    font-size: 11px;
  }

  .nav {
    gap: 16px;
  }

  .hero-card {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-text,
  .service-copy p,
  .about-text p {
    font-size: 15px;
  }

  .section {
    padding: 88px 0;
  }

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

  .page-hero {
    padding-top: 96px;
  }

  .pricing-card,
  .highlight-box {
    padding: 24px 20px;
  }

  .price-row {
    flex-direction: column;
    gap: 8px;
  }

  .price-row span {
    font-size: 15px;
  }

  .price-note,
  .maintenance-note,
  .pricing-removal {
    text-align: left;
  }

  .service-copy,
  .pricing-card,
  .about-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .frame {
    width: 72px;
    height: 72px;
  }

  .frame-top {
    top: -12px;
    right: -12px;
  }

  .frame-bottom {
    left: -12px;
    bottom: -12px;
  }

  .whatsapp-float {
    bottom: 76px;
  }
}

@media (max-width: 390px) {
  .topbar {
    padding: 8px 12px;
    min-height: 48px;
    line-height: 1.4;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-card {
    padding: 24px 18px;
  }

  .button {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-copy h3 {
    font-size: 14px;
  }

  .testimonial p {
    line-height: 1.8;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-grid h3 {
    margin-bottom: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 72px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 1440px) {
  .hero-media {
    background-position: center top;
  }

  .container {
    width: min(calc(100% - 96px), var(--container));
  }
}
