/* ===== Design Tokens ===== */
:root {
  --ink:         #2b2622;
  --ink-2:       #5a514a;
  --ink-3:       #8b8278;
  --paper:       #fbf8f3;
  --paper-2:     #f5f0e8;
  --rule-soft:   #d8cfc1;
  --accent-wash: #fdf0f2;
  --accent-soft: #f2c8cc;
  --accent:      #e8a0a8;
  --accent-deep: #d68a92;
  --forest:      #2d4a3e;
  --forest-dark: #1e3329;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  text-wrap: pretty;
  line-height: 2;
}

h1, h2, h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  color: var(--ink);
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 100px);
}

section, header, footer { width: 100%; }
section[id] { scroll-margin-top: 80px; }

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transition: opacity 400ms ease-out;
}
.fade-in.visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transition: none; }
}

/* ===== Chip ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--ink);
  padding: 8px 20px;
  font-size: 12px;
  border-radius: 999px;
  background: var(--paper);
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.06em;
  min-height: 44px;
  text-decoration: none;
  color: var(--ink);
}
.chip--accent {
  border-color: transparent;
  background: var(--accent-wash);
  color: var(--ink);
  box-shadow: 0 8px 24px -10px rgba(58,42,36,0.18);
}
.chip--accent:hover { background: var(--accent-soft); }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.30em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* ===== Accent hairline ===== */
.hairline {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ===== Sakura SVG ===== */
.sakura {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><g fill='%23f2c8cc' stroke='%23e8a0a8' stroke-width='0.8'><ellipse cx='12' cy='6' rx='2.6' ry='3.4'/><ellipse cx='17.2' cy='9' rx='2.6' ry='3.4' transform='rotate(60 17.2 9)'/><ellipse cx='17.2' cy='15' rx='2.6' ry='3.4' transform='rotate(120 17.2 15)'/><ellipse cx='12' cy='18' rx='2.6' ry='3.4'/><ellipse cx='6.8' cy='15' rx='2.6' ry='3.4' transform='rotate(60 6.8 15)'/><ellipse cx='6.8' cy='9' rx='2.6' ry='3.4' transform='rotate(120 6.8 9)'/><circle cx='12' cy='12' r='1.4' fill='%23e8a0a8' stroke='none'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Wavy divider ===== */
.wavy {
  width: 120px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='8' viewBox='0 0 40 8'><path d='M0 4 Q 5 0, 10 4 T 20 4 T 30 4 T 40 4' fill='none' stroke='%238b8278' stroke-width='1'/></svg>");
  background-repeat: repeat-x;
}

/* ===== Watercolor blob ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

/* ===== Image placeholder ===== */
.img-placeholder {
  background: var(--accent-wash);
  border: 1px solid var(--accent);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.15em;
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  box-shadow: 0 2px 10px rgba(43,38,34,0.10);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 80px;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.site-header__logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav__list {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-nav__link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav__link:hover { color: var(--accent-deep); }
.site-nav__social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.site-nav__social-link {
  display: flex;
  align-items: center;
  color: var(--ink-2);
  transition: color 0.2s;
  line-height: 0;
}
.site-nav__social-link svg {
  width: 22px;
  height: 22px;
}
.site-nav__social-link:hover { color: var(--accent-deep); }
.site-nav__official {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--forest);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.site-nav__official:hover { background: var(--forest-dark); }

/* ================================================================
   HAMBURGER
   ================================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 110;
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
}

/* ================================================================
   MOBILE MENU DRAWER
   ================================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.mobile-menu.is-open {
  pointer-events: auto;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 28, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu__drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--paper);
  padding: 24px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open .mobile-menu__drawer {
  transform: translateX(0);
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  margin-bottom: 32px;
  position: relative;
  flex-shrink: 0;
}
.mobile-menu__close span {
  position: absolute;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}
.mobile-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__link {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: color 0.2s;
}
.mobile-menu__link:hover { color: var(--accent-deep); }
.mobile-menu__divider {
  margin: 32px 0 24px;
  height: 1px;
  background: var(--rule-soft);
}
.mobile-menu__social {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-menu__social-link {
  display: flex;
  align-items: center;
  color: var(--ink-2);
  transition: color 0.2s;
  line-height: 0;
}
.mobile-menu__social-link:hover { color: var(--accent-deep); }
.mobile-menu__official {
  display: inline-flex;
  align-items: center;
  background: var(--forest);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s;
  align-self: flex-start;
}
.mobile-menu__official:hover { background: var(--forest-dark); }

/* ================================================================
   HERO
   ================================================================ */
.pink-zone {
  position: relative;
  overflow: hidden;
  background: #FBF6EC;
}
.hero {
  position: relative;
}
.hero__inner {
  position: relative;
  min-height: 720px;
  padding-bottom: 80px;
}
.hero__pink-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__watermark {
  position: absolute;
  top: 130px;
  left: 460px;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.hero__photo {
  position: absolute;
  right: 0;
  top: 60px;
  width: 540px;
  height: 580px;
  background-image: url('images/hero-photo.jpg');
  background-size: cover;
  background-position: 50% 15%;
  border-radius: 50% 50% 22% 22% / 35% 35% 14% 14%;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse 78% 86% at center, #000 50%, rgba(0,0,0,0.6) 75%, transparent 100%);
          mask-image: radial-gradient(ellipse 78% 86% at center, #000 50%, rgba(0,0,0,0.6) 75%, transparent 100%);
}
.hero__photo .petal { position: absolute; }
.hero__photo .petal--top { top: -16px; left: 80px; transform: rotate(-20deg); opacity: 0.95; }
.hero__photo .petal--bottom { bottom: 60px; right: -20px; transform: rotate(50deg); opacity: 0.85; }
.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero__copy--top { padding-top: 80px; }
.hero__copy--bottom { padding-top: 0; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.hero__eyebrow-text {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  letter-spacing: 0.32em;
  font-size: 13px;
  color: #4A332C;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__eyebrow-text::before,
.hero__eyebrow-text::after {
  content: '';
  width: 28px;
  height: 1px;
  background: #4A332C;
  opacity: 0.6;
}
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #4A332C;
  opacity: 0.7;
  white-space: nowrap;
}
.hero__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  color: #3A2A24;
  font-weight: 500;
  font-size: 60px;
  line-height: 1.36;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero__service-name {
  display: inline-flex;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #4A332C;
  opacity: 0.7;
  white-space: nowrap;
}
.hero__title-line { display: block; }
.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;
}
.hero__title-line--2 { padding-left: 40px; }
.hero__title-line--3 { padding-left: 80px; }
.hero__divider {
  margin: 28px 0 20px;
  width: 64px;
  height: 1.5px;
  background: #E5198A;
  opacity: 0.6;
}
.hero__lead {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  color: #4A332C;
  line-height: 2.1;
  letter-spacing: 0.06em;
  font-size: 16px;
  margin: 0 0 40px;
  max-width: 480px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: none;
  color: #3A2A24;
  background: var(--accent-wash);
  padding: 18px 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px -10px rgba(58,42,36,0.18);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(58,42,36,0.28);
}

/* ================================================================
   ABOUT APPEARANCE CARE
   ================================================================ */
.about-care {
  background: transparent;
  padding: 72px 0;
  border-bottom: 1px solid var(--accent-soft);
  position: relative;
  z-index: 1;
}
.about-care__inner {
  max-width: 800px;
}
.about-care__eyebrow {
  margin-bottom: 12px;
}
.about-care__heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 32px;
}
.about-care__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-care__text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.about-care__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  padding: 16px 20px;
  border-left: 2px solid var(--accent-deep);
  background: rgba(255,255,255,0.6);
}

/* ================================================================
   WORRIES
   ================================================================ */
.worries {
  padding: 72px 0;
  border-top: 1px solid var(--ink);
  background: var(--paper-2);
}
.worries__header { text-align: center; margin-bottom: 44px; }
.worries__eyebrow { margin-bottom: 8px; }
.worries__h2 {
  font-size: 40px;
  letter-spacing: 0.10em;
  margin-bottom: 10px;
}
.worries__sub {
  font-size: 17px;
  color: var(--ink-3);
}
.worries__list {
  list-style: none;
  margin: 0 auto;
  max-width: 620px;
}
.worries__item {
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  font-size: 20px;
  line-height: 1.7;
}
.worries__item::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent);
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  line-height: 1;
}

/* ================================================================
   PROMISE
   ================================================================ */
.promise {
  padding: 90px 0 80px;
  border-top: 1px solid var(--ink);
  text-align: center;
}
.promise__eyebrow { margin-bottom: 8px; }
.promise__h2 {
  font-size: 40px;
  letter-spacing: 0.10em;
  margin-bottom: 20px;
}
.promise__hairline { margin: 0 auto 36px; }
.promise__body {
  font-size: 20px;
  line-height: 2.2;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 48px;
  white-space: pre-line;
  letter-spacing: 0.04em;
}
.promise__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.pillar {
  border-top: 2px solid var(--accent);
  padding-top: 14px;
}
.pillar__num {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.20em;
  margin-bottom: 10px;
}
.pillar__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: var(--ink);
}
.pillar__desc {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink-2);
}

/* ================================================================
   PULL QUOTE
   ================================================================ */
.pull-quote {
  padding: 70px 0;
  background: var(--accent-wash);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
}
.pull-quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  text-align: left;
}
.pull-quote__img {
  width: 100%;
  aspect-ratio: 1254 / 900;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.pull-quote__body {}
.pull-quote__mark {
  font-family: 'Noto Serif JP', serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 14px;
  display: block;
}
.pull-quote__text {
  font-size: 22px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.08em;
  white-space: pre-line;
}
.pull-quote__attr {
  font-size: 16px;
  color: var(--ink-3);
  letter-spacing: 0.25em;
  margin-top: 24px;
}

/* ================================================================
   OFFER (What we do)
   ================================================================ */
.offer {
  padding: 72px 0;
  border-bottom: 1px solid var(--ink);
}
.offer__img {
  width: 56%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto 40px;
}
.offer__header { text-align: center; margin-bottom: 36px; }
.offer__eyebrow { margin-bottom: 8px; }
.offer__h2 {
  font-size: 38px;
  letter-spacing: 0.10em;
  margin-bottom: 10px;
}
.offer__sub {
  font-size: 17px;
  color: var(--ink-3);
}
.offer__list {
  list-style: none;
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  gap: 16px 64px;
}
.offer__item {
  font-size: 17px;
  padding-left: 30px;
  position: relative;
  line-height: 1.7;
}
.offer__item::before { display: none; }
.offer__item i {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 22px;
  color: var(--accent);
}
.offer__cta {
  text-align: center;
  margin-top: 40px;
}
.offer__cta .chip {
  font-size: 18px;
  padding: 14px 32px;
}
.offer__site-label {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.20em;
  margin-top: 10px;
}

/* ================================================================
   FLOW (はじめての方へ)
   ================================================================ */
.flow {
  padding: 72px 0;
}
.flow__header { text-align: center; margin-bottom: 44px; }
.flow__eyebrow { margin-bottom: 8px; }
.flow__h2 {
  font-size: 38px;
  letter-spacing: 0.10em;
  margin-bottom: 6px;
}
.flow__sub {
  font-size: 17px;
  color: var(--ink-3);
}
.flow__steps {
  list-style: none;
}
.flow__step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.flow__step-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.flow__step-num i {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.flow__step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.flow__step-desc {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.9;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  padding: 72px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.faq__header { text-align: center; margin-bottom: 40px; }
.faq__eyebrow { margin-bottom: 8px; }
.faq__h2 {
  font-size: 38px;
  letter-spacing: 0.10em;
}
.faq__list {}
.faq__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.faq__q {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq__q-mark {
  color: var(--accent);
  font-weight: 600;
  flex: 0 0 18px;
}
.faq__a {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.9;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq__a-mark {
  color: var(--ink-3);
  flex: 0 0 18px;
}

/* ================================================================
   ACCESS
   ================================================================ */
.access {
  padding: 70px 0;
}
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.access__eyebrow { margin-bottom: 8px; }
.access__welcome {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.20em;
  margin-top: 4px;
  margin-bottom: 20px;
}
.access__header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.access__h2 {
  font-size: 38px;
  letter-spacing: 0.10em;
  margin-bottom: 0;
}
.access__logo {
  width: 220px;
  height: auto;
  display: block;
}
.access__dl {}
.access__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 18px;
  line-height: 2;
}
.access__dt {
  color: var(--ink-3);
  letter-spacing: 0.20em;
  font-size: 13px;
  padding-top: 4px;
}
.access__dd { color: var(--ink); }
.access__chips {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.access__chips .chip {
  font-size: 14px;
  padding: 6px 14px;
  min-height: 44px;
}
.access__site {
  display: flex;
  align-items: center;
  gap: 16px;
}
.access__site-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s;
}
.access__site-link:hover {
  background: var(--forest-dark);
}
.access__social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.access__social-link {
  display: flex;
  align-items: center;
  color: var(--ink-2);
  transition: color 0.2s;
  line-height: 0;
}
.access__social-link:hover { color: var(--accent-deep); }

.access__map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.access__map-placeholder {
  width: 100%;
  min-height: 260px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: 90px 0 100px;
  background: var(--accent-wash);
  border-top: 1px solid var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact .container { position: relative; z-index: 1; }
.contact__blob {
  width: 220px; height: 220px;
  background: var(--accent-soft);
  bottom: 30px; left: 40px;
  opacity: 0.5;
}
.contact__eyebrow { margin-bottom: 16px; }
.contact__lead {
  font-size: 21px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.9;
}
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 62px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-decoration: none;
  margin: 12px 0 4px;
  line-height: 1.1;
}
.contact__phone i {
  font-size: 52px;
  flex-shrink: 0;
}
.contact__phone:hover { color: var(--accent-deep); }
.contact__hours {
  font-size: 16px;
  color: var(--ink-3);
  letter-spacing: 0.30em;
}
.contact__wavy {
  margin: 40px auto;
}
.contact__site {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.20em;
  text-decoration: none;
}
.contact__site:hover { color: var(--accent-deep); }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms ease, background 0.2s;
  z-index: 200;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--accent-deep); }

@media (max-width: 767px) {
  .back-to-top { bottom: 20px; right: 20px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  border-top: 1px solid var(--ink);
}
.site-footer .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 28px;
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.20em;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__address {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.10em;
  color: var(--ink-3);
}
.footer__address a {
  color: inherit;
  text-decoration: none;
}
.footer__address a:hover {
  text-decoration: underline;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1023px) {
  .hero__title { font-size: 46px; }
  .hero__photo { width: 400px; height: 560px; }
  .contact__phone { font-size: 48px; }
}

@media (max-width: 767px) {
  .site-nav__list { display: none; }
  .site-nav__social { display: none; }
  .site-nav__official { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .site-header .container { min-height: 60px; }
  .site-header__logo img { height: 38px; }

  .worries__item { font-size: 17px; padding-left: 28px; }
  .worries__item::before { font-size: 17px; }

  .flow__step-title { font-size: 18px; word-break: auto-phrase; }

  .hero { min-height: auto; padding-bottom: 24px; }
  .hero__pink-shape { height: 360px; }
  .hero__watermark { top: 40px; left: auto; right: 0; opacity: 0.55; }
  .hero__watermark svg { width: 220px; height: 220px; }
  .hero__copy { max-width: none; }
  .hero__copy--top { padding-top: 26px; }
  .hero__eyebrow { gap: 6px 10px; margin-bottom: 16px; flex-wrap: wrap; }
  .hero__service-name { white-space: normal; font-size: 12px; }
  .hero__location { display: flex; justify-content: center; white-space: normal; font-size: 12px; width: 100%; }
  .hero__divider { display: none; }
  .hero__lead { font-size: 15px; }
  .hero__eyebrow-text { font-size: 10px; letter-spacing: 0.28em; }
  .hero__title { font-size: 30px; line-height: 1.4; }
  .hero__title-line--2 { padding-left: 22px; }
  .hero__title-line--3 { padding-left: 44px; }
  .hero__photo {
    position: relative;
    right: auto; top: auto;
    width: auto; height: 240px;
    margin: 14px 20px 0;
    border-radius: 50% 50% 8px 8px / 18% 18% 8px 8px;
  }
  .hero__photo .petal { display: none; }
  .hero__divider { margin: 22px 0 18px; width: 48px; }
  .hero__lead { font-size: 12.5px; margin: 0 0 18px; max-width: none; }
  .hero__cta { padding: 16px 28px; font-size: 18px; }

  .about-care { padding: 48px 0; }
  .about-care__heading { font-size: 22px; }
  .about-care__text { font-size: 17px; text-wrap: auto; }
  .about-care__note { font-size: 16px; width: 100%; box-sizing: border-box; }
  .about-care__inner { width: 100%; }

  .worries { padding: 48px 0; }
  .promise { padding: 48px 0; }
  .promise__pillars {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }

  .offer { padding: 48px 0; }
  .offer__img { width: 100%; }
  .offer__list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .flow { padding: 48px 0; }
  .faq { padding: 48px 0; }

  .access { padding: 48px 0; }
  .access__grid { grid-template-columns: 1fr; }
  .access__header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .access__logo { width: 160px; }
  .access__row { font-size: 14px; }
  .access__chips .chip { font-size: 12px; padding: 6px 10px; }
  .access__site { flex-wrap: wrap; gap: 10px; }

  .pull-quote__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .contact { padding: 64px 0; }
  .contact__phone {
    font-size: 28px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact__phone i { font-size: 28px; }

  .site-footer .container {
    flex-direction: column;
    gap: 8px;
  }
}
