:root {
  --ink: #3e3a36;
  --muted: #746f68;
  --cream: #f7f1e8;
  --paper: #fcf5ea;
  --sage: #7c9188;
  --sage-dark: #60766e;
  --sand: #d9cbbb;
  --line: rgba(86, 73, 60, 0.14);
  --shadow: 0 24px 70px rgba(69, 55, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 72px;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.75;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(252, 245, 234, 0.94);
  border-bottom: 1px solid rgba(86, 73, 60, 0.1);
  box-shadow: 0 10px 34px rgba(64, 50, 37, 0.06);
  backdrop-filter: blur(18px) saturate(1.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: min(250px, 42vw);
  height: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(86, 73, 60, 0.13);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(64, 50, 37, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sage-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
}

.nav-cta {
  padding: 8px 16px !important;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(96, 118, 110, 0.22);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(70px, 9vw, 140px) clamp(20px, 5vw, 80px);
  background: #2f2b28;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 27, 22, 0.78), rgba(52, 41, 33, 0.42) 46%, rgba(40, 32, 27, 0.12)),
    linear-gradient(0deg, rgba(35, 27, 22, 0.28), rgba(255, 245, 232, 0.10) 46%, rgba(255, 255, 255, 0.18)),
    url("assets/hero.jpg") center / cover;
  transform: scale(1.02);
}

.hero-glow {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(247, 241, 232, 0.82), rgba(247, 241, 232, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e8ded0;
}

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

h1 {
  margin: 0;
  max-width: 10em;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(48px, 7.4vw, 90px);
  font-weight: 500;
  line-height: 1.08;
  text-shadow: 0 10px 34px rgba(36, 27, 20, 0.38);
}

h2 {
  margin: 0 0 18px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(31px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.28;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.45;
}

.lead {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2.1vw, 21px);
  text-shadow: 0 8px 26px rgba(36, 27, 20, 0.28);
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
}

.access-card .button.secondary {
  color: var(--sage-dark);
  border-color: var(--sage);
}

.access-card .button.map-button {
  color: var(--sage-dark);
  background: #fff;
  border-color: rgba(96, 118, 110, 0.32);
}

.access-card .button.instagram-button {
  color: #fff;
  background: #8b7466;
  border-color: #8b7466;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-notes span {
  padding: 6px 12px;
  color: #f8f1e8;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 13px;
}

.hero-subcopy {
  position: relative;
  margin: 30px 0 0;
  padding-left: 26px;
  color: #fff8ed;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  text-shadow: 0 8px 28px rgba(36, 27, 20, 0.34);
}

.hero-subcopy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 2px;
  height: 2.4em;
  background: rgba(255, 248, 237, 0.72);
}

.section {
  scroll-margin-top: 72px;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 80px);
}

.section-copy {
  width: min(760px, 100%);
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

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

.feature-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(64, 50, 37, 0.06);
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: var(--cream);
}

.photo-band img {
  width: 100%;
  height: clamp(240px, 35vw, 480px);
  object-fit: cover;
  border-radius: 6px;
}

.menu-section {
  background: var(--cream);
}

.menu-list {
  width: min(960px, 100%);
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 24px clamp(20px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
}

.menu-item strong {
  color: var(--sage-dark);
  font-size: clamp(22px, 3vw, 30px);
  white-space: nowrap;
}

.menu-item.featured {
  background: linear-gradient(90deg, rgba(124, 145, 136, 0.13), rgba(255, 255, 255, 0));
}

.menu-badge {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 10px;
  color: #fff !important;
  background: var(--sage-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.menu-note {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
}

.god-cleaner-section {
  background: #fffaf3;
}

.god-cleaner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.god-cleaner-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.small-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(124, 145, 136, 0.11);
  border: 1px solid rgba(124, 145, 136, 0.16);
  border-radius: 8px;
  font-size: 14px !important;
}

.god-cleaner-image img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.owner-section {
  background: #fbf7ef;
}

.owner-section .split-image img {
  object-position: center top;
}

.split-copy p {
  color: var(--muted);
  font-size: 17px;
}

.owner-meta {
  margin: 0 0 18px;
  color: var(--sage-dark) !important;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-section {
  background: #fbf7ef;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1040px, 100%);
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
}

.flow li {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 30px;
}

.flow p {
  margin: 0;
  color: var(--muted);
}

.takajo-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.65), transparent 28%),
    linear-gradient(135deg, #edf3ef, #f8efe4);
}

.takajo-card {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 250, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.takajo-copy {
  width: min(820px, 100%);
}

.takajo-copy p:not(.eyebrow),
.takajo-note {
  color: var(--muted);
  font-size: 16px;
}

.takajo-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.takajo-points article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.takajo-points span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 26px;
}

.takajo-points p {
  margin: 0;
  color: var(--muted);
}

.takajo-menu {
  margin-top: 28px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.takajo-menu h3 {
  margin-bottom: 18px;
}

.takajo-menu dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.takajo-menu dl div {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.takajo-menu dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.takajo-menu dt {
  color: var(--sage-dark);
  font-weight: 700;
}

.takajo-menu dd {
  margin: 0;
}

.takajo-note {
  margin: 26px 0 0;
  padding: 14px 18px;
  background: rgba(124, 145, 136, 0.12);
  border-radius: 8px;
}

.access-section {
  background:
    linear-gradient(rgba(96, 118, 110, 0.72), rgba(96, 118, 110, 0.72)),
    url("assets/treatment-back.jpg") center / cover;
}

.access-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-embed {
  width: min(860px, 100%);
  margin: 18px auto 0;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: min(420px, 62vw);
  min-height: 300px;
  border: 0;
}

.access-card dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.access-card dl div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.access-card dt {
  color: var(--sage-dark);
  font-weight: 700;
}

.access-card dd {
  margin: 0;
  color: var(--ink);
}

.footer {
  padding: 34px 20px;
  color: #fff;
  text-align: center;
  background: #6d7f78;
}

.footer p {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 28px;
}

.footer small {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  body {
    padding-top: 66px;
  }

  .site-header {
    position: fixed;
    align-items: center;
    flex-direction: row;
    min-height: 66px;
    padding: 8px 16px;
  }

  .brand img {
    width: min(218px, 62vw);
  }

  .section {
    scroll-margin-top: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    overflow: visible;
    background: rgba(252, 245, 234, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(64, 50, 37, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav a {
    display: flex;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 8px;
  }

  .nav a:not(.nav-cta) {
    background: rgba(255, 255, 255, 0.42);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 4px;
    padding: 12px 16px;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .feature-grid,
  .flow,
  .takajo-points {
    grid-template-columns: 1fr;
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-band img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
    padding-top: 56px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions,
  .access-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item strong {
    font-size: 25px;
  }

  .access-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .takajo-menu dl div {
    grid-template-columns: 1fr;
  }
}


/* 2026-05-07 PM header refinements */
.site-header{background:var(--paper);backdrop-filter:none;}
.owner-photo-heading{margin:0 0 18px;}
.owner-photo-heading h2{margin:0;}
@media (max-width:900px){body{padding-top:58px;}.site-header{min-height:58px;padding:6px 14px;gap:12px;box-shadow:0 8px 24px rgba(64,50,37,.05);}.brand img{width:min(184px,56vw);}.section{scroll-margin-top:58px;}.menu-toggle{width:38px;height:38px;gap:5px;box-shadow:0 8px 20px rgba(64,50,37,.07);}.menu-toggle span{width:18px;}.nav{top:calc(100% + 6px);left:14px;right:14px;gap:5px;padding:10px;background:var(--paper);}.nav a{padding:9px 12px;}.nav .nav-cta{padding:10px 14px;}body.menu-open .nav{transform:translateY(7px);}}