:root {
  --background: #fffaf7;
  --foreground: #241c1c;
  --muted: #766967;
  --line: #e7d9d3;
  --rose: #a16f68;
  --charcoal: #2e2929;
  --ivory: #fffdfb;
  --champagne: #d7b98d;
  --green: #e88f86;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Arial, sans-serif;
  letter-spacing: 0;
}

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

main {
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 247, 0.9);
  border-bottom: 1px solid rgba(231, 217, 211, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 25px);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.header-line {
  justify-self: end;
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--green);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(232, 143, 134, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.line-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(232, 143, 134, 0.34);
}

.line-button.primary {
  min-height: 52px;
  padding: 0 28px;
}

.wide {
  width: 100%;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 88px) 72px;
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.88) 0%, rgba(255, 250, 247, 0.66) 33%, rgba(255, 250, 247, 0.08) 68%),
    url("./assets/hero-eyelash-salon.png") center / cover no-repeat;
}

.hero-copy {
  max-width: min(760px, 58vw);
  color: var(--foreground);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.salon-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border: 1px solid rgba(161, 111, 104, 0.54);
  border-radius: 50%;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}

.salon-mark::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 17px;
  width: 28px;
  height: 12px;
  border-bottom: 2px solid var(--rose);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.hero-brand-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 0.95;
  white-space: nowrap;
}

.hero-brand-sub {
  margin: 10px 0 0;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  display: inline-flex;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.intro h2,
.flow h2,
.closing h2,
.salon-panel h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}

.hero h1 {
  max-width: none;
  font-size: clamp(20px, 2.5vw, 31px);
  color: var(--rose);
  white-space: nowrap;
}

.hero-text {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  color: var(--foreground);
  border-bottom: 1px solid rgba(36, 28, 28, 0.5);
  padding-bottom: 4px;
}

.intro,
.section,
.flow,
.closing {
  padding: 84px clamp(20px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--charcoal);
  color: white;
}

.intro p,
.section-heading p,
.service-card p,
.reservation-panel p,
.faq-list p,
.flow-list span {
  color: var(--muted);
  line-height: 1.85;
}

.intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.intro h2,
.section h2,
.flow h2,
.closing h2,
.salon-panel h2 {
  font-size: clamp(28px, 3.8vw, 46px);
}

.intro h2 {
  font-size: clamp(25px, 3.4vw, 40px);
}

.news-section {
  padding: 86px clamp(20px, 6vw, 88px) 96px;
  background: var(--ivory);
}

.news-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 54px;
  text-align: center;
}

.news-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 500;
}

.news-heading span {
  display: block;
  width: 30px;
  height: 4px;
  background: #ded8d5;
}

.news-list {
  max-width: 980px;
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid #d9d1cd;
}

.news-item time {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.news-item p {
  margin: 0;
  line-height: 1.8;
}

.more-link {
  display: block;
  width: max-content;
  margin: 26px max(0px, calc((100vw - 980px) / 2)) 0 auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--foreground);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.salon-story {
  position: relative;
  padding: 86px clamp(20px, 6vw, 88px) 118px;
  background: var(--background);
}

.salon-photo {
  position: relative;
  z-index: 1;
  min-height: 600px;
  width: min(1180px, 82vw);
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.06), rgba(255, 250, 247, 0.02)),
    url("./assets/salon-exterior.png") center / cover no-repeat;
}

.salon-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 88px);
  top: 132px;
  width: min(590px, 50vw);
  min-height: 430px;
  padding: clamp(42px, 5.2vw, 76px);
  background: #fff;
  box-shadow: 0 30px 74px rgba(46, 41, 41, 0.14);
}

.panel-brand {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: 0;
}

.salon-panel p:not(.panel-brand) {
  margin: 22px 0 0;
  color: var(--foreground);
  line-height: 2;
}

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

.section-heading p {
  margin: 18px 0 0;
}

.reason-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card,
.service-card,
.reservation-panel,
.faq-list details {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(46, 41, 41, 0.06);
}

.reason-card {
  overflow: hidden;
}

.reason-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reason-card-body {
  min-height: 138px;
  padding: 22px 24px 24px;
}

.reason-card-body span {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.reason-card-body p {
  margin: 22px 0 0;
  line-height: 1.7;
}

.menu-section {
  background: #f7eeea;
}

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

.service-card {
  min-height: 290px;
  padding: 30px;
}

.service-card h3,
.reservation-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.service-lead {
  color: var(--rose) !important;
  font-weight: 700;
}

.flow {
  background: var(--ivory);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list li {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.info-list {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.info-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--rose);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.reservation-panel {
  padding: 32px;
  position: sticky;
  top: 100px;
}

.faq-section {
  background: #faf4f1;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
}

.closing {
  text-align: center;
  color: white;
  background: var(--charcoal);
}

.closing h2 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(22px, 2.8vw, 34px);
  white-space: nowrap;
}

.closing .line-button {
  margin-top: 28px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 88px);
  background: #1c1818;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .service-grid,
  .flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .reservation-panel {
    position: static;
  }

  .salon-story {
    padding-bottom: 72px;
  }

  .salon-photo {
    min-height: 420px;
    width: 100%;
  }

  .salon-panel {
    position: relative;
    right: auto;
    top: auto;
    width: min(92%, 680px);
    margin: -84px auto 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand {
    white-space: normal;
    font-size: 18px;
  }

  .header-line {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 86vh;
    align-items: flex-end;
    padding: 112px 20px 48px;
    background:
      linear-gradient(180deg, rgba(255, 250, 247, 0.04) 0%, rgba(255, 250, 247, 0.9) 64%),
      url("./assets/hero-eyelash-salon.png") 62% center / cover no-repeat;
  }

  .hero h1 {
    font-size: 21px;
  }

  .hero-brand-lockup {
    align-items: flex-start;
  }

  .salon-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 28px;
  }

  .hero-brand-name {
    font-size: 27px;
  }

  .intro,
  .section,
  .flow,
  .closing,
  .news-section,
  .salon-story {
    padding: 58px 20px;
  }

  .salon-photo {
    min-height: 290px;
  }

  .salon-panel {
    width: 100%;
    margin-top: 0;
    padding: 28px 22px;
  }

  .reason-grid,
  .service-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list li:last-child {
    border-bottom: 0;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-heading {
    margin-bottom: 34px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .more-link {
    margin-right: 0;
  }

  footer {
    flex-direction: column;
  }
}
