/* YOU-G HAIR Dress LP - blue / simple salon reference tone */
:root {
  --blue-900: #1a2f45;
  --blue-800: #243b53;
  --blue-700: #2d4a63;
  --blue-100: #e8f0f7;
  --blue-50: #f4f8fc;
  --white: #ffffff;
  --text: #2c3e50;
  --text-soft: #5a6c7d;
  --brand: #0abab5;
  --brand-dark: #089a96;
  --line: #06c755;
  --line-hover: #05b34c;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(26, 47, 69, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 47, 69, 0.08);
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-serif: "Noto Serif JP", "Noto Sans JP", serif;
  --max: 1120px;
  --header-h: 100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--blue-50);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--blue-50);
  -webkit-font-smoothing: antialiased;
}

/* Viewport center column */
.lp-page {
  width: 100%;
  max-width: var(--max);
  flex: 0 0 auto;
  margin-inline: auto;
  min-height: 100vh;
  background: var(--white);
  box-shadow: 0 0 48px rgba(26, 47, 69, 0.07);
}


a {
  color: var(--blue-700);
}

a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ----- Header ----- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 59, 83, 0.08);
}

.lp-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.lp-header__brand {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  text-decoration: none;
  color: var(--blue-900);
}

.lp-header__logo-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.lp-header__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-header__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lp-header__name {
  font-size: calc(0.95rem * 1.5);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.lp-header__sub {
  font-size: calc(0.68rem * 1.5);
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.lp-header__nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.lp-header__nav-cta:hover {
  background: var(--line-hover);
  color: var(--white);
}

/* ----- Hero ----- */
.lp-hero {
  position: relative;
  color: var(--white);
}

.lp-hero__visual {
  position: relative;
  min-height: min(72vh, 560px);
  max-height: 640px;
  overflow: hidden;
}

.lp-hero__img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 560px);
  max-height: 640px;
  object-fit: cover;
  display: block;
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(26, 47, 69, 0.75) 0%,
    rgba(36, 59, 83, 0.45) 45%,
    rgba(10, 186, 181, 0.25) 100%
  );
}

.lp-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.lp-hero__label {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
}

.lp-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.lp-hero__accent {
  color: #b8f5f3;
  font-weight: 600;
}

.lp-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 26rem;
  opacity: 0.95;
}

/* ----- Layout ----- */
.lp-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp-container--narrow {
  max-width: 640px;
}

.lp-section {
  padding: 3.5rem 0;
  background: var(--white);
}

.lp-section--tint {
  background: var(--blue-100);
}

.lp-section__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blue-900);
  letter-spacing: 0.06em;
  text-align: center;
}

.lp-section__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.85;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-section__note {
  margin: -0.5rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
}

/* ----- Cards ----- */
.lp-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .lp-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.lp-card {
  background: var(--white);
  border: 1px solid rgba(36, 59, 83, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.lp-section--tint .lp-card {
  background: var(--white);
}

.lp-card__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.lp-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-900);
}

.lp-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ----- Gallery ----- */
.lp-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lp-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

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

/* ----- Flow ----- */
.lp-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.lp-flow li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(36, 59, 83, 0.1);
}

.lp-flow li:last-child {
  border-bottom: none;
}

.lp-flow__step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--brand-dark);
}

.lp-flow__body {
  font-size: 0.95rem;
  color: var(--text);
}

.lp-flow__note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.lp-flow__notice {
  margin: 1.35rem 0 0;
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36, 59, 83, 0.18);
  border-left: 4px solid var(--blue-700);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--blue-900);
  box-shadow: 0 4px 16px rgba(26, 47, 69, 0.09);
}

/* ----- CTA ----- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.lp-btn:active {
  transform: scale(0.99);
}

.lp-btn--line {
  background: var(--line);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.35);
}

.lp-btn--line:hover {
  background: var(--line-hover);
  color: var(--white);
}

.lp-btn--lg {
  max-width: 100%;
}

.lp-hero .lp-btn--line {
  max-width: 100%;
}

.lp-cta-block {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: var(--white);
  text-align: center;
}

.lp-cta-block__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lp-cta-block__text {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.7;
}

.lp-cta-block .lp-btn--line {
  margin: 0 auto;
}

/* ----- Footer ----- */
.lp-footer {
  padding: 2rem 0 2.5rem;
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  text-align: center;
}

.lp-footer__copy {
  margin: 0 0 0.35rem;
}

.lp-footer__link {
  margin: 0;
}

.lp-footer__link a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.lp-footer__link a:hover {
  text-decoration: underline;
}

/* ----- Stylist ----- */
.lp-stylist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  margin-top: 0.25rem;
}

.lp-stylist__figure {
  margin: 0;
  flex-shrink: 0;
}

.lp-stylist__photo-frame {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px dashed rgba(36, 59, 83, 0.38);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), var(--blue-100));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.lp-stylist__photo-frame:has(img) {
  border-style: solid;
  border-color: rgba(36, 59, 83, 0.22);
  background: var(--white);
}

.lp-stylist__main {
  flex: 1;
  min-width: 0;
  width: 100%;
  text-align: left;
}

.lp-stylist__meta {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36, 59, 83, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  display: grid;
  grid-template-columns: minmax(5.25rem, auto) 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: baseline;
}

.lp-stylist__meta dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  opacity: 0.82;
}

.lp-stylist__meta dd {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--blue-900);
}

.lp-stylist__meta dd:first-of-type {
  padding-bottom: 0.55rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid rgba(36, 59, 83, 0.08);
}

.lp-stylist__ruby {
  font-size: 0.82em;
  font-weight: 500;
  color: var(--text-soft);
  margin-left: 0.25rem;
}

.lp-stylist__bio {
  margin: 0;
}

.lp-stylist__bio p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
}

.lp-stylist__photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}


@media (min-width: 640px) {
  .lp-stylist {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.75rem;
  }

  .lp-stylist__photo-frame {
    width: 104px;
    height: 104px;
  }
}

/* ----- Address ----- */
.lp-address {
  margin: 0;
  font-style: normal;
  text-align: center;
}

.lp-address__label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.lp-section--tint .lp-address__label {
  color: var(--blue-900);
}

.lp-address__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.lp-address__map {
  margin: 0.95rem 0 0;
  text-align: center;
}

.lp-address__map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  background: var(--blue-700);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, transform 0.15s ease;
}

.lp-address__map-link:hover {
  background: var(--blue-800);
  text-decoration: none;
}

.lp-footer__map-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-footer__map-link:hover {
  color: #fff;
}

.lp-footer__address {
  margin: 0 0 0.9rem;
  font-style: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

