:root {
  --ink: #2b252b;
  --muted: #6f626b;
  --paper: #fff9f7;
  --cloud: #f8f1f6;
  --sea: #9a5a86;
  --sea-dark: #68405f;
  --cedar: #9b6b57;
  --leaf: #7f8f6a;
  --line: rgba(43, 37, 43, 0.14);
  --white: #ffffff;
}

.under-construction-body {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.under-construction-page {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.under-construction {
  width: min(100%, 680px);
  text-align: center;
}

.under-construction h1 {
  margin: 0;
  font-size: clamp(28px, 6vw, 48px);
}

.under-construction p {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--muted);
}

.under-construction-line-button {
  margin-top: 28px;
}

.booking-hero {
  padding: max(24px, env(safe-area-inset-top)) 20px 10px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cloud) 100%);
}

.booking-hero .section-inner {
  width: min(100%, 520px);
}

.booking-hero h1 {
  margin: 0;
  font-size: clamp(30px, 8vw, 42px);
  line-height: 1.18;
}

.booking-hero p:last-child {
  max-width: 640px;
  color: var(--muted);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "Yu Gothic UI", sans-serif;
  line-height: 1.75;
}

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

.app-header {
  position: relative;
  padding: 10px clamp(16px, 5vw, 56px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 249, 247, 0.86)
    ),
    rgba(255, 249, 247, 0.92);
  border-bottom: 1px solid rgba(104, 64, 95, 0.1);
  box-shadow: 0 16px 38px rgba(104, 64, 95, 0.08);
  backdrop-filter: blur(22px) saturate(1.15);
}

.app-header::after {
  position: absolute;
  right: clamp(16px, 5vw, 56px);
  bottom: -1px;
  left: clamp(16px, 5vw, 56px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(154, 90, 134, 0.42),
    rgba(127, 143, 106, 0.34),
    transparent
  );
  content: "";
}

.app-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.app-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
  color: var(--ink);
}

.app-brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
}

.app-brand-mark img {
  display: block;
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.app-brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.35;
}

.app-brand-kicker {
  color: var(--sea-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.app-brand-name {
  display: block;
  color: var(--ink);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  line-break: anywhere;
  overflow-wrap: anywhere;
}

.app-header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(104, 64, 95, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
    var(--sea-dark);
  box-shadow: 0 12px 26px rgba(104, 64, 95, 0.18);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.app-header-cta:hover,
.app-header-cta:focus-visible {
  background-color: var(--sea);
  box-shadow: 0 16px 30px rgba(104, 64, 95, 0.22);
  transform: translateY(-1px);
}

.app-header-cta-short {
  display: none;
}

.app-header-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.app-footer {
  padding: 28px clamp(18px, 5vw, 56px);
  background:
    linear-gradient(
      180deg,
      rgba(248, 241, 246, 0.9),
      rgba(255, 249, 247, 0.96)
    ),
    var(--cloud);
  border-top: 1px solid rgba(104, 64, 95, 0.12);
  color: var(--muted);
  text-align: center;
}

.app-footer-inner {
  display: grid;
  gap: 4px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.app-footer p {
  margin: 0;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 800;
}

.app-footer small {
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 680px) {
  .app-header {
    padding: 8px 14px;
  }

  .app-header::after {
    right: 14px;
    left: 14px;
  }

  .app-header-inner {
    gap: 12px;
  }

  .app-brand {
    gap: 10px;
  }

  .app-brand-mark {
    width: 42px;
    height: 42px;
  }

  .app-brand-kicker {
    font-size: 10px;
  }

  .app-brand-name {
    font-size: 12px;
    line-height: 1.35;
  }

  .app-header-cta {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .app-header-cta-full {
    display: none;
  }

  .app-header-cta-short {
    display: inline;
  }

  .app-header-note span:last-child {
    display: none;
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 247, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
}

.auto-hide-header {
  transition:
    transform 0.34s ease,
    opacity 0.24s ease,
    box-shadow 0.24s ease;
  will-change: transform, opacity;
}

.auto-hide-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 12px));
}

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

.brand-logo {
  display: block;
  width: clamp(174px, 18vw, 210px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--sea-dark);
}

.nav .is-disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.46;
}

.nav-cta {
  padding: 9px 16px;
  background: var(--ink);
  color: var(--white) !important;
}

.mobile-menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 84px) 64px;
}

.ai-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 84px) 64px;
  background: var(--ink);
}

.ai-hero-bg,
.ai-hero-shade {
  position: absolute;
  inset: 0;
}

.ai-hero-bg {
  overflow: hidden;
}

.ai-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.ai-hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(24, 32, 31, 0.72) 0%,
      rgba(24, 32, 31, 0.48) 42%,
      rgba(24, 32, 31, 0.06) 100%
    ),
    linear-gradient(0deg, rgba(24, 32, 31, 0.24), rgba(24, 32, 31, 0));
}

.ai-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: var(--white);
}

.ai-hero .eyebrow {
  color: #f3d2df;
}

.ai-hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 4.8vw, 60px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(10, 28, 28, 0.78) 0%,
      rgba(10, 28, 28, 0.54) 38%,
      rgba(10, 28, 28, 0.08) 72%
    ),
    linear-gradient(0deg, rgba(29, 39, 37, 0.42), rgba(29, 39, 37, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f3d2df;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

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

.button.secondary.dark {
  border: 1px solid rgba(104, 64, 95, 0.35);
  color: var(--sea-dark);
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.button:disabled {
  cursor: not-allowed;
}

.button.is-loading {
  gap: 8px;
}

.notice-band {
  padding: 28px clamp(20px, 6vw, 84px);
  background: var(--sea-dark);
  color: var(--white);
}

.notice-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.notice-inner .eyebrow,
.notice-inner p {
  margin: 0;
}

.notice-inner .eyebrow {
  color: #f3d2df;
}

.notice-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.section,
.band,
.dog-section,
.contact-section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 84px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid,
.contact-grid,
.dog-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro p,
.section-heading p,
.dog-grid p,
.contact-grid p {
  color: var(--muted);
}

.about-ai {
  background: var(--cloud);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.about-copy {
  max-width: 720px;
}

.about-copy p {
  color: var(--muted);
}

.about-profile {
  display: grid;
  gap: 16px;
}

.profile-gallery {
  width: min(100%, 420px);
  margin: 0;
  justify-self: center;
}

.profile-gallery-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.profile-gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.profile-gallery-button {
  position: absolute;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 249, 247, 0.9);
  border: 1px solid rgba(29, 39, 37, 0.16);
  border-radius: 50%;
  color: var(--sea-dark);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.profile-gallery-button:hover,
.profile-gallery-button:focus-visible {
  background: var(--sea-dark);
  color: var(--white);
}

.profile-gallery-button:focus-visible {
  outline: 3px solid rgba(154, 90, 134, 0.22);
  outline-offset: 3px;
}

.profile-gallery-button span {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.profile-gallery-button.previous {
  left: 14px;
}

.profile-gallery-button.previous span {
  transform: translateX(2px) rotate(225deg);
}

.profile-gallery-button.next {
  right: 14px;
}

.profile-gallery-button.next span {
  transform: translateX(-2px) rotate(45deg);
}

.profile-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.profile-gallery-dot {
  width: 7px;
  height: 7px;
  background: rgba(104, 64, 95, 0.24);
  border-radius: 50%;
}

.profile-gallery-dot.is-active {
  background: var(--sea-dark);
}

.about-profile-card,
.about-profile-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-profile-card {
  padding: clamp(24px, 3vw, 32px);
}

.about-profile-card h3 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3vw, 36px);
}

.about-profile-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.profile-label {
  margin-bottom: 18px;
  color: var(--sea);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-profile-list {
  margin: 0;
  padding: 8px 28px;
}

.about-profile-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.about-profile-list div:first-child {
  border-top: 0;
}

.about-profile-list dt {
  color: var(--sea-dark);
  font-size: 13px;
  font-weight: 800;
}

.about-profile-list dd {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
}

.section-heading.split p:last-child {
  max-width: 420px;
  margin-bottom: 20px;
}

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

.service-pillars-section {
  background: var(--paper);
}

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

.service-pillar-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.service-pillar-card:hover {
  border-color: rgba(104, 64, 95, 0.42);
  transform: translateY(-3px);
}

.service-pillar-card.is-disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.service-pillar-card.is-disabled:hover {
  border-color: var(--line);
  transform: none;
}

.service-pillar-card.is-disabled .pillar-link {
  color: var(--muted);
}

.pillar-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.pillar-number {
  color: var(--cedar);
  font-size: 13px;
  font-weight: 800;
}

.pillar-eyebrow {
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.service-pillar-card h3 {
  font-size: clamp(23px, 2.6vw, 32px);
}

.service-pillar-card p {
  color: var(--muted);
}

.pillar-point-list {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.pillar-point-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.pillar-point-list li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--leaf);
  border-radius: 50%;
  content: "";
}

.pillar-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--sea-dark);
  font-weight: 800;
}

.pillar-link::after {
  content: "→";
  margin-left: 8px;
}

.service-card,
.work-card,
.profile-box,
.contact-panel,
.dm-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 250px;
  padding: 28px;
}

.service-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-number {
  display: block;
  margin-bottom: 24px;
  color: var(--cedar);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.work-card p,
.contact-panel p {
  color: var(--muted);
}

.works-band {
  background: var(--cloud);
}

.qa-section {
  background: var(--white);
}

.qa-list {
  display: grid;
  gap: 14px;
}

.qa-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.qa-item[open] {
  border-color: rgba(104, 64, 95, 0.34);
  background: var(--white);
}

.qa-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 22px 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.qa-question::-webkit-details-marker {
  display: none;
}

.qa-question:focus-visible {
  outline: 3px solid rgba(154, 90, 134, 0.2);
  outline-offset: 4px;
}

.qa-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(104, 64, 95, 0.28);
  border-radius: 50%;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.24s ease;
}

.qa-icon::before {
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--sea-dark);
  border-bottom: 2px solid var(--sea-dark);
  content: "";
  transform: translateY(-3px) rotate(45deg);
  transition:
    border-color 0.2s ease,
    transform 0.24s ease;
}

.qa-item[open] .qa-icon {
  background: var(--sea-dark);
  border-color: var(--sea-dark);
}

.qa-item[open] .qa-icon::before {
  border-color: var(--white);
  transform: translateY(3px) rotate(225deg);
}

.qa-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.28s ease,
    padding 0.28s ease;
}

.qa-item[open] .qa-answer-wrap {
  grid-template-rows: 1fr;
  padding: 0 24px 24px;
}

.qa-answer {
  overflow: hidden;
  min-height: 0;
  margin: 0;
  padding-top: 0;
  border-top: 0 solid transparent;
  color: var(--muted);
  transition:
    border-color 0.28s ease,
    padding-top 0.28s ease;
}

.qa-answer p {
  margin: 0;
}

.qa-item[open] .qa-answer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.qa-answer-link,
.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--sea-dark);
  font-weight: 800;
}

.qa-answer-link::after,
.card-link::after {
  content: "→";
  margin-left: 8px;
}

.qa-answer-link.is-disabled {
  opacity: 0.46;
  color: var(--muted);
  cursor: not-allowed;
}

.qa-answer-link.is-disabled::after {
  color: var(--muted);
}

.consult-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding: clamp(26px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.consult-feature h3 {
  font-size: clamp(26px, 3.2vw, 38px);
}

.consult-feature p,
.check-list,
.automation-list p,
.related-card p {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--sea);
  border-radius: 50%;
  content: "";
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.service-page-hero {
  border-bottom: 1px solid var(--line);
}

.page-actions {
  margin-top: 28px;
}

.compact-hero {
  padding-bottom: clamp(44px, 6vw, 72px);
}

.service-intro-band {
  background: var(--cloud);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.detail-grid p {
  color: var(--muted);
}

.automation-list {
  display: grid;
  gap: 12px;
}

.automation-list article {
  display: grid;
  grid-template-columns: minmax(180px, 300px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.automation-list h3,
.automation-list p {
  margin: 0;
}

.pricing-section {
  background: var(--white);
}

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

.price-card {
  --price-accent: var(--sea);
  --price-bg: var(--white);
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 28px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--price-accent) 7%, var(--white)) 0%,
    var(--price-bg) 46%
  );
  border: 1px solid color-mix(in srgb, var(--price-accent) 18%, var(--line));
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(29, 39, 37, 0.06);
}

.price-card-consult {
  --price-accent: var(--sea);
  --price-bg: var(--white);
}

.price-card-work {
  --price-accent: #e7832f;
  --price-bg: var(--white);
}

.price-type-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 3px 10px;
  background: color-mix(in srgb, var(--price-accent) 12%, var(--white));
  border: 1px solid color-mix(in srgb, var(--price-accent) 28%, transparent);
  border-radius: 999px;
  color: var(--price-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.price-card h3 {
  margin-bottom: 12px;
}

.price-card p {
  color: var(--muted);
}

.price-row {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.regular-price-wrap {
  display: grid;
  gap: 2px;
  width: fit-content;
}

.regular-price-wrap small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.regular-price {
  width: fit-content;
  color: var(--muted);
  font-size: 24px;
  font-weight: 800;
  text-decoration-line: line-through;
  text-decoration-color: #c9372c;
  text-decoration-thickness: 3px;
}

.limited-price {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--price-accent) 9%, var(--white));
  border-left: 4px solid var(--price-accent);
  border-radius: 0 8px 8px 0;
  color: var(--price-accent);
}

.limited-price small {
  font-size: 12px;
  font-weight: 800;
}

.limited-price strong {
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1.1;
}

.booking-section {
  --booking-ink: #332a2f;
  --booking-muted: #675b61;
  --booking-paper: #fffaf7;
  --booking-panel: rgba(255, 255, 255, 0.92);
  --booking-blush: #f7edf1;
  --booking-accent: #8d6778;
  --booking-accent-dark: #60434f;
  --booking-leaf: #7d8c72;
  --booking-line: rgba(96, 67, 79, 0.14);
  padding: clamp(28px, 6vw, 54px) 20px
    max(44px, calc(30px + env(safe-area-inset-bottom)));
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 247, 0.94),
      rgba(247, 237, 241, 0.9)
    ),
    var(--booking-blush);
  color: var(--booking-ink);
  font-family:
    "Hiragino Sans",
    "Yu Gothic UI",
    "Yu Gothic",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 400;
}

.booking-shell {
  width: min(100%, 520px);
  display: grid;
  gap: 20px;
}

.booking-shell .section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.booking-shell h2 {
  margin-bottom: 8px;
  color: var(--booking-ink);
  /* font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif; */
  font-family:
    "Hiragino Sans",
    "Yu Gothic UI",
    "Yu Gothic",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: clamp(30px, 9vw, 42px);
  font-weight: 500;
  line-height: 1.22;
}

.booking-shell .section-heading p {
  margin: 0;
  color: var(--booking-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.booking-shell .section-heading.split p:last-child {
  max-width: none;
  margin: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  overflow: hidden;
  background: var(--booking-panel);
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(96, 67, 79, 0.08);
}

.manage-booking-form {
  overflow: visible;
}

.admin-manager-shell {
  width: min(100%, 980px);
}

.admin-manager-dashboard {
  display: grid;
  gap: 14px;
}

.admin-manager-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-manager-tabs,
.admin-manager-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-manager-tab {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--booking-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--booking-accent-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-manager-tab.is-active {
  background: var(--booking-accent-dark);
  border-color: var(--booking-accent-dark);
  color: var(--white);
}

.admin-manager-tab-label {
  display: inline;
}

.admin-manager-grid {
  grid-template-columns: 1fr;
  overflow: visible;
}

.admin-manager-list {
  display: grid;
  gap: 14px;
}

.admin-manager-item {
  display: grid;
  gap: 0;
  padding: 18px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.admin-manager-item.is-expanded {
  gap: 16px;
}

.admin-manager-item-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.admin-manager-item-controls .button {
  position: static;
  width: 100%;
  min-width: 0;
}

.admin-booking-control-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--booking-line);
  border-left: 3px solid var(--booking-leaf);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.62);
}

.admin-booking-control-section h3 {
  margin: 0;
  color: var(--booking-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.admin-booking-cancel-section {
  border-left-color: #8f5a3e;
  background: rgba(143, 90, 62, 0.05);
}

.admin-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 14px 18px;
  box-sizing: border-box;
  background: var(--booking-paper);
  border: 1px solid var(--booking-line);
  border-left: 3px solid var(--booking-leaf);
  border-radius: 8px;
}

.admin-panel-heading strong {
  color: var(--booking-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.admin-panel-heading-with-action {
  padding-right: 14px;
}

.admin-icon-button {
  justify-self: end;
  min-width: 32px;
  min-height: 32px;
  width: auto;
  height: 32px;
  padding: 0 8px;
  flex: 0 0 auto;
  border-color: rgba(104, 64, 95, 0.18);
  opacity: 0.72;
}

.admin-icon-button:hover,
.admin-icon-button:focus-visible {
  opacity: 1;
}

.admin-icon-button img {
  width: 18px;
  height: 18px;
  display: block;
}

.admin-icon-button.is-loading {
  width: auto;
  min-width: 32px;
  padding: 0 12px;
  opacity: 1;
}

.admin-refresh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
}

.admin-refresh-button img {
  display: block;
  width: 18px;
  height: 18px;
}

.admin-refresh-button .loading-spinner {
  margin: 0;
}

.admin-inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.admin-inline-fields > .button {
  min-width: 0;
  width: 100%;
}

.admin-customer-results {
  display: grid;
  gap: 8px;
}

.admin-customer-result {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--booking-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-customer-result.is-selected {
  border-color: rgba(104, 64, 95, 0.58);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 0 0 2px rgba(104, 64, 95, 0.08);
}

.admin-customer-result.is-loading {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
}

.admin-customer-result strong {
  font-size: 16px;
  line-height: 1.45;
}

.admin-customer-result span {
  color: var(--booking-muted);
  font-size: 13px;
  line-height: 1.5;
}

.admin-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.admin-search-form .booking-submit {
  position: static;
  width: auto;
  min-width: 112px;
  min-height: 54px;
}

.admin-calendar-open-button {
  justify-self: start;
  min-width: 0;
  min-height: 46px;
  padding: 10px 16px;
}

.admin-calendar-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 18px
    max(18px, env(safe-area-inset-bottom));
  background: rgba(43, 37, 43, 0.42);
}

.admin-calendar-dialog {
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  max-height: min(720px, 100%);
  overflow: auto;
  padding: clamp(18px, 4vw, 24px);
  border: 1px solid rgba(96, 67, 79, 0.16);
  border-radius: 8px;
  background: var(--booking-paper);
  box-shadow: 0 24px 70px rgba(43, 37, 43, 0.24);
}

.admin-calendar-header,
.admin-calendar-month-controls {
  display: grid;
  align-items: center;
}

.admin-calendar-header {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.admin-calendar-header h3 {
  margin: 0;
  color: var(--booking-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.admin-calendar-close,
.admin-calendar-nav {
  display: grid;
  place-items: center;
  border: 1px solid var(--booking-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--booking-accent-dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-calendar-close {
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 1;
}

.admin-calendar-month-controls {
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
}

.admin-calendar-month-controls strong {
  color: var(--booking-ink);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.admin-calendar-nav {
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
}

.admin-calendar-close:hover,
.admin-calendar-close:focus-visible,
.admin-calendar-nav:hover,
.admin-calendar-nav:focus-visible,
.admin-calendar-date:hover,
.admin-calendar-date:focus-visible {
  border-color: rgba(104, 64, 95, 0.42);
  outline: 3px solid rgba(141, 103, 120, 0.16);
}

.admin-calendar-weekdays,
.admin-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.admin-calendar-weekdays span {
  display: grid;
  place-items: center;
  min-height: 28px;
  color: var(--booking-muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-calendar-date {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid var(--booking-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--booking-ink);
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.admin-calendar-date.is-muted {
  color: #9a8e94;
  background: rgba(255, 255, 255, 0.46);
}

.admin-calendar-date.is-today {
  border-color: rgba(127, 143, 106, 0.62);
  box-shadow: inset 0 0 0 2px rgba(127, 143, 106, 0.14);
}

.admin-calendar-date.is-selected {
  border-color: var(--booking-accent-dark);
  background: var(--booking-accent-dark);
  color: var(--white);
}

.admin-calendar-date:disabled {
  border-color: #e5d9e1;
  background: #f7f3f5;
  color: #b9acb4;
  cursor: not-allowed;
  opacity: 0.7;
}

.admin-line-merge-list,
.admin-line-merge-preview {
  display: grid;
  gap: 14px;
}

.admin-merge-manual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-merge-select-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.admin-line-merge-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.admin-line-merge-card .booking-submit {
  position: static;
}

.admin-line-merge-group > strong {
  color: var(--booking-ink);
  font-size: 17px;
  line-height: 1.45;
}

.admin-line-merge-group > p {
  margin: 0;
  color: var(--booking-muted);
  font-size: 14px;
  line-height: 1.7;
}

.admin-line-merge-options {
  display: grid;
  gap: 10px;
}

.admin-line-merge-option {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.booking-panel .admin-line-merge-option {
  gap: 4px;
}

.admin-line-merge-option input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.booking-panel .admin-line-merge-option input {
  width: 1px;
  min-height: 1px;
  height: 1px;
  padding: 0;
}

.admin-line-merge-option.is-selected {
  border-color: rgba(104, 64, 95, 0.58);
  background: rgba(255, 250, 247, 0.94);
  box-shadow: 0 0 0 2px rgba(104, 64, 95, 0.08);
}

.admin-line-merge-option .admin-merge-customer-summary {
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-line-merge-warning {
  border-color: rgba(143, 90, 62, 0.34);
  background: rgba(255, 250, 247, 0.92);
}

.admin-line-merge-warning > strong {
  color: #8f5a3e;
  font-size: 16px;
  line-height: 1.45;
}

.admin-line-merge-warning > p {
  margin: 0;
  color: var(--booking-muted);
  font-size: 14px;
  line-height: 1.7;
}

.admin-merge-customer-summary {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.64);
}

.admin-merge-customer-summary > span {
  color: var(--booking-accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.admin-merge-customer-summary > strong {
  color: var(--booking-ink);
  font-size: 16px;
  line-height: 1.45;
}

.admin-merge-customer-summary > p {
  margin: 0;
  color: var(--booking-muted);
  font-size: 13px;
  line-height: 1.55;
}

.admin-customer-history {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.72);
}

.admin-customer-history > span {
  color: var(--booking-accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.admin-customer-history p,
.admin-empty-text {
  margin: 0;
  color: var(--booking-muted);
  font-size: 14px;
  line-height: 1.7;
}

.admin-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-detail-actions .button {
  width: 100%;
  min-width: 0;
}

@media (max-width: 760px) {
  .admin-manager-grid,
  .admin-manager-item-controls,
  .admin-inline-fields,
  .admin-merge-manual-grid,
  .admin-detail-actions {
    grid-template-columns: 1fr;
  }

  .admin-manager-toolbar {
    align-items: stretch;
  }

  .admin-manager-tabs,
  .admin-manager-toolbar-actions {
    width: 100%;
  }

  .admin-manager-tab,
  .admin-manager-toolbar-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }

  .admin-manager-tab {
    display: grid;
    place-items: center;
    gap: 0;
    min-height: 72px;
    padding: 12px 8px;
    line-height: 1;
  }

  .admin-manager-tab-label {
    display: block;
  }

  .admin-calendar-open-button {
    width: 100%;
  }

  .admin-calendar-dialog {
    width: 100%;
  }
}

.booking-section [hidden] {
  display: none !important;
}

.booking-panel {
  display: grid;
  gap: 20px;
  min-height: auto;
  padding: clamp(22px, 5vw, 30px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-control-panel {
  align-content: start;
  padding-bottom: 18px;
}

.booking-detail-panel {
  padding-top: 18px;
  border-top: 1px solid var(--booking-line);
}

.booking-panel label,
.booking-field {
  display: grid;
  gap: 8px;
}

.booking-panel label > span,
.booking-field > span {
  color: var(--booking-accent-dark);
  font-size: 15px;
  font-weight: 600;
}

.booking-panel input,
.booking-panel select,
.booking-panel textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--booking-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--booking-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.booking-panel input,
.booking-panel select {
  height: 54px;
  padding: 10px 12px;
}

.booking-detail-panel input[type="text"],
.booking-detail-panel input[type="email"] {
  height: 54px;
  min-height: 54px;
  padding: 10px 12px;
}

.booking-panel select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--booking-accent-dark) 50%),
    linear-gradient(135deg, var(--booking-accent-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size:
    7px 7px,
    7px 7px;
  background-repeat: no-repeat;
}

.booking-panel textarea {
  min-height: 116px;
  padding: 12px;
  resize: vertical;
}

.booking-panel textarea::placeholder {
  color: #9a8e94;
  font-size: 16px;
}

.booking-detail-panel > div p {
  margin: 0;
  color: var(--booking-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

.booking-panel input:focus,
.booking-panel select:focus,
.booking-panel textarea:focus {
  outline: 3px solid rgba(141, 103, 120, 0.16);
  border-color: var(--booking-accent);
}

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

.time-slot {
  position: relative;
}

.time-slot input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.time-slot span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid var(--booking-line);
  border-radius: 6px;
  background: var(--booking-paper);
  color: var(--booking-accent-dark);
  font-size: 16px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.time-slot input:checked + span {
  background: var(--booking-accent-dark);
  border-color: var(--booking-accent-dark);
  color: var(--white);
}

.time-slot input:focus-visible + span {
  outline: 3px solid rgba(141, 103, 120, 0.16);
}

.time-slot input:disabled + span {
  background: #f7f3f5;
  border-color: #e5d9e1;
  color: #a897a3;
  cursor: not-allowed;
  opacity: 0.72;
}

.time-slot.is-disabled {
  cursor: not-allowed;
}

.booking-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 8px 0 0;
  color: var(--booking-muted);
  font-size: 16px;
  font-weight: 400;
}

.booking-status.is-empty {
  color: #8f5a3e;
}

.loading-spinner {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
  border: 2px solid rgba(141, 103, 120, 0.18);
  border-top-color: var(--booking-accent-dark);
  border-radius: 50%;
  animation: booking-spin 0.72s linear infinite;
}

@keyframes booking-spin {
  to {
    transform: rotate(360deg);
  }
}

.booking-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 5px;
  width: 100%;
  padding: 18px;
  background: var(--booking-paper);
  border: 1px solid var(--booking-line);
  border-left: 3px solid var(--booking-leaf);
  border-radius: 8px;
  color: inherit;
  font: inherit;
  text-align: left;
}

.booking-summary > span:first-child {
  color: var(--booking-accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.booking-summary strong {
  color: var(--booking-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

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

.booking-summary-date {
  color: var(--booking-ink);
  font-size: 16px;
  font-weight: 600;
}

.admin-booking-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  width: 100%;
  padding: 18px;
  background: var(--booking-paper);
  border: 1px solid var(--booking-line);
  border-left: 3px solid var(--booking-leaf);
  border-radius: 8px;
  color: inherit;
  font: inherit;
  text-align: left;
}

.admin-booking-summary > span:not(.admin-booking-summary-chevron),
.admin-booking-summary strong {
  grid-column: 1;
}

.admin-booking-summary > span:first-child {
  color: var(--booking-accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.admin-booking-summary strong {
  color: var(--booking-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.admin-booking-summary-detail {
  color: var(--booking-ink);
  font-size: 16px;
  font-weight: 600;
}

.admin-booking-summary-toggle {
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.admin-booking-summary-toggle:hover,
.admin-booking-summary-toggle:focus-visible {
  border-color: rgba(104, 64, 95, 0.42);
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 8px 20px rgba(96, 67, 79, 0.08);
}

.admin-booking-summary-toggle:focus-visible {
  outline: 3px solid rgba(154, 90, 134, 0.2);
  outline-offset: 3px;
}

.admin-booking-summary-chevron {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  width: 11px;
  height: 11px;
  margin: 0 6px 0 18px;
  border-right: 2px solid var(--booking-accent-dark);
  border-bottom: 2px solid var(--booking-accent-dark);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.2s ease;
}

.admin-manager-item.is-expanded .admin-booking-summary-chevron {
  transform: translateY(3px) rotate(225deg);
}

.booking-line-notice {
  margin: 0;
  padding: 12px 14px;
  background: var(--booking-paper);
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  color: var(--booking-accent-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.booking-line-notice[hidden] {
  display: none;
}

.booking-submit-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 22px;
  margin: 0;
  color: var(--booking-muted);
  font-size: 13px;
  font-weight: 400;
}

.booking-submit-status[hidden] {
  display: none;
}

.booking-submit-status.is-success {
  color: var(--booking-accent-dark);
}

.booking-submit-status.is-error {
  color: #8f5a3e;
}

.booking-submit {
  position: sticky;
  bottom: max(12px, env(safe-area-inset-bottom));
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--booking-accent-dark);
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(96, 67, 79, 0.18);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.booking-submit:not(:disabled):hover,
.booking-submit:not(:disabled):focus-visible {
  background: var(--booking-accent);
  box-shadow: 0 16px 32px rgba(96, 67, 79, 0.2);
  transform: translateY(-1px);
}

.booking-submit:disabled {
  background: #baadb4;
  cursor: not-allowed;
}

.booking-submit.is-loading {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.booking-submit.is-loading .loading-spinner {
  width: 16px;
  height: 16px;
  border-color: rgba(255, 255, 255, 0.38);
  border-top-color: var(--white);
}

.booking-cancel-submit {
  background: #8f5a3e;
}

.booking-cancel-submit:not(:disabled):hover,
.booking-cancel-submit:not(:disabled):focus-visible {
  background: #744730;
}

.manage-booking-list {
  display: grid;
  gap: 14px;
}

.manage-booking-item {
  display: grid;
  gap: 0;
  padding: 18px;
  border: 1px solid var(--booking-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.manage-booking-item.is-expanded {
  gap: 16px;
}

.manage-booking-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px;
  width: 100%;
  padding: 18px;
  background: var(--booking-paper);
  border: 1px solid var(--booking-line);
  border-left: 3px solid var(--booking-leaf);
  border-radius: 6px;
  color: inherit;
  font: inherit;
  text-align: left;
}

.manage-booking-summary > span:not(.manage-booking-summary-chevron),
.manage-booking-summary strong {
  grid-column: 1;
}

.manage-booking-summary > span:first-child {
  color: var(--booking-accent-dark);
  font-size: 14px;
  font-weight: 600;
}

.manage-booking-summary strong {
  color: var(--booking-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.manage-booking-summary-toggle {
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.manage-booking-summary-toggle:hover,
.manage-booking-summary-toggle:focus-visible {
  border-color: rgba(104, 64, 95, 0.42);
  background: rgba(255, 250, 247, 0.96);
  box-shadow: 0 8px 20px rgba(96, 67, 79, 0.08);
}

.manage-booking-summary-toggle:focus-visible {
  outline: 3px solid rgba(154, 90, 134, 0.2);
  outline-offset: 3px;
}

.manage-booking-summary-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.manage-booking-summary-chevron {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  width: 11px;
  height: 11px;
  margin: 0 6px 0 18px;
  border-right: 2px solid var(--booking-accent-dark);
  border-bottom: 2px solid var(--booking-accent-dark);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.2s ease;
}

.manage-booking-item.is-expanded .manage-booking-summary-chevron {
  transform: translateY(3px) rotate(225deg);
}

.manage-booking-item-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.manage-booking-item-controls[hidden] {
  display: none;
}

.manage-booking-control-section {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--booking-line);
  border-left: 3px solid var(--booking-leaf);
  border-radius: 8px;
  background: rgba(255, 250, 247, 0.62);
}

.manage-booking-control-section h3 {
  margin: 0;
  color: var(--booking-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.manage-booking-control-section form {
  display: grid;
  gap: 16px;
}

.manage-booking-control-section p {
  margin: 0;
  color: var(--booking-muted);
  font-size: 14px;
  line-height: 1.7;
}

.manage-booking-control-section .button {
  position: static;
  width: 100%;
  min-width: 0;
}

.manage-booking-cancel-section {
  border-left-color: #8f5a3e;
  background: rgba(143, 90, 62, 0.05);
}

.related-services {
  background: var(--paper);
}

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

.related-card {
  display: block;
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.related-card:hover {
  border-color: rgba(104, 64, 95, 0.42);
  transform: translateY(-3px);
}

.related-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.related-card.is-disabled:hover {
  border-color: var(--line);
  transform: none;
}

.related-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card {
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.work-card:hover {
  border-color: rgba(104, 64, 95, 0.42);
  transform: translateY(-3px);
}

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

.sample-card {
  overflow: hidden;
  display: block;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.sample-card:hover {
  border-color: rgba(104, 64, 95, 0.42);
  transform: translateY(-3px);
}

.sample-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.sample-card span,
.sample-card h3,
.sample-card p {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
}

.sample-card span {
  margin-top: 22px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-card h3 {
  margin-top: 8px;
}

.sample-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.sample-list {
  display: grid;
  gap: 20px;
}

.sample-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sample-row img {
  display: block;
  width: 100%;
  height: clamp(240px, 32vw, 380px);
  border-radius: 6px;
  object-fit: cover;
}

.sample-row h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.sample-row p:not(.eyebrow) {
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  background: var(--cloud);
  color: var(--sea-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.work-card h3,
.work-card p,
.work-card span {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
}

.work-card h3 {
  margin-top: 22px;
}

.work-card span {
  margin-bottom: 26px;
  color: var(--sea-dark);
  font-size: 13px;
  font-weight: 800;
}

.work-image {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.work-swatch {
  height: 150px;
}

.work-swatch.wood {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(
      90deg,
      #b88350 0 18px,
      #c79967 18px 34px,
      #8f6038 34px 48px
    );
}

.work-swatch.tile {
  background:
    linear-gradient(
      135deg,
      rgba(154, 90, 134, 0.75),
      rgba(242, 246, 243, 0.15)
    ),
    repeating-linear-gradient(0deg, #dce8e5 0 22px, #c2d5d2 22px 24px);
}

.work-swatch.green {
  background:
    radial-gradient(
      circle at 20% 22%,
      rgba(255, 255, 255, 0.4),
      transparent 24%
    ),
    linear-gradient(135deg, #7f8f6a, #9a5a86);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--sea-dark);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
}

.text-link.light {
  margin-top: 0;
  color: var(--white);
  white-space: nowrap;
}

.page-hero {
  padding: 156px clamp(20px, 6vw, 84px) clamp(64px, 8vw, 96px);
  background: var(--white);
}

.page-hero h1,
.article-header h1 {
  max-width: 1080px;
  color: var(--ink);
}

.article-header h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  overflow-wrap: anywhere;
}

.page-hero p:last-child,
.article-header p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.visual-note {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(96, 112, 108, 0.74) !important;
  font-size: 12px !important;
  line-height: 1.7;
}

.listing-grid {
  align-items: stretch;
}

.article-header {
  padding: 156px clamp(20px, 6vw, 84px) 54px;
  background: var(--white);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb::before {
  content: "←";
  margin-right: 8px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.article-meta {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-meta dl div {
  grid-template-columns: 82px 1fr;
  border-top-color: var(--line);
}

.article-meta dt {
  color: var(--muted);
}

.article-meta dd {
  color: var(--ink);
}

.article-body {
  max-width: 760px;
}

.article-body h2 {
  margin-top: 44px;
  font-size: clamp(24px, 3vw, 34px);
}

.article-body p {
  color: var(--muted);
}

.article-visual {
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.article-visual img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 390px);
  object-fit: cover;
}

.flow-section-inner {
  display: grid;
  gap: 34px;
}

.flow-section-inner .section-heading {
  max-width: 640px;
  margin-bottom: 0;
}

.flow-list {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1.22fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: clamp(360px, 48vw, 560px);
  padding: clamp(28px, 4.6vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(29, 39, 37, 0.08);
  color: var(--muted);
}

.flow-slide-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.flow-slide-copy span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--sea-dark);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.flow-slide-copy strong {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.flow-slide-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
}

.flow-slide-visual {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: min(34vw, 360px);
  margin: 0;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-slide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-slide-placeholder {
  position: relative;
  width: min(72%, 420px);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(104, 64, 95, 0.2);
  border-radius: 8px;
}

.flow-slide-placeholder span {
  position: absolute;
  display: block;
  background: rgba(104, 64, 95, 0.16);
  border-radius: 999px;
}

.flow-slide-placeholder span:nth-child(1) {
  top: 22%;
  left: 14%;
  width: 42%;
  height: 10px;
}

.flow-slide-placeholder span:nth-child(2) {
  top: 42%;
  left: 14%;
  width: 68%;
  height: 10px;
}

.flow-slide-placeholder span:nth-child(3) {
  right: 14%;
  bottom: 16%;
  width: 28%;
  height: 28%;
  background: rgba(169, 111, 60, 0.22);
  border-radius: 50%;
}

.dog-section {
  background: var(--sea-dark);
  color: var(--white);
}

.dog-section .eyebrow {
  color: #f3d2df;
}

.dog-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.hana-figure {
  margin: 28px 0 0;
}

.hana-photo {
  display: block;
  width: min(460px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.hana-figure figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.profile-box {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.profile-label {
  margin-bottom: 18px;
  color: #f3d2df !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.profile-box dl div:first-child {
  border-top: 0;
}

dt {
  color: rgba(255, 255, 255, 0.62);
}

dd {
  margin: 0;
}

.contact-section {
  background: var(--white);
}

.contact-panel {
  padding: 28px;
}

.contact-note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--sea);
}

.dm-panel {
  margin-top: 28px;
  padding: 24px;
}

.dm-panel .profile-label {
  color: var(--sea) !important;
}

.dm-panel p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.social-dm-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--line);
}

.social-dm-link img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.social-dm-link span,
.social-dm-link strong,
.social-dm-link small {
  display: block;
}

.social-dm-link strong {
  color: var(--sea-dark);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.social-dm-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(154, 90, 134, 0.18);
  border-color: var(--sea);
}

.form-button {
  width: 100%;
  border: 0;
  background: var(--sea-dark);
  color: var(--white);
  cursor: pointer;
}

.form-subtext {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-subtext a {
  color: var(--sea-dark);
  font-weight: 800;
}

.contact-link {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--sea-dark);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin: 20px 0 0;
}

.alt-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 86vh;
  padding: 128px clamp(20px, 6vw, 84px) 54px;
  background: var(--white);
}

.alt-hero-media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.alt-hero-media img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.alt-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(40px, 5.6vw, 68px);
}

.alt-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.trust-hero {
  position: relative;
  padding-bottom: 132px;
}

.trust-facts {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 38px;
  left: clamp(20px, 6vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-facts div {
  display: block;
  padding: 20px 22px;
  border: 0;
  background: var(--paper);
}

.trust-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.trust-facts dd {
  color: var(--ink);
  font-weight: 800;
}

.trust-summary {
  background: var(--cloud);
}

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

.trust-summary article,
.idea-grid article,
.trust-service-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trust-summary span,
.idea-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--cedar);
  font-size: 13px;
  font-weight: 800;
}

.trust-summary h2 {
  font-size: clamp(22px, 2.8vw, 30px);
}

.trust-summary p,
.trust-service-list p,
.trust-company p,
.idea-grid p,
.container-build p,
.build-list span,
.featured-work p {
  color: var(--muted);
}

.trust-service-list {
  display: grid;
  gap: 12px;
}

.trust-service-list article {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 28px;
}

.trust-service-list h3,
.trust-service-list p {
  margin: 0;
}

.trust-company {
  background: var(--paper);
}

.light-box {
  background: var(--white);
  border-color: var(--line);
}

.light-box dl div {
  border-top-color: var(--line);
}

.light-box dt {
  color: var(--muted);
}

.light-box dd {
  color: var(--ink);
}

.container-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 84px) 72px;
}

.container-hero-image,
.container-hero-shade {
  position: absolute;
  inset: 0;
}

.container-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container-hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(6, 28, 31, 0.82),
      rgba(6, 28, 31, 0.36) 58%,
      rgba(6, 28, 31, 0.1)
    ),
    linear-gradient(0deg, rgba(6, 28, 31, 0.52), rgba(6, 28, 31, 0));
}

.container-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--white);
}

.container-hero-content .eyebrow {
  color: #f3d2df;
}

.container-hero-content p:not(.eyebrow) {
  max-width: 600px;
  font-size: clamp(16px, 2vw, 19px);
}

.container-ideas {
  background: var(--white);
}

.idea-grid article {
  min-height: 240px;
}

.idea-grid span {
  color: var(--sea-dark);
}

.container-build {
  background: var(--paper);
}

.container-build-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.build-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.build-list li {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.build-list strong {
  color: var(--ink);
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.featured-work img {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 460px);
  border-radius: 6px;
  object-fit: cover;
}

.featured-work h3 {
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
}

.related-works {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.kissaco-page {
  --kissaco-ink: #2c2720;
  --kissaco-muted: #766b5d;
  --kissaco-paper: #f8f1e8;
  --kissaco-panel: #fffaf2;
  --kissaco-matcha: #617044;
  --kissaco-rose: #b77d79;
  --kissaco-line: rgba(44, 39, 32, 0.16);
  background: var(--kissaco-paper);
  color: var(--kissaco-ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

.kissaco-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 92px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid rgba(44, 39, 32, 0.1);
  backdrop-filter: blur(16px);
}

.kissaco-brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--kissaco-ink);
  text-align: center;
}

.kissaco-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(44, 39, 32, 0.28);
  border-radius: 50%;
  color: var(--kissaco-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
}

.kissaco-brand strong,
.kissaco-brand small {
  display: block;
}

.kissaco-brand strong {
  color: var(--kissaco-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.kissaco-brand small {
  color: var(--kissaco-muted);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.kissaco-menu {
  position: relative;
  grid-column: 3;
  justify-self: end;
}

.kissaco-menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.kissaco-menu-button {
  display: grid;
  gap: 6px;
  place-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(44, 39, 32, 0.2);
  border-radius: 50%;
  color: var(--kissaco-ink);
  cursor: pointer;
}

.kissaco-menu-button span {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.kissaco-menu-toggle:focus-visible + .kissaco-menu-button {
  outline: 3px solid rgba(97, 112, 68, 0.24);
  outline-offset: 4px;
}

.kissaco-menu-toggle:checked + .kissaco-menu-button span:first-child {
  transform: translateY(7px) rotate(42deg);
}

.kissaco-menu-toggle:checked + .kissaco-menu-button span:nth-child(2) {
  opacity: 0;
}

.kissaco-menu-toggle:checked + .kissaco-menu-button span:last-child {
  transform: translateY(-7px) rotate(-42deg);
}

.kissaco-menu-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  display: grid;
  min-width: min(360px, calc(100vw - 40px));
  padding: 22px 24px;
  background: rgba(255, 250, 242, 0.98);
  border: 1px solid var(--kissaco-line);
  box-shadow: 0 24px 70px rgba(44, 39, 32, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  visibility: hidden;
}

.kissaco-menu-toggle:checked ~ .kissaco-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.kissaco-menu-panel a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--kissaco-line);
  color: var(--kissaco-ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kissaco-menu-panel a:last-child {
  border-bottom: 0;
}

.kissaco-menu-panel span {
  color: var(--kissaco-rose);
  font-size: 11px;
  font-weight: 800;
}

.kissaco-menu-panel a:hover {
  color: var(--kissaco-matcha);
}

.kissaco-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 162px clamp(20px, 6vw, 84px) 72px;
}

.kissaco-hero-image,
.kissaco-hero-shade {
  position: absolute;
  inset: 0;
}

.kissaco-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kissaco-hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(30, 25, 20, 0.72) 0%,
      rgba(30, 25, 20, 0.42) 38%,
      rgba(30, 25, 20, 0.04) 78%
    ),
    linear-gradient(0deg, rgba(30, 25, 20, 0.56), rgba(30, 25, 20, 0.02));
}

.kissaco-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: #fffaf2;
}

.kissaco-kicker {
  margin: 0 0 14px;
  color: var(--kissaco-rose);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kissaco-hero .kissaco-kicker {
  color: #f0c8bf;
}

.kissaco-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
}

.kissaco-hero p:not(.kissaco-kicker) {
  max-width: 560px;
  font-size: clamp(16px, 2vw, 20px);
}

.kissaco-hours {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 84px);
  bottom: 72px;
  display: grid;
  gap: 3px;
  min-width: 230px;
  padding: 22px;
  background: rgba(248, 241, 232, 0.92);
  border: 1px solid rgba(255, 250, 242, 0.42);
  color: var(--kissaco-ink);
}

.kissaco-hours span,
.kissaco-hours small {
  color: var(--kissaco-muted);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.kissaco-hours strong {
  font-size: 24px;
  line-height: 1.2;
}

.kissaco-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

.kissaco-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.kissaco-split,
.kissaco-access-grid,
.kissaco-reservation-grid,
.kissaco-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.kissaco-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.25;
}

.kissaco-section p {
  color: var(--kissaco-muted);
}

.kissaco-intro {
  background: var(--kissaco-panel);
}

.kissaco-reservation-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--kissaco-paper);
  border: 1px solid var(--kissaco-line);
}

.kissaco-reservation-form label {
  display: grid;
  gap: 8px;
}

.kissaco-reservation-form span {
  color: var(--kissaco-ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.kissaco-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kissaco-reservation-form input,
.kissaco-reservation-form select,
.kissaco-reservation-form textarea {
  width: 100%;
  border: 1px solid var(--kissaco-line);
  border-radius: 0;
  background: var(--kissaco-panel);
  color: var(--kissaco-ink);
  font: inherit;
}

.kissaco-reservation-form input,
.kissaco-reservation-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.kissaco-reservation-form textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.kissaco-reservation-form button {
  min-height: 52px;
  border: 0;
  background: var(--kissaco-ink);
  color: var(--kissaco-panel);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.kissaco-heading {
  margin-bottom: 34px;
}

.kissaco-menu-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--kissaco-panel);
  border: 1px solid var(--kissaco-line);
}

.kissaco-menu-feature img {
  display: block;
  width: 100%;
  height: clamp(300px, 46vw, 520px);
  object-fit: cover;
}

.kissaco-menu-feature h3 {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.25;
}

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

.kissaco-menu-grid article,
.kissaco-info {
  padding: 28px;
  background: var(--kissaco-panel);
  border: 1px solid var(--kissaco-line);
}

.kissaco-menu-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--kissaco-matcha);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

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

.kissaco-menu-link {
  display: grid;
  min-height: 100%;
  background: var(--kissaco-panel);
  border: 1px solid var(--kissaco-line);
  color: var(--kissaco-ink);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.kissaco-menu-link:hover {
  border-color: rgba(97, 112, 68, 0.48);
  transform: translateY(-3px);
}

.kissaco-menu-link img {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
}

.kissaco-menu-link span,
.kissaco-menu-link h3,
.kissaco-menu-link p {
  margin-right: 28px;
  margin-left: 28px;
}

.kissaco-menu-link span {
  margin-top: 24px;
  color: var(--kissaco-rose);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kissaco-menu-link h3 {
  font-size: clamp(24px, 3vw, 36px);
}

.kissaco-menu-link p {
  margin-bottom: 28px;
  color: var(--kissaco-muted);
}

.kissaco-menu-page-hero {
  padding: 162px clamp(20px, 6vw, 84px) clamp(64px, 8vw, 96px);
  background: var(--kissaco-panel);
}

.kissaco-menu-page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
}

.kissaco-menu-page-hero p:last-child {
  max-width: 720px;
  color: var(--kissaco-muted);
  font-size: clamp(16px, 2vw, 19px);
}

.kissaco-back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--kissaco-matcha);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.kissaco-back-link::before {
  content: "←";
  margin-right: 8px;
}

.kissaco-detail-image {
  position: sticky;
  top: 120px;
  align-self: start;
}

.kissaco-detail-image img {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 620px);
  object-fit: cover;
}

.kissaco-price-list {
  display: grid;
  border-top: 1px solid var(--kissaco-line);
}

.kissaco-price-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--kissaco-line);
}

.kissaco-price-list h2 {
  margin-bottom: 6px;
  font-size: clamp(22px, 2.6vw, 32px);
}

.kissaco-price-list p {
  margin: 0;
  color: var(--kissaco-muted);
}

.kissaco-price-list strong {
  color: var(--kissaco-ink);
  white-space: nowrap;
}

.kissaco-space {
  background: #efe5d7;
}

.kissaco-note-list dl div,
.kissaco-info dl div {
  border-top-color: var(--kissaco-line);
}

.kissaco-note-list dt,
.kissaco-info dt {
  color: var(--kissaco-muted);
}

.kissaco-note-list dd,
.kissaco-info dd {
  color: var(--kissaco-ink);
}

.kissaco-access {
  background: var(--kissaco-panel);
}

.kissaco-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 84px);
  background: var(--kissaco-ink);
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
}

.kissaco-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: center;
    gap: 14px;
  }

  .auto-hide-header {
    position: fixed;
  }

  .mobile-menu-button {
    position: relative;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-menu-button span {
    grid-area: 1 / 1;
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-menu-button span:first-child {
    transform: translateY(-6px);
  }

  .mobile-menu-button span:last-child {
    transform: translateY(6px);
  }

  .site-header.is-menu-open .mobile-menu-button span:first-child {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-button span:last-child {
    transform: rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: calc(100% - 8px);
    right: clamp(18px, 4vw, 56px);
    display: grid;
    min-width: min(270px, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 249, 247, 0.96);
    box-shadow: 0 18px 44px rgba(29, 39, 37, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    white-space: normal;
  }

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

  .nav a,
  .nav span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .kissaco-nav {
    display: none;
  }

  .kissaco-header {
    position: absolute;
  }

  .hero {
    min-height: 760px;
    padding-top: 112px;
    align-items: end;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(10, 28, 28, 0.86) 0%,
      rgba(10, 28, 28, 0.48) 58%,
      rgba(10, 28, 28, 0.08) 100%
    );
  }

  .ai-hero {
    min-height: max(760px, 100svh);
    align-items: end;
  }

  .ai-hero-bg {
    inset: 0;
  }

  .ai-hero-bg img {
    object-position: 58% center;
  }

  .ai-hero-shade {
    background: linear-gradient(
      0deg,
      rgba(24, 32, 31, 0.78) 0%,
      rgba(24, 32, 31, 0.42) 58%,
      rgba(24, 32, 31, 0.04) 100%
    );
  }

  .intro-grid,
  .about-grid,
  .contact-grid,
  .dog-grid,
  .process-grid,
  .article-grid,
  .section-heading.split,
  .qa-item,
  .service-grid,
  .works-grid,
  .service-pillar-grid,
  .sample-preview-grid,
  .consult-feature,
  .detail-grid,
  .automation-list article,
  .pricing-grid,
  .booking-form,
  .related-card-grid,
  .sample-row,
  .alt-hero,
  .trust-facts,
  .trust-summary-grid,
  .idea-grid,
  .container-build-grid,
  .featured-work,
  .related-works,
  .kissaco-split,
  .kissaco-access-grid,
  .kissaco-reservation-grid,
  .kissaco-detail-grid,
  .kissaco-menu-feature,
  .kissaco-menu-grid,
  .kissaco-menu-links,
  .kissaco-form-row {
    grid-template-columns: 1fr;
  }

  .time-slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .kissaco-hero {
    min-height: 760px;
  }

  .kissaco-hero-shade {
    background: linear-gradient(
      0deg,
      rgba(30, 25, 20, 0.88) 0%,
      rgba(30, 25, 20, 0.52) 58%,
      rgba(30, 25, 20, 0.08) 100%
    );
  }

  .kissaco-hours {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
    max-width: 280px;
  }

  .kissaco-detail-image {
    position: static;
  }

  .alt-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .alt-hero-media img {
    min-height: 340px;
  }

  .trust-hero {
    padding-bottom: 54px;
  }

  .trust-facts {
    position: static;
    margin-top: 24px;
  }

  .trust-service-list article,
  .build-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .notice-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hero,
  .article-header {
    padding-top: 132px;
  }

  .article-meta {
    position: static;
  }

  .section-heading.split {
    display: grid;
  }

  .section-heading.split p:last-child {
    margin-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .flow-list li {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .flow-slide-visual {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auto-hide-header {
    transition: none;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 700px;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-profile-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .article-meta dl div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
