:root {
  --color-ink: #23211f;
  --color-muted: #706b65;
  --color-line: #e4ded6;
  --color-soft: #f7f4ea;
  --color-blush: #ead9d5;
  --color-greige: #d7d0c7;
  --color-accent: #8f7a88;
  --color-accent-dark: #4b4248;
  --color-cream: #fffdf4;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 46px rgba(35, 33, 31, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-cream);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.8;
  padding-bottom: 74px;
}

body.nav-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(228, 222, 214, 0.9);
  box-shadow: 0 10px 30px rgba(35, 33, 31, 0.07);
}

.brand {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0;
  color: var(--color-accent-dark);
}

.brand-sub {
  font-size: 13px;
  color: var(--color-muted);
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-accent-dark);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 76px 16px auto;
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a {
  padding: 10px 8px;
  color: var(--color-muted);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.site-nav .nav-call {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.hero {
  display: grid;
  gap: 34px;
  min-height: auto;
  padding: 118px 20px 58px;
  background: var(--color-white);
  box-shadow: 0 0 0 100vmax var(--color-white);
  clip-path: inset(0 -100vmax);
}

.hero-copy,
.section,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.hero-copy {
  padding-left: 10px;
  align-self: center;
}

.hero-title,
.lead,
.hero-actions,
.hero-info {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 760ms ease, transform 760ms ease;
  will-change: opacity, transform;
}

.hero-title.is-visible,
.lead.is-visible,
.hero-actions.is-visible,
.hero-info.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.lead {
  transition-delay: 120ms;
}

.hero-actions {
  transition-delay: 220ms;
}

.hero-info {
  transition-delay: 320ms;
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 500;
}

h1 {
  margin-bottom: 20px;
  font-size: 44px;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(34px, 10vw, 68px);
}

h2 {
  margin-bottom: 16px;
  font-size: 32px;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.45;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 2;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-accent-dark);
  box-shadow: none;
}

.button-secondary {
  color: var(--color-accent-dark);
  background: transparent;
  border: 1px solid var(--color-line);
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-info div {
  padding: 14px 0;
  background: transparent;
  border: 1px solid var(--color-line);
  border-width: 1px 0;
  border-radius: 0;
}

.hero-info dt {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
}

.hero-info dd {
  margin: 0;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.hero-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--color-soft);
}

.hero-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gallery-main {
  grid-column: 1 / -1;
  min-height: 280px;
}

.hero-gallery-main img {
  object-fit: contain;
  background: var(--color-cream);
}

.hero-gallery-sub {
  min-height: 150px;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  color: rgba(95, 63, 57, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(45deg, #eadcd3 0 12px, #f7eee9 12px 24px);
  border: 1px solid rgba(138, 95, 85, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.photo-frame {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--color-white);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-main {
  aspect-ratio: 4 / 5;
  height: auto;
}

.top-mood {
  padding: 112px 0 0 20px;
  background: var(--color-white);
  box-shadow: 0 0 0 100vmax var(--color-white);
  clip-path: inset(0 -100vmax);
}

.top-mood .mood-video {
  margin: 0 0 0 auto;
}

.section {
  padding: 82px 20px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-note,
.service-card p,
.price-card p,
.reservation-panel p {
  color: var(--color-muted);
}

.concept {
  background: var(--color-soft);
  box-shadow: 0 0 0 100vmax var(--color-soft);
  clip-path: inset(0 -100vmax);
}

.concept-title {
  white-space: nowrap;
  font-size: clamp(11px, 3.4vw, 32px);
}

.concept-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--color-muted);
}

.concept-cards {
  display: grid;
  gap: 14px;
}

.concept-card {
  padding: 22px 0;
  background: transparent;
  border: 1px solid var(--color-line);
  border-width: 1px 0 0;
  border-radius: 0;
}

.concept-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.concept-card h3 {
  margin-bottom: 8px;
}

.concept-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.atmosphere {
  background: var(--color-white);
  box-shadow: 0 0 0 100vmax var(--color-white);
  clip-path: inset(0 -100vmax);
}

.atmosphere-heading {
  max-width: 640px;
}

.atmosphere-title {
  white-space: nowrap;
  font-size: clamp(17px, 5.2vw, 44px);
}

.atmosphere-grid {
  display: grid;
  gap: 14px;
}

.atmosphere-photo {
  overflow: hidden;
  margin: 0;
  background: var(--color-soft);
}

.atmosphere-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atmosphere-photo-large {
  aspect-ratio: 4 / 3;
  background: var(--color-cream);
}

.atmosphere-photo-large img {
  object-fit: contain;
}

.atmosphere-photo-tall {
  aspect-ratio: 3 / 4;
}

.atmosphere-photo-wide {
  aspect-ratio: 4 / 5;
}

.mood-video {
  position: relative;
  overflow: hidden;
  width: min(100%, 980px);
  margin: 34px auto 0;
  aspect-ratio: 16 / 9;
  background: var(--color-greige);
}

.mood-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(35, 33, 31, 0.02), rgba(35, 33, 31, 0.18)),
    linear-gradient(90deg, rgba(255, 253, 244, 0.26), rgba(255, 253, 244, 0));
  pointer-events: none;
}

.mood-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mood-video-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: var(--color-white);
  text-align: left;
  text-shadow: 0 1px 18px rgba(35, 33, 31, 0.42);
}

.mood-video-caption span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mood-video-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.service {
  background: var(--color-cream);
  box-shadow: 0 0 0 100vmax var(--color-cream);
  clip-path: inset(0 -100vmax);
}

.service-title {
  white-space: nowrap;
  font-size: clamp(17px, 5vw, 44px);
}

.service-grid {
  display: grid;
  gap: 30px;
}

.service-card {
  display: grid;
  overflow: hidden;
  background: #f3f2ee;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
  will-change: opacity, transform;
}

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

.service-card:nth-child(2) {
  transition-delay: 90ms;
}

.service-card:nth-child(3) {
  transition-delay: 160ms;
}

.service-card:nth-child(4) {
  transition-delay: 230ms;
}

.service-card:nth-child(5) {
  transition-delay: 300ms;
}

.service-media {
  min-height: 240px;
  background-color: var(--color-greige);
  background-position: center;
  background-size: cover;
}

.service-media-hair {
  background-image: url("../img/hair-style-cut.jpg");
  background-position: center 58%;
}

.service-media-resetter {
  background-image: url("../img/hair-resetter-closeup.jpg");
  background-position: center 48%;
}

.service-media-eyelash {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)), url("../img/eyelash-extension.jpg");
  background-position: center 34%;
}

.service-media-lift {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)), url("../img/parisienne-lash-lift.jpg");
}

.service-media-skin {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)), url("../img/beauty-hair-removal.jpg");
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px 30px;
}

.service-content h3 {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 500;
}

.service-content p {
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 46px;
  margin-top: auto;
  padding: 12px 24px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  border: 0;
  border-radius: 0;
  background: var(--color-accent);
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.service-link:hover {
  color: var(--color-white);
  background: var(--color-accent-dark);
}

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .lead,
  .hero-actions,
  .hero-info {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

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

.price-grid {
  display: grid;
  gap: 18px;
}

.price-card {
  padding: 24px 0;
  background: transparent;
  border: 1px solid var(--color-line);
  border-width: 1px 0 0;
  border-radius: 0;
  box-shadow: none;
}

.price-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.price-card dl div {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  background: transparent;
  border-bottom: 1px solid rgba(228, 222, 214, 0.72);
  border-radius: 0;
}

.price-card dt {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.price-card dd {
  margin: 0;
  color: var(--color-accent-dark);
  font-weight: 700;
  line-height: 1.5;
}

.price-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.price-callout {
  margin: 18px 0 0;
  padding: 18px 0 0;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid var(--color-line);
  border-width: 1px 0 0;
  border-radius: 0;
}

.hours {
  background: var(--color-soft);
  box-shadow: 0 0 0 100vmax var(--color-soft);
  clip-path: inset(0 -100vmax);
}

.hours-panel {
  display: grid;
  gap: 18px;
  padding: 24px 0;
  background: transparent;
  border: 1px solid var(--color-line);
  border-width: 1px 0;
  border-radius: 0;
  box-shadow: none;
}

.hours-main span {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.hours-main strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
}

.hours-main p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.last-order {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.last-order li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line);
}

.last-order li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.last-order span {
  color: var(--color-muted);
}

.last-order strong {
  text-align: right;
}

.access-grid {
  display: grid;
  gap: 18px;
}

.access-details,
.map-frame,
.reservation-panel {
  border: 1px solid var(--color-line);
  border-radius: 0;
}

.access-details {
  padding: 24px 0;
  border-width: 1px 0;
}

.access-details dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.access-details dt {
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.access-details dd {
  margin: 0;
}

.access-details a {
  color: var(--color-accent-dark);
  font-weight: 700;
}

.access-details .access-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c13584;
}

.access-details .access-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.map-frame {
  overflow: hidden;
  min-height: 240px;
  background: var(--color-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.reservation {
  padding-top: 20px;
}

.reservation-panel {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 34px 22px;
  text-align: center;
  background: var(--color-soft);
}

.reservation-logo {
  width: min(46vw, 150px);
  margin: 0;
}

.reservation-logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.reservation-content {
  max-width: 620px;
}

.reservation-panel .button {
  width: 100%;
  max-width: 320px;
}

.reservation-content .button {
  margin-top: 4px;
}

.detail-hero,
.detail-section {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.detail-hero {
  display: grid;
  gap: 34px;
  padding: 126px 20px 72px;
  background: var(--color-white);
  box-shadow: 0 0 0 100vmax var(--color-white);
  clip-path: inset(0 -100vmax);
}

.detail-hero-copy {
  align-self: center;
}

.detail-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 14vw, 84px);
}

.detail-title-nowrap {
  white-space: nowrap;
  font-size: clamp(40px, 11vw, 84px);
}

.detail-title-split span {
  display: block;
}

.detail-hero-copy p:last-child,
.detail-text p,
.detail-reservation p {
  color: var(--color-muted);
}

.detail-hero-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-greige);
}

.detail-hero-media video,
.detail-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-media img {
  object-position: center;
}

.detail-section {
  padding: 76px 20px;
}

.detail-intro {
  display: grid;
  gap: 34px;
  justify-items: center;
}

.detail-text h2,
.process-section h2,
.detail-reservation h2 {
  font-size: clamp(30px, 8vw, 48px);
}

.detail-photo {
  overflow: hidden;
  width: min(100%, 520px);
  margin: 0;
  aspect-ratio: 4 / 5;
  background: var(--color-soft);
}

.detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.detail-photo-wide {
  aspect-ratio: 1 / 1;
}

.detail-photo-wide img {
  object-fit: contain;
  background: #eadfdf;
}

.process-section {
  background: var(--color-soft);
  box-shadow: 0 0 0 100vmax var(--color-soft);
  clip-path: inset(0 -100vmax);
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  counter-increment: process;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 17px;
}

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

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.benefit-list,
.voice-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.voice-list li {
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-size: 17px;
}

.benefit-list li:last-child,
.voice-list li:last-child {
  border-bottom: 1px solid var(--color-line);
}

.benefit-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  vertical-align: middle;
}

.detail-gallery-section {
  background: var(--color-white);
  box-shadow: 0 0 0 100vmax var(--color-white);
  clip-path: inset(0 -100vmax);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.detail-gallery figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 1 / 1;
  background: #eadfdf;
}

.detail-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-duo {
  display: grid;
  gap: 42px;
}

.detail-duo h2,
.detail-price-panel h2 {
  font-size: clamp(30px, 8vw, 48px);
}

.detail-price-panel p:not(.eyebrow):not(.detail-price) {
  color: var(--color-muted);
}

.detail-price {
  margin: 18px 0 20px;
  color: var(--color-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 12vw, 72px);
  line-height: 1;
}

.detail-price span {
  margin-left: 10px;
  color: var(--color-muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
}

.lash-style-grid {
  display: grid;
  gap: 26px;
}

.lash-style-card {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}

.lash-style-card figure {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--color-soft);
}

.lash-style-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lash-style-card h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 6vw, 30px);
}

.lash-style-card p {
  color: var(--color-muted);
  font-size: 15px;
}

.feature-pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 520px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-pill-list li {
  display: grid;
  min-height: 96px;
  place-items: center;
  color: var(--color-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
}

.removal-price-grid {
  display: grid;
  gap: 28px;
}

.removal-price-card {
  padding: 26px 0 0;
  border-top: 1px solid var(--color-line);
}

.removal-price-card h3 {
  margin-bottom: 20px;
  font-size: clamp(24px, 7vw, 36px);
}

.removal-price-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}

.removal-price-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid rgba(228, 222, 214, 0.82);
}

.removal-price-card dl div:last-child {
  border-bottom: 1px solid rgba(228, 222, 214, 0.82);
}

.removal-price-card dt {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.removal-price-card dd {
  margin: 0;
  color: var(--color-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  white-space: nowrap;
}

.removal-price-card p {
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 14px;
}

.detail-reservation {
  display: grid;
  gap: 24px;
  align-items: center;
  background: var(--color-cream);
  box-shadow: 0 0 0 100vmax var(--color-cream);
  clip-path: inset(0 -100vmax);
}

.detail-reservation .button {
  width: 100%;
  max-width: 320px;
}

.site-footer {
  padding: 32px 20px 40px;
  color: var(--color-muted);
  text-align: center;
  border-top: 1px solid var(--color-line);
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--color-accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.fixed-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  color: var(--color-white);
  background: var(--color-accent-dark);
  border-radius: 0;
  box-shadow: 0 16px 34px rgba(35, 33, 31, 0.22);
}

.fixed-call span {
  font-size: 13px;
}

.fixed-call strong {
  font-size: 16px;
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-inline: 34px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0;
  }

  .site-nav .nav-call {
    padding: 9px 14px;
    border: 1px solid var(--color-line);
    border-radius: 0;
  }

  .hero {
    gap: 56px;
    padding-inline: 34px;
    padding-top: 136px;
    padding-bottom: 56px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-width: 190px;
  }

  .hero-copy {
    padding-left: 18px;
  }

  .hero-info {
    max-width: 460px;
  }

  .hero-gallery {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
  }

  .hero-gallery-main {
    grid-column: auto;
    grid-row: span 2;
    min-height: 520px;
  }

  .hero-gallery-sub {
    min-height: 252px;
  }

  .photo-main {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .top-mood {
    padding: 124px 0 0 34px;
  }

  .section {
    padding: 112px 34px;
  }

  h1 {
    font-size: 60px;
  }

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

  h2 {
    font-size: 44px;
  }

  .concept-title {
    font-size: 24px;
  }

  .concept-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .atmosphere-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(190px, 0.72fr) minmax(260px, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .atmosphere-photo-large {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
  }

  .atmosphere-photo-tall {
    grid-column: 8 / span 5;
    grid-row: 1 / span 1;
    aspect-ratio: auto;
  }

  .atmosphere-photo-wide {
    grid-column: 8 / span 5;
    grid-row: 2 / span 1;
    aspect-ratio: auto;
  }

  .mood-video {
    margin-top: 48px;
  }

  .mood-video-caption {
    top: 30px;
    left: 30px;
  }

  .mood-video-caption strong {
    font-size: 34px;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .service-card {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    min-height: 240px;
  }

  .service-media,
  .service-content {
    min-height: 240px;
  }

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

  .price-card {
    padding: 26px 0;
  }

  .hours-panel {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 36px 0;
  }

  .access-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .map-frame {
    min-height: 320px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .reservation-panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    justify-items: start;
    padding: 52px 44px;
    text-align: left;
  }

  .reservation-logo {
    width: 170px;
  }

  .reservation-content .button {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .detail-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
    gap: 58px;
    align-items: center;
    padding: 142px 34px 92px;
  }

  .detail-hero-media {
    aspect-ratio: 3 / 4;
  }

  .detail-section {
    padding: 104px 34px;
  }

  .detail-intro {
    justify-items: center;
  }

  .detail-photo {
    aspect-ratio: 3 / 4;
  }

  .detail-photo-wide {
    aspect-ratio: 16 / 10;
    width: min(100%, 760px);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
  }

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

  .detail-reservation {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .detail-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .detail-duo {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: 64px;
    align-items: start;
  }

  .lash-style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .feature-pill-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100%, 760px);
  }

  .removal-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
  }

  .removal-price-card-wide {
    grid-column: 1 / -1;
  }

  .removal-price-card-wide dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
  }

  .fixed-call {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: auto;
    padding: 0 22px;
  }
}

@media (min-width: 1040px) {
  .site-header {
    padding-inline: max(34px, calc((100vw - var(--max-width)) / 2));
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
  }

  .concept-title {
    font-size: 32px;
  }

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

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 42px;
  }

  .section-heading {
    margin-bottom: 48px;
  }
}
