:root {
  --ink: #171815;
  --paper: #f1eee6;
  --acid: #d7ff3f;
  --muted: #a7a89f;
  --line: rgba(23, 24, 21, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; font-size: 20px; font-weight: 850; letter-spacing: -.04em; }
.header-brand { font-size: 27px; }
.brand-comb {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
  transform: rotate(-8deg);
}
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 2px solid var(--ink); border-radius: 50%; font-size: 13px; letter-spacing: -.06em;
}
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.nav-instagram { display: grid; place-items: center; }
.nav-instagram img {
  display: block;
  width: 23px;
  height: 23px;
  filter: grayscale(1) brightness(0);
}
.nav-book {
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 5vw;
  padding-block: 56px 70px;
}
.eyebrow { margin: 0 0 24px; text-transform: uppercase; font-size: 12px; letter-spacing: .18em; font-weight: 800; }
h1, h2 { margin: 0; font-weight: 820; letter-spacing: -.065em; line-height: .91; }
h1 { font-size: clamp(58px, 7.2vw, 108px); }
h1 em { color: transparent; -webkit-text-stroke: 2px var(--ink); font-style: normal; }
.intro { max-width: 550px; margin: 32px 0; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; letter-spacing: -.02em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { padding: 17px 24px; border: 1px solid var(--ink); border-radius: 999px; font-weight: 750; }
.button span, .visit-details span { margin-left: 18px; }
.button.primary { background: var(--acid); color: var(--ink); border-color: transparent; }
.button:hover, .nav-book:hover { background: var(--acid); color: var(--ink); }

.rainbow-book {
  position: relative;
  isolation: isolate;
  --glow-x: 50%;
  --glow-y: 50%;
}
.rainbow-book::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -5px;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,.95), transparent 32%),
    conic-gradient(from var(--rainbow-angle), #d7ff3f, #55f5c5, #69a7ff, #cb72ff, #ff668a, #ffbd45, #d7ff3f);
  filter: blur(12px);
  opacity: 1;
  animation: rainbow-turn 3.2s linear infinite, rainbow-breathe 1.8s ease-in-out infinite alternate;
}
.rainbow-book { transition: transform .18s ease; }
.rainbow-book:hover { transform: translateY(-1px); }
@property --rainbow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rainbow-turn { to { --rainbow-angle: 360deg; } }
@keyframes rainbow-breathe { to { transform: scale(1.035); } }

.hero-art {
  position: relative; height: 530px; overflow: hidden;
  background: transparent; border-radius: 42% 42% 4px 4px;
}
.hero-art::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: var(--acid);
  clip-path: inset(0 0 0 0);
  transition: clip-path .55s cubic-bezier(.22, .8, .3, 1);
}
.hero-art svg {
  position: absolute; z-index: 1; width: 82%; height: 92%; left: 9%; bottom: -8%; fill: var(--ink);
}
.hero-art .line { fill: none; stroke: var(--acid); stroke-width: 11; stroke-linecap: round; }
.stamp {
  position: absolute; z-index: 2; top: 26px; right: 28px; text-align: right;
  font-size: 13px; line-height: .82; font-weight: 900; letter-spacing: .16em;
}
.art-note { position: absolute; z-index: 2; bottom: 18px; left: 22px; color: var(--acid); font-size: 11px; letter-spacing: .18em; font-weight: 800; }

@media (hover: hover) {
  .hero-art:hover::before { clip-path: inset(0 0 38% 0); }
}

.ticker { overflow: hidden; background: var(--ink); color: var(--paper); padding: 18px 0; white-space: nowrap; }
.ticker-track { width: max-content; min-width: 100%; text-align: center; font-size: 14px; font-weight: 750; letter-spacing: .1em; }
.ticker-track span { display: block; min-width: 100%; }
.ticker-track span[aria-hidden="true"] { display: none; }
.ticker i { color: var(--acid); font-style: normal; margin: 0 28px; }

.services { padding-block: 90px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; }
h2 { font-size: clamp(48px, 6vw, 88px); }
.price-list { border-top: 0; }
.price-list article {
  display: grid; grid-template-columns: 1fr 90px 70px; gap: 18px; align-items: center;
  min-height: 92px; border-bottom: 1px solid var(--line);
}
.price-list article:last-child { border-bottom: 0; }
.price-list h3 { margin: 0 0 5px; font-size: 23px; letter-spacing: -.035em; }
.price-list p { margin: 0; color: #62635d; font-size: 14px; }
.price-list span { color: #62635d; font-size: 14px; }
.price-list strong { font-size: 25px; text-align: right; }

.visit {
  background: var(--ink); color: var(--paper); width: 100%; max-width: none;
  padding: 44px max(20px, calc((100vw - 1180px) / 2));
  display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px;
}
.visit-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cafe-logo-link { display: block; transition: transform .18s ease, opacity .18s ease; }
.cafe-logo-link:hover { transform: translateY(-2px); opacity: .9; }
.cafe-logo { display: block; width: min(265px, 100%); height: auto; }
.visit-details { font-size: 18px; line-height: 1.5; }
.visit-details p { margin: 0; }
footer {
  min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px;
  border-top: 1px solid var(--line); color: #62635d; font-size: 13px;
}
footer .brand { color: var(--ink); }
.footer-comb { display: block; width: 42px; height: 42px; object-fit: contain; transform: rotate(-8deg); }
.instagram-placeholder { display: grid; place-items: center; }
.instagram-placeholder img { display: block; width: 34px; height: 34px; }

.booking-menu-page {
  background: #f1f2f4;
  color: #202124;
}
.booking-menu {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 20px 0 56px;
}
.booking-profile,
.booking-services {
  background: #fff;
  border: 1px solid #dfe2e7;
  border-radius: 16px;
}
.booking-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 108px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.booking-profile img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.booking-profile h1 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.booking-services { overflow: hidden; }
.booking-services > a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 120px;
  padding: 24px 22px;
  border-bottom: 1px solid #dfe2e7;
  transition: background .16s ease;
}
.booking-services > a:last-child { border-bottom: 0; }
.booking-services > a:hover { background: #f7f8f9; }
.booking-services > a.featured-service {
  position: relative;
  background: #fbfff2;
  box-shadow: inset 0 0 0 2px rgba(165, 202, 34, .58);
}
.service-emoji {
  display: grid;
  place-items: center;
  width: 52px;
  min-height: 58px;
  font-size: 34px;
  line-height: 1;
}
.service-copy { min-width: 0; }
.favorite-label {
  display: inline-block;
  margin-bottom: 5px;
  color: #718800;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.booking-services h2 {
  margin: 0 0 7px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.booking-services p {
  margin: 0;
  color: #626978;
  font-size: 15px;
  line-height: 1.45;
}
.service-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
}
.duration,
.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: 6px;
  background: #e8ebef;
  font-size: 15px;
  font-weight: 750;
}
.price-tag {
  background: #e7f7ad;
  color: #334000;
}

@media (max-width: 800px) {
  .shell { width: min(100% - 28px, 620px); }
  .nav { min-height: 70px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-brand { font-size: 20px; }
  .brand-comb { width: 42px; height: 42px; }
  nav > a:not(.nav-book) { display: none; }
  nav { gap: 16px; }
  .nav-instagram img { width: 22px; height: 22px; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 46px; padding-block: 60px; }
  h1 { font-size: clamp(58px, 18vw, 92px); }
  .hero-art { display: none; }
  .ticker-track {
    display: flex;
    min-width: 0;
    text-align: left;
    animation: ticker-scroll 15s linear infinite;
  }
  .ticker-track span,
  .ticker-track span[aria-hidden="true"] {
    display: block;
    min-width: max-content;
    padding-right: 0;
  }
  .services { padding-block: 64px; grid-template-columns: 1fr; gap: 40px; }
  .price-list article { grid-template-columns: 1fr 70px 54px; gap: 10px; min-height: 82px; }
  .price-list p { max-width: 190px; }
  .visit {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 18px;
    padding-block: 32px;
  }
  .visit-brand { gap: 16px; }
  .cafe-logo { width: min(210px, 100%); }
  .visit-details { font-size: 16px; }
  footer {
    min-height: 90px;
    padding-block: 24px;
    align-items: center;
    flex-direction: row;
  }
  .booking-menu { width: min(100% - 24px, 620px); padding-top: 12px; }
  .booking-profile { align-items: flex-start; padding: 18px; margin-bottom: 24px; }
  .booking-profile img { width: 54px; height: 54px; }
  .booking-profile h1 { font-size: 22px; }
  .booking-profile { min-height: 92px; align-items: center; }
  .booking-services > a {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 116px;
    padding: 20px 16px;
  }
  .service-emoji { width: 44px; min-height: 54px; font-size: 30px; }
  .booking-services h2 { font-size: 20px; }
  .booking-services p { font-size: 14px; }
  .duration, .price-tag { padding: 5px 7px; font-size: 13px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: rise .65s ease-out both; }
  .hero-art { animation: rise .65s .12s ease-out both; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } }
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .rainbow-book::before { animation: none; }
  .ticker-track { animation: none; }
}
