:root {
  color-scheme: light;
  --ink: #111114;
  --muted: #6e6e73;
  --paper: #fbfbfd;
  --line: rgba(0, 0, 0, 0.12);
  --blue: #0071e3;
  --blue-dark: #0057b8;
  --mint: #e9f6f1;
  --clay: #f4ede5;
  --radius: 8px;
  --max: 1180px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body::selection {
  background: rgba(0, 113, 227, 0.18);
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 0 22px;
  background: rgba(251, 251, 253, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 214px;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 13px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #3f3f46;
  font-size: 12px;
}

.nav a,
.header-call {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.nav a:hover,
.header-call:hover {
  color: var(--blue);
}

.header-call {
  min-width: 124px;
  color: var(--blue);
  font-size: 13px;
  text-align: right;
}

.hero {
  padding: clamp(64px, 9vw, 110px) 22px 0;
  overflow: clip;
  text-align: center;
}

.hero-copy,
.section-heading,
.statement,
.immersive-copy,
.reservation {
  width: min(100%, 900px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: 104px;
  line-height: 1.02;
  font-weight: 800;
}

.mobile-title {
  display: none;
}

.mobile-only {
  display: none;
}

.hero-lead {
  max-width: 820px;
  margin: 28px auto 0;
  color: #333336;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.65;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: var(--blue);
  background: transparent;
}

.button.secondary:hover {
  text-decoration: underline;
}

.hero-visual {
  width: min(100%, 1320px);
  margin: clamp(44px, 7vw, 82px) auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8edf1;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.hero-visual img {
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
  object-position: center;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(100%, var(--max));
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

.quick-facts article {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
}

.quick-facts span,
.concern-card span,
.care-showcase span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quick-facts strong {
  display: block;
  font-size: 29px;
  line-height: 1.18;
}

.statement {
  padding: clamp(118px, 14vw, 190px) 22px;
  text-align: center;
}

.statement h2,
.immersive h2,
.experience h2,
.message h2,
.reservation h2,
.visit h2,
.concerns h2 {
  margin: 0;
  font-size: 76px;
  line-height: 1.05;
  font-weight: 800;
}

.statement p:last-child,
.immersive-copy p:last-child,
.experience-text p,
.reservation p {
  margin: 26px auto 0;
  color: #424245;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.58;
}

.concerns {
  padding: 86px 22px 110px;
  background: #fff;
}

.section-heading {
  text-align: center;
}

.section-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100%, var(--max));
  margin: 54px auto 0;
}

.concern-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 12px 12px 26px;
  border-radius: var(--radius);
  background: #f5f5f7;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.concern-card img {
  height: 178px;
  margin-bottom: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.concern-card span,
.concern-card strong,
.concern-card p {
  margin-left: 14px;
  margin-right: 14px;
}

.concern-card:nth-child(2n) {
  background: var(--mint);
}

.concern-card:nth-child(3n) {
  background: var(--clay);
}

.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.concern-card strong {
  display: block;
  min-height: 74px;
  margin-left: 14px;
  margin-right: 14px;
  font-size: 32px;
  line-height: 1.18;
}

.concern-card p {
  margin: 20px 14px 0;
  color: #3f3f46;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.immersive {
  padding: clamp(94px, 12vw, 150px) 22px;
  color: #f5f5f7;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), #050505 58%),
    url("assets/atmosphere-counsel.jpg")
      center / cover fixed;
}

.immersive-copy {
  text-align: center;
}

.immersive .eyebrow,
.immersive-copy p:last-child {
  color: rgba(245, 245, 247, 0.74);
}

.care-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 12px;
  width: min(100%, 1260px);
  margin: clamp(58px, 7vw, 90px) auto 0;
}

.care-showcase article {
  min-height: 330px;
  padding: 12px 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(30, 30, 32, 0.74);
  backdrop-filter: blur(24px);
}

.care-showcase img {
  height: 150px;
  margin-bottom: 22px;
  border-radius: 6px;
  object-fit: cover;
}

.care-showcase span,
.care-showcase h3,
.care-showcase p {
  margin-left: 14px;
  margin-right: 14px;
}

.care-showcase h3 {
  margin: 0 14px;
  font-size: 29px;
  line-height: 1.12;
}

.care-showcase p {
  margin: 24px 14px 0;
  color: rgba(245, 245, 247, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  width: min(100%, 1320px);
  padding: clamp(86px, 10vw, 132px) 22px;
  margin: 0 auto;
}

.photo-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7eef2;
}

.photo-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.experience-text p {
  max-width: 540px;
  margin-left: 0;
}

.message {
  padding: clamp(74px, 9vw, 118px) 22px;
  background: #fff;
}

.message-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 34px;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5f5f7, #fff 52%, #edf8f3);
  text-align: left;
}

.message-card p:last-child {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.message-card img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.reservation {
  padding: clamp(88px, 11vw, 142px) 22px;
  text-align: center;
}

.phone {
  display: inline-block;
  margin-top: 28px;
  color: var(--blue);
  font-size: 86px;
  font-weight: 800;
  line-height: 1;
}

.hours {
  color: var(--muted) !important;
  font-size: 17px !important;
}

.visit {
  padding: 86px 22px 118px;
  background: #fff;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  width: min(100%, var(--max));
  margin: 52px auto 0;
}

.map-card {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e5e5e7;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.access-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius);
  background: #f5f5f7;
}

.access-list dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.access-list dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.access-list a {
  color: var(--blue);
}

.footer {
  padding: 34px 22px 88px;
  color: #6e6e73;
  background: #f5f5f7;
  text-align: center;
}

.footer p,
.footer small {
  margin: 8px 0 0;
  font-size: 13px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  min-width: 74px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 113, 227, 0.32);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 74px;
  }

  .hero-lead {
    font-size: 23px;
  }

  .quick-facts strong {
    font-size: 25px;
  }

  .statement h2,
  .immersive h2,
  .experience h2,
  .message h2,
  .reservation h2,
  .visit h2,
  .concerns h2 {
    font-size: 58px;
  }

  .statement p:last-child,
  .immersive-copy p:last-child,
  .experience-text p,
  .reservation p {
    font-size: 22px;
  }

  .concern-card strong {
    font-size: 28px;
  }

  .phone {
    font-size: 68px;
  }

  .care-showcase,
  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience,
  .visit-layout,
  .message-card {
    grid-template-columns: 1fr;
  }

  .experience-text {
    text-align: center;
  }

  .message-card {
    text-align: center;
  }

  .experience-text p {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 50px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav,
  .header-call {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .mobile-only {
    display: inline;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-visual {
    margin-top: 42px;
    border-radius: 0;
    width: calc(100% + 44px);
    margin-left: -22px;
  }

  .hero-visual img {
    aspect-ratio: 3 / 3.4;
    object-position: 38% center;
  }

  .quick-facts,
  .concern-grid,
  .care-showcase {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 12px;
  }

  .quick-facts article {
    min-height: auto;
  }

  .statement h2,
  .immersive h2,
  .experience h2,
  .message h2,
  .reservation h2,
  .visit h2,
  .concerns h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .statement p:last-child,
  .immersive-copy p:last-child,
  .experience-text p,
  .reservation p {
    font-size: 19px;
  }

  .concern-card strong {
    font-size: 25px;
  }

  .phone {
    font-size: 44px;
  }

  .concerns,
  .visit {
    padding-top: 68px;
    padding-bottom: 82px;
  }

  .concern-card,
  .care-showcase article {
    min-height: auto;
  }

  .immersive {
    background-attachment: scroll;
  }

  .access-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-card {
    min-height: 420px;
  }

  .map-card iframe {
    min-height: 420px;
  }

  .floating-call {
    display: inline-flex;
  }
}
