:root {
  --bg: #f4f1ea;
  --bg-alt: #edeae2;
  --card: #efece4;
  --fg: #1c1b17;
  --primary: #2b3829;
  --primary-fg: #f4f1ea;
  --muted: #e8e4d8;
  --muted-fg: #7a7568;
  --accent: #7d9272;
  --accent-light: #a8c29a;
  --border: rgba(44, 56, 48, 0.14);
  --line-green: #06c755;
  --line-green-hover: #05a847;
  --serif: 'Shippori Mincho', serif;
  --sans: 'Zen Kaku Gothic New', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
  font-weight: 500;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 3rem;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- LINE button ---------- */
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--line-green);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.line-btn:hover {
  background: var(--line-green-hover);
}

.line-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.line-btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Instagram icon link ---------- */
.instagram-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instagram-icon-link img {
  display: block;
  width: 32px;
  height: 32px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.2) 60%,
    transparent
  );
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  font-family: var(--sans);
}

/* The scrolled state's blur is applied via ::before (not directly on .site-header)
   because `backdrop-filter`/`filter` on an element turns it into the containing
   block for its own `position:fixed` descendants — that broke the full-height
   mobile menu (it would size itself against the 4rem-tall header instead of the
   viewport) as soon as the header picked up this state while scrolled. */
.site-header.is-scrolled {
  background: rgba(244, 241, 234, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.site-header.is-scrolled .site-logo {
  color: var(--fg);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.main-nav > a,
.dd-toggle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-header.is-scrolled .main-nav > a,
.site-header.is-scrolled .dd-toggle {
  color: rgba(28, 27, 23, 0.7);
}

.main-nav > a:hover,
.dd-toggle:hover {
  color: #fff;
}

.site-header.is-scrolled .main-nav > a:hover,
.site-header.is-scrolled .dd-toggle:hover {
  color: var(--fg);
}

.dd-caret {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dd-caret,
.nav-dropdown:focus-within .dd-caret {
  transform: rotate(180deg);
}

.nav-dropdown:hover .dd-menu,
.nav-dropdown:focus-within .dd-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: -0.5rem;
}

.dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  width: 14rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dd-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
  transition: background-color 0.2s ease;
}

.dd-menu a:hover {
  background: var(--muted);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .site-header-inner {
    gap: 0.75rem;
  }

  .header-cta .line-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    gap: 0.375rem;
  }

  .header-cta .line-btn svg {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 400px) {
  .site-logo {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
  }

  .header-cta .line-btn {
    padding: 0.4rem 0.625rem;
    font-size: 0.6875rem;
  }
}
.menu-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.site-header.is-scrolled .menu-toggle {
  color: var(--fg);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle.is-open .icon-menu {
  display: none;
}

.menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu > a {
  font-size: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}

.mobile-menu-cta {
  padding-top: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header-inner {
    justify-content: flex-start;
  }

  .header-cta {
    margin-left: auto;
    gap: 0.75rem;
  }

  .menu-toggle {
    margin-left: 0.25rem;
  }
}

@media (max-width: 400px) {
  .mobile-menu-cta .instagram-icon-link img {
    width: 28px;
    height: 28px;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.6)
  );
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.5rem 6rem;
  max-width: 64rem;
  gap: 1rem;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-copy {
    padding: 0 4rem 6rem;
  }
}

.hero-eyebrow {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-title {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.3;
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 24rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-lead {
    font-size: 1rem;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  width: fit-content;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-cta svg {
  width: 1rem;
  height: 1rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dots button {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.hero-dots button.is-active {
  width: 1.5rem;
  background: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.4em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ================= SECTION SHELL ================= */
.section {
  padding: 6rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-alt {
  background: var(--bg-alt);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-label-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.section-label-en {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.section-label-ja {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .section-label-ja {
    font-size: 1.875rem;
  }
}

.section-label-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-lead {
  margin: -1.5rem 0 3rem;
  color: rgba(28, 27, 23, 0.6);
  font-size: 0.875rem;
  font-weight: 300;
}

.subsection-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  color: var(--muted-fg);
}

.subsection-label span {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}

.subsection-rule {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ================= ABOUT / CONCEPT ================= */
.about-block {
  margin-bottom: 6rem;
}

.about-block:last-child {
  margin-bottom: 0;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .concept-grid {
    gap: 5rem;
  }
}

.concept-heading {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .concept-heading {
    font-size: 1.875rem;
  }
}

.concept-photo {
  aspect-ratio: 4 / 3;
  background: var(--muted);
  overflow: hidden;
  border-radius: 2px;
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.concept-photo:hover img {
  transform: scale(1.05);
}

.concept-lead {
  color: rgba(28, 27, 23, 0.75);
  line-height: 2;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .concept-lead {
    font-size: 1rem;
  }
}

.concept-lead p + p {
  margin-top: 1rem;
}

.concept-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.concept-points li {
  display: flex;
  gap: 1.25rem;
}

.concept-points .num {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.concept-points h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.concept-points p {
  color: rgba(28, 27, 23, 0.65);
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ================= GREETING ================= */
.greeting-heading {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .greeting-heading {
    font-size: 1.875rem;
  }
}

.greeting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .greeting-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.portrait {
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: var(--muted);
  overflow: hidden;
  margin: 0 auto 0.75rem;
}

@media (min-width: 768px) {
  .portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    margin: 0 0 0.75rem;
  }
}

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

.portrait-cap {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .portrait-cap {
    text-align: left;
  }
}

.greeting-copy {
  font-family: var(--sans);
}

.greeting-copy h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.greeting-copy h4:not(:first-child) {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.greeting-catch {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.8;
  color: rgba(28, 27, 23, 0.9);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .greeting-catch {
    font-size: 1.1875rem;
  }
}

.greeting-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(28, 27, 23, 0.75);
  font-weight: 300;
}

.signature-block {
  margin: 1.5rem 0 2rem;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.signature-block .name {
  font-size: 1rem;
}

.signature-block .cred {
  font-size: 0.75rem;
  color: var(--muted-fg);
  letter-spacing: 0.1em;
  margin-top: 0.125rem;
}

.profile-text {
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(28, 27, 23, 0.65);
  font-weight: 300;
}

.profile-text + .profile-text {
  margin-top: 1rem;
}

.license-list {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0;
}

.license-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(28, 27, 23, 0.65);
}

.license-list .license-label {
  font-weight: 500;
  color: rgba(28, 27, 23, 0.85);
}

.license-list .license-no {
  letter-spacing: 0.03em;
}

/* ================= PRICING ================= */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    gap: 4rem;
  }
}

.price-card {
  background: var(--bg);
  padding: 2rem;
}

@media (min-width: 768px) {
  .price-card {
    padding: 2.5rem;
  }
}

.price-card-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.price-card-sub {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.price-table thead tr {
  border-bottom: 1px solid var(--border);
}

.price-table th {
  text-align: left;
  padding-bottom: 0.75rem;
  font-weight: 500;
  color: rgba(28, 27, 23, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.price-table th.col-price {
  text-align: right;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(44, 56, 48, 0.07);
}

.price-table td {
  padding: 1rem 0;
}

.price-table td.name {
  font-family: var(--serif);
}

.price-table td.price {
  text-align: right;
  font-weight: 500;
}

.deduction h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.deduction-lead {
  font-size: 0.875rem;
  color: rgba(28, 27, 23, 0.7);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.deduction-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.deduction-list li {
  display: flex;
  gap: 1rem;
}

.deduction-list .num {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.deduction-list h5 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.deduction-list p {
  font-size: 0.75rem;
  color: rgba(28, 27, 23, 0.6);
  line-height: 1.6;
  font-weight: 300;
}

.deduction-note {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ================= VOICE ================= */
.voice-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: 'prev viewport next';
  align-items: center;
  gap: 1rem;
}

.voice-nav-prev {
  grid-area: prev;
}

.voice-nav-next {
  grid-area: next;
}

.voice-nav {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.voice-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.voice-nav svg {
  width: 1.125rem;
  height: 1.125rem;
}

.voice-viewport {
  grid-area: viewport;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.voice-track {
  --voice-card-width: 64%;
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  touch-action: pan-y;
  cursor: grab;
}

.voice-track:active {
  cursor: grabbing;
}

.voice-card {
  flex: 0 0 var(--voice-card-width);
  box-sizing: border-box;
  background: var(--bg-alt);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .voice-card {
    padding: 3rem 4rem;
  }
}

@media (max-width: 640px) {
  .voice-carousel {
    grid-template-columns: 1fr;
    grid-template-areas: 'viewport';
  }

  .voice-nav {
    display: none;
  }

  .voice-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .voice-track {
    --voice-card-width: 100%;
  }

  .voice-card {
    padding: 2rem 1.25rem;
  }
}

.voice-swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .voice-swipe-hint {
    display: block;
  }
}

.voice-card p {
  max-width: 46rem;
  font-size: 0.875rem;
  color: rgba(28, 27, 23, 0.75);
  line-height: 2;
  font-weight: 300;
}

.voice-card .voice-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.voice-card .who {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.voice-card .voice-attr {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 0;
  flex: 1 1 auto;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.voice-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--border);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.voice-dots button.is-active {
  width: 1.5rem;
  background: var(--accent);
}

/* ================= FIRST VISIT ================= */
.flow-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .flow-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fnum {
  display: block;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.flow-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 1rem;
}

.flow-step h3 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.flow-step p {
  font-size: 0.75rem;
  color: rgba(28, 27, 23, 0.6);
  line-height: 1.6;
  font-weight: 300;
}

.flow-step {
  display: flex;
  flex-direction: column;
}

.flow-photo {
  aspect-ratio: 4 / 3;
  background: var(--muted);
  overflow: hidden;
  border-radius: 2px;
  margin-top: 1rem;
}

.flow-step > .flow-photo:last-child {
  margin-top: auto;
}

.flow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}

.flow-photo img.flow-photo-img--line {
  object-position: center 42%;
}

.flow-photo:hover img {
  transform: scale(1.05);
}

.faq-heading {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: rgba(28, 27, 23, 0.8);
}

.faq-q > span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.faq-q .q-tag {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.75rem;
}

.faq-q svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--muted-fg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  color: rgba(28, 27, 23, 0.65);
  line-height: 2;
  font-weight: 300;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.is-open .faq-a {
  max-height: 30rem;
  padding-bottom: 1.25rem;
}

.first-visit-cta {
  margin-top: 3rem;
  text-align: center;
}

.first-visit-cta p {
  font-size: 0.875rem;
  color: rgba(28, 27, 23, 0.6);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.first-visit-cta .line-btn {
  display: inline-flex;
}

/* ================= FOOTER ================= */
footer {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.footer-logo {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.footer-eyebrow {
  color: rgba(244, 241, 234, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(244, 241, 234, 0.7);
  margin-bottom: 1.5rem;
}

.footer-info > div {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-info svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: var(--accent);
}

.footer-hours {
  border-collapse: collapse;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-hours th,
.footer-hours td {
  width: 2rem;
  height: 2rem;
  text-align: center;
  border: 1px solid rgba(244, 241, 234, 0.1);
}

.footer-hours th {
  color: rgba(244, 241, 234, 0.4);
  font-weight: 400;
}

.footer-hours td {
  color: var(--accent);
}

.footer-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.footer-map {
  height: 16rem;
  background: rgba(43, 56, 41, 0.5);
  border-radius: 2px;
  overflow: hidden;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 768px) {
  .footer-map {
    height: auto;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: rgba(244, 241, 234, 0.4);
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  padding-top: 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav a:hover {
  color: rgba(244, 241, 234, 0.7);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(244, 241, 234, 0.3);
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ================= FLOATING WIDGET ================= */
.float-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  /* The container's own box spans the (invisible, when closed) panel's full
     size, which otherwise sits on top of page content and swallows taps
     meant for it. Make the container itself click-through, and only the
     parts that are actually visible/interactive (the toggle button, and the
     panel while open) opt back in. */
  pointer-events: none;
}

.float-panel {
  background: #fff;
  color: var(--fg);
  border-radius: 0.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  padding: 1.75rem;
  width: 23rem;
  max-width: calc(100vw - 3rem);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.float-widget.is-open .float-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.float-panel-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #4ade80;
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.float-panel h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hours-mini {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  margin-bottom: 0.75rem;
}

.hours-mini th,
.hours-mini td {
  text-align: center;
  padding: 0.375rem 0.25rem;
  border: 1px solid var(--border);
}

.hours-mini th {
  color: var(--muted-fg);
  font-weight: 400;
}

.hours-mini td {
  color: var(--accent);
}

.float-hours {
  font-size: 0.75rem;
  color: rgba(28, 27, 23, 0.65);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.float-address {
  font-size: 0.75rem;
  color: rgba(28, 27, 23, 0.65);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.float-address .map-link,
.map-link {
  color: var(--accent);
}

.float-address .map-link:hover,
.map-link:hover {
  text-decoration: underline;
}

.address-building {
  display: inline-block;
  white-space: nowrap;
}

.float-cta-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.float-cta-row .line-btn-block {
  flex: 1;
}

.float-cta-row .instagram-icon-link img {
  width: 28px;
  height: 28px;
}

.float-toggle {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.4);
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
  pointer-events: auto;
}

.float-toggle:hover {
  background: var(--line-green-hover);
}

.float-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.float-toggle .icon-close {
  display: none;
}

.float-widget.is-open .float-toggle .icon-clock {
  display: none;
}

.float-widget.is-open .float-toggle .icon-close {
  display: block;
}

.float-widget.is-open .float-toggle .float-toggle-label {
  display: none;
}

.footer-closed {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .float-widget {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    align-items: stretch;
    gap: 0;
  }

  .float-panel {
    width: 100%;
    max-width: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.18);
  }

  .float-toggle {
    width: 100%;
    justify-content: center;
    border-radius: 0;
    padding: 1.1rem 0;
  }

  /* keeps page content (e.g. the last FAQ items) from resting directly behind
     the permanent full-width reservation bar and having its taps swallowed.
     Added to the footer (not body) so the extra space is filled by the
     footer's own background instead of leaving a visible seam beneath it. */
  footer {
    padding-bottom: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
.signature-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.signature-name-row .instagram-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.signature-name-row .instagram-icon-link img {
  display: block;
  width: 22px;
  height: 22px;
}
