:root {
  --ink: #141414;
  --muted: #686762;
  --paper: #f7f7f4;
  --white: #ffffff;
  --concrete: #d7d4cd;
  --teal: #00a9b4;
  --deep-teal: #08727a;
  --coral: #d95f4f;
  --moss: #627565;
  --line: rgba(20, 20, 20, 0.14);
  --shadow: 0 18px 60px rgba(10, 20, 20, 0.16);
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(0, 169, 180, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 247, 244, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}

.brand__name {
  font-size: 22px;
  font-weight: 800;
}

.brand__sub {
  font-size: 11px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--coral);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(820px, 84svh);
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 34px) clamp(20px, 6vw, 88px) 42px;
  color: var(--white);
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  background: var(--ink);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media img:first-child {
  grid-row: 1 / 3;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.36) 56%, rgba(10, 10, 10, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.42));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8fe8ed;
}

.hero__brand {
  margin: 0 0 10px;
  font-size: clamp(30px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.96;
}

.hero__brand span {
  display: block;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  line-break: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 66px);
  line-height: 1.08;
}

h1 span {
  display: block;
}

.hero__lead {
  width: 100%;
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.9;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--coral);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 740px;
  margin: 34px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero__facts div {
  padding: 14px;
  background: rgba(20, 20, 20, 0.24);
}

.hero__facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.hero__facts dd {
  margin: 5px 0 0;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 850;
}

.proof-band {
  background: var(--ink);
  color: var(--white);
}

.proof-band__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.16);
}

.proof-band p {
  margin: 0;
  padding: 18px 20px;
  background: var(--ink);
  font-weight: 800;
  text-align: center;
}

.section,
.gallery,
.reviews,
.final-cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 4vw, 42px);
}

.section__header {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.section__header--wide {
  max-width: 920px;
}

.section__header h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
}

.section__header p:not(.eyebrow),
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.section--intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro-grid {
  display: grid;
  gap: 18px;
  color: #3f3f3b;
  font-size: 17px;
  line-height: 1.9;
}

.intro-grid p {
  margin: 0;
}

.section--consult {
  max-width: none;
  background: var(--white);
}

.section--consult > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.consult-card,
.menu-card,
.staff-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20, 20, 20, 0.02);
}

.consult-card img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.consult-card div,
.staff-card div {
  padding: 22px;
}

.tag {
  margin: 0 0 10px;
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.consult-card h3,
.menu-card h3,
.staff-card h3,
.access-panel h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.consult-card p:not(.tag),
.menu-card p,
.staff-card p:not(.tag),
.access-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.segmented {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.segment {
  min-height: 40px;
  padding: 9px 14px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.segment.is-active {
  color: var(--white);
  background: var(--deep-teal);
}

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

.menu-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 22px;
}

.menu-card.is-hidden {
  display: none;
}

.menu-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 22px;
}

.menu-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.menu-card dt {
  color: var(--muted);
}

.menu-card dd {
  margin: 0;
  font-weight: 850;
}

.menu-card a {
  align-self: end;
  margin-top: auto;
  color: var(--deep-teal);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.gallery {
  max-width: none;
  background: #ecece7;
}

.gallery > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 12px;
}

.gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--concrete);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(20, 20, 20, 0.68);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

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

.staff-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: stretch;
}

.staff-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.reviews {
  max-width: none;
  color: var(--white);
  background: var(--deep-teal);
}

.reviews > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.reviews .eyebrow,
.reviews .section__header p {
  color: rgba(255, 255, 255, 0.78);
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.review-metrics div {
  padding: 26px 20px;
  background: var(--deep-teal);
}

.review-metrics strong {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.review-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.section--access {
  max-width: none;
}

.section--access > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.access-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.access-panel--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.access-panel--dark .tag,
.access-panel--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.info-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

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

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 20px 22px;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta a:first-child {
  background: var(--coral);
}

.mobile-cta a:last-child {
  background: var(--deep-teal);
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    min-height: 86svh;
  }

  .hero__media {
    grid-template-columns: 1fr;
  }

  .hero__media img:not(:first-child) {
    display: none;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.38) 58%, rgba(8, 8, 8, 0.5)),
      linear-gradient(90deg, rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.22));
  }

  .hero__facts,
  .proof-band__inner,
  .consult-grid,
  .menu-grid,
  .review-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section--intro,
  .access-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .staff-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-height) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .nav-cta {
    color: var(--white);
    text-align: center;
  }

  .hero {
    min-height: 82svh;
    padding: calc(var(--header-height) + 38px) 18px 28px;
  }

  .hero__content {
    max-width: calc(100vw - 36px);
  }

  h1 {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.18;
  }

  .hero__actions {
    display: none;
  }

  .hero__facts,
  .proof-band__inner,
  .consult-grid,
  .menu-grid,
  .gallery-grid,
  .staff-grid,
  .review-metrics {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
  }

  .hero__facts dt,
  .hero__facts dd {
    min-width: 0;
  }

  .hero__facts dd {
    text-align: left;
  }

  .proof-band p {
    text-align: left;
  }

  .section,
  .gallery,
  .reviews,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .segment {
    width: 100%;
  }

  .gallery figure,
  .gallery img {
    min-height: 240px;
  }

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

  .final-cta {
    margin-bottom: 86px;
  }

  .final-cta__actions {
    display: none;
  }

  .site-footer {
    display: grid;
    padding-bottom: 98px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 390px) {
  .hero__brand {
    font-size: 30px;
  }

  h1 {
    font-size: 25px;
  }

  .hero__lead {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
