:root {
  --cream: #f4eee7;
  --warm: #e6d9cf;
  --sand: #d6c8bd;
  --taupe: #ad978b;
  --mauve: #927a72;
  --ink: #2f2825;
  --muted: #71625d;
  --line: rgba(47, 40, 37, 0.18);
  --white: #fffaf6;
  --shadow: 0 24px 54px rgba(79, 61, 54, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  background: var(--mauve);
  transform: scaleX(0);
  transform-origin: left center;
}

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

.top-line {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  background: #d9ccc2;
  color: rgba(47, 40, 37, 0.78);
  border-bottom: 1px solid rgba(47, 40, 37, 0.12);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.top-line a {
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 38px;
  background: rgba(250, 246, 240, 0.92);
  border-bottom: 1px solid rgba(47, 40, 37, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 240, 0.98);
  box-shadow: 0 10px 28px rgba(47, 40, 37, 0.08);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  color: rgba(47, 40, 37, 0.76);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(47, 40, 37, 0.2);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  text-align: center;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: var(--mauve);
}

.brand small {
  margin-top: 5px;
  font-size: 0.61rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(47, 40, 37, 0.76);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 111px 0 auto 0;
  z-index: 90;
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px 28px;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(47, 40, 37, 0.12);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-whatsapp {
  margin-top: 12px;
  padding: 15px 18px !important;
  border: 1px solid var(--ink) !important;
  text-align: center;
}

.hero {
  position: relative;
  min-height: clamp(520px, 70vh, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 40, 37, 0.34), rgba(47, 40, 37, 0.42)),
    url("assets/hero-lash.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(47, 40, 37, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(790px, calc(100% - 40px));
  padding: 82px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 250, 246, 0.86);
}

.eyebrow.dark {
  color: var(--mauve);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.1rem, 7.6vw, 7.3rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 250, 246, 0.88);
  font-size: clamp(0.98rem, 1.35vw, 1.17rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 250, 246, 0.06);
  border-color: rgba(255, 250, 246, 0.55);
}

.btn-outline {
  margin-top: 16px;
  color: var(--ink);
  border-color: rgba(47, 40, 37, 0.32);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: rgba(47, 40, 37, 0.04);
}

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

.appointment-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  background: var(--white);
  border-bottom: 1px solid rgba(47, 40, 37, 0.12);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.appointment-strip span::after {
  content: " →";
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.intro-grid,
.feature-grid,
.guide-grid,
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.copy-column h2,
.guide-copy h2,
.section-heading h2,
.final-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.8vw, 5.6rem);
  line-height: 0.96;
  color: var(--mauve);
  text-wrap: balance;
}

.copy-column p,
.guide-copy p,
.final-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.98rem;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  margin: 0;
  background: var(--warm);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 246, 0.42);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.image-frame.large img {
  aspect-ratio: 4 / 3.45;
}

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

.image-frame figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 10px;
  background: rgba(255, 250, 246, 0.82);
  color: rgba(47, 40, 37, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-feature {
  background: #efe6dc;
  border-block: 1px solid rgba(47, 40, 37, 0.1);
}

.soft-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.soft-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid rgba(47, 40, 37, 0.12);
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--mauve);
  transform: rotate(45deg);
}

.guide {
  background: var(--cream);
}

.guide-grid {
  align-items: start;
}

.service-menu {
  border-top: 1px solid var(--line);
}

.menu-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.menu-row > span {
  color: var(--mauve);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.menu-row h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.menu-row p {
  margin: 0;
  color: var(--muted);
}

.experience {
  background: var(--white);
  border-block: 1px solid rgba(47, 40, 37, 0.1);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px minmax(180px, 0.7fr) 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  font-family: var(--serif);
  color: var(--mauve);
  font-size: 1.8rem;
}

.timeline-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.course {
  background: var(--cream);
}

.info-band {
  padding: 36px 0;
  background: var(--taupe);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-item {
  min-height: 92px;
  padding: 8px 20px;
  border-left: 1px solid rgba(255, 250, 246, 0.32);
}

.info-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 250, 246, 0.72);
}

.info-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
}

.info-item p,
.info-item a {
  margin: 0;
  color: rgba(255, 250, 246, 0.82);
  font-size: 0.92rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 156px;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  min-height: 156px;
  object-fit: cover;
  filter: saturate(0.85);
}

.final-cta {
  background: #eee3da;
}

.final-grid {
  align-items: start;
}

.final-card {
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border: 1px solid rgba(47, 40, 37, 0.12);
  box-shadow: var(--shadow);
}

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: 56px 0 34px;
}

.footer-brand {
  align-items: flex-start;
  text-align: left;
  min-width: auto;
  margin-bottom: 18px;
}

.footer-grid p {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: rgba(47, 40, 37, 0.74);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(47, 40, 37, 0.12);
  text-align: center;
  color: rgba(47, 40, 37, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255, 250, 246, 0.16);
  box-shadow: 0 16px 34px rgba(47, 40, 37, 0.22);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 0 22px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .brand {
    align-items: flex-start;
    text-align: left;
    min-width: auto;
  }

  .brand span {
    font-size: 1.36rem;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .intro-grid,
  .feature-grid,
  .guide-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .copy-column {
    order: 2;
  }

  .reverse-mobile .image-frame {
    order: 1;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
  }

  .timeline-item p {
    grid-column: 2 / -1;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 34px, 1120px);
  }

  .top-line {
    flex-direction: column;
    gap: 3px;
    min-height: auto;
    padding: 9px 16px;
    font-size: 0.56rem;
  }

  .mobile-menu {
    inset: 95px 0 auto 0;
  }

  .hero {
    min-height: 680px;
    place-items: end center;
    text-align: left;
  }

  .hero-bg {
    background-position: 54% center;
  }

  .hero-content {
    width: calc(100% - 34px);
    padding: 0 0 58px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .appointment-strip {
    min-height: 54px;
    padding: 0 18px;
    font-size: 0.59rem;
    text-align: center;
  }

  .section {
    padding: 72px 0;
  }

  .copy-column h2,
  .guide-copy h2,
  .section-heading h2,
  .final-grid h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .image-frame img,
  .image-frame.large img {
    aspect-ratio: 4 / 4.75;
  }

  .menu-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .timeline-item p {
    grid-column: auto;
  }

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

  .gallery-strip img {
    min-height: 132px;
  }

  .floating-whatsapp {
    left: 17px;
    right: 17px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 64px;
  }
}
