/* =========================================================
   株式会社違カ畑野商店 - Website Styles
   Pure CSS / no external framework
   ========================================================= */

:root {
  --ink: #0b1724;
  --ink-2: #132437;
  --ink-3: #1a3046;
  --paper: #ffffff;
  --cream: #f8f4ed;
  --cream-2: #f1ebe1;
  --sand: #e6dac9;
  --accent: #d59b59;
  --accent-light: #efc28d;
  --accent-deep: #a86528;
  --green: #3b826a;
  --line: rgba(11, 23, 36, .14);
  --line-light: rgba(255, 255, 255, .16);
  --text: #202a34;
  --muted: #6b737c;
  --shadow-sm: 0 16px 40px rgba(15, 29, 44, .08);
  --shadow-md: 0 28px 70px rgba(15, 29, 44, .15);
  --shadow-lg: 0 40px 100px rgba(5, 14, 24, .28);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --header-h: 92px;
  --container: 1220px;
  --container-wide: 1440px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

::selection { color: var(--ink); background: var(--accent-light); }

:focus-visible {
  outline: 3px solid rgba(213, 155, 89, .75);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container,
.container-narrow,
.container-wide {
  width: calc(100% - 64px);
  margin-inline: auto;
}

.container { max-width: var(--container); }
.container-narrow { max-width: 960px; }
.container-wide { max-width: var(--container-wide); }

.section {
  position: relative;
  padding: 140px 0;
}

.section-soft { background: var(--cream); }
.section-sand { background: var(--cream-2); }
.section-dark { color: #fff; background: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

/* ---------- Typography ---------- */

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-heading-light .section-kicker,
.contact .section-kicker { color: var(--accent-light); }

.section-heading h2,
.store-copy h2,
.space-copy h2,
.pet-copy h2,
.contact-heading h2,
.access-info h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -.045em;
}

.section-heading h2 em,
.store-copy h2 em,
.space-copy h2 em,
.pet-copy h2 em,
.contact-heading h2 em {
  color: var(--accent-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-style: normal;
  font-weight: 600;
}

.section-heading-light h2,
.contact-heading h2 { color: #fff; }

.section-heading-light h2 em,
.contact-heading h2 em { color: var(--accent-light); }

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}

.section-heading-row > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.section-heading-center {
  margin-bottom: 54px;
  text-align: center;
}

.section-heading-center .section-kicker { margin-bottom: 12px; }

/* ---------- Buttons & links ---------- */

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 15px 26px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .25s ease, background .25s ease, border-color .25s ease;
}

.button svg { width: 19px; height: 19px; transition: transform .35s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover svg { transform: translateX(4px); }

.button-accent {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(213, 155, 89, .22);
}

.button-accent:hover { background: var(--accent-light); box-shadow: 0 20px 42px rgba(213, 155, 89, .3); }

.button-dark { color: #fff; background: var(--ink); box-shadow: 0 16px 34px rgba(11, 23, 36, .18); }
.button-dark:hover { background: var(--ink-3); box-shadow: 0 22px 46px rgba(11, 23, 36, .26); }

.button-light { color: var(--ink); background: #fff; }
.button-light:hover { background: var(--cream); }

.button-ghost { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .3); backdrop-filter: blur(12px); }
.button-ghost:hover { background: rgba(255, 255, 255, .15); border-color: rgba(255, 255, 255, .5); }

.button-small { min-height: 45px; padding: 12px 20px; font-size: 12px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.text-link svg { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(6px); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-h);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: height .35s var(--ease), color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(5, 13, 22, .66), rgba(5, 13, 22, 0));
  content: "";
  transition: opacity .3s ease;
}

.site-header.is-scrolled {
  height: 76px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-color: rgba(11, 23, 36, .1);
  box-shadow: 0 12px 38px rgba(11, 23, 36, .08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before { opacity: 0; }

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 14px 14px 18px 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
  overflow: hidden;
}

.brand-mark::before {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.brand-mark span {
  position: relative;
  font-family: "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; white-space: nowrap; }
.brand-copy strong { font-size: 14px; font-weight: 800; letter-spacing: .04em; }
.brand-copy small { font-family: Arial, Helvetica, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .17em; opacity: .68; }

.global-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.global-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .35s var(--ease);
}

.global-nav a:hover::after,
.global-nav a.is-active::after { transform: scaleX(1); transform-origin: left center; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1.15;
}

.header-phone > svg { width: 21px; height: 21px; color: var(--accent-light); }
.header-phone span { display: flex; flex-direction: column; }
.header-phone small { font-size: 8px; letter-spacing: .06em; opacity: .7; }
.header-phone strong { margin-top: 3px; font-family: Arial, Helvetica, sans-serif; font-size: 16px; letter-spacing: .04em; }
.site-header.is-scrolled .header-phone > svg { color: var(--accent-deep); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: -1;
  color: #fff;
  background: rgba(8, 20, 32, .98);
  opacity: 0;
  pointer-events: none;
  transition: visibility .4s, opacity .35s ease;
}

.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }

.mobile-menu-inner {
  display: flex;
  width: min(720px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-h) + 45px) 0 40px;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: flex; padding: 15px 0; align-items: baseline; gap: 18px; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: clamp(22px, 5vw, 34px); font-weight: 700; letter-spacing: -.03em; }
.mobile-menu nav a span { color: var(--accent-light); font-family: Arial, sans-serif; font-size: 10px; letter-spacing: .1em; }
.mobile-contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.mobile-contact-row a { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 9px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 14px; font-size: 14px; font-weight: 700; }
.mobile-contact-row a:last-child { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.mobile-contact-row svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */

.hero {
  display: flex;
  position: relative;
  min-height: 900px;
  height: max(780px, 100svh);
  padding: calc(var(--header-h) + 60px) 0 70px;
  align-items: center;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(105deg, rgba(5, 14, 24, .98) 0%, rgba(7, 19, 31, .95) 38%, rgba(9, 25, 39, .8) 68%, rgba(9, 25, 39, .92) 100%),
    url("../images/hero-hakodate.webp") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 72%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -14vw;
  bottom: -34vw;
  z-index: -1;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 11vw rgba(255, 255, 255, .018), 0 0 0 22vw rgba(255, 255, 255, .012);
  content: "";
}

.hero-orb { position: absolute; z-index: -1; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-orb-one { top: 15%; left: 43%; width: 320px; height: 320px; background: rgba(213, 155, 89, .1); filter: blur(100px); }
.hero-orb-two { right: 5%; bottom: 5%; width: 430px; height: 430px; background: rgba(64, 127, 131, .12); filter: blur(130px); }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(460px, .9fr) minmax(580px, 1.1fr);
  gap: clamp(50px, 6vw, 105px);
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 1.5vw, 24px); }
.hero .eyebrow { display: flex; margin-bottom: 26px; align-items: center; gap: 13px; color: var(--accent-light); }
.hero .eyebrow span { width: 38px; height: 1px; background: currentColor; }

.hero h1 {
  margin: 0;
  font-size: clamp(60px, 6.3vw, 102px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.075em;
}

.hero h1 em {
  display: inline-block;
  color: var(--accent-light);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.06em;
}

.hero-lead {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .05em;
}

.hero-buttons { display: flex; margin-top: 38px; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  display: flex;
  margin: 50px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.hero-trust li { position: relative; min-width: 145px; padding: 0 26px; border-left: 1px solid rgba(255, 255, 255, .2); }
.hero-trust li:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong { display: block; color: #fff; font-size: 18px; line-height: 1.2; }
.hero-trust span { display: block; margin-top: 8px; color: rgba(255, 255, 255, .52); font-size: 10px; line-height: 1.4; letter-spacing: .06em; }

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-photo {
  position: absolute;
  margin: 0;
  background: #16283a;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 18, 29, .78), transparent 50%);
  content: "";
  pointer-events: none;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.hero-photo:hover img { transform: scale(1.035); }

.hero-photo-main {
  top: 3%;
  right: 7%;
  width: 66%;
  height: 82%;
  border-radius: 140px 28px 28px 28px;
}

.hero-photo-main img { object-position: center 53%; }
.hero-photo-main figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
}

.hero-photo-main figcaption span { display: block; margin-bottom: 3px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .2em; }

.hero-photo-sub { width: 35%; height: 31%; border-radius: 22px; }
.hero-photo-sub figcaption { display: flex; position: absolute; right: 14px; bottom: 14px; left: 14px; z-index: 2; min-height: 46px; padding: 9px 12px; align-items: center; gap: 9px; color: #fff; background: rgba(8, 20, 32, .76); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; backdrop-filter: blur(12px); font-size: 10px; font-weight: 700; line-height: 1.35; }
.hero-photo-sub figcaption svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--accent-light); }
.hero-photo-store { top: 14%; left: 0; }
.hero-photo-store img { object-position: center; }
.hero-photo-space { right: 0; bottom: 1%; }
.hero-photo-space img { object-position: center 60%; }

.hero-stamp {
  display: flex;
  position: absolute;
  bottom: 9%;
  left: 13%;
  z-index: 4;
  width: 135px;
  height: 135px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--accent);
  border: 8px solid rgba(11, 23, 36, .8);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  transform: rotate(-8deg);
}

.hero-stamp span,
.hero-stamp small { font-family: Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .18em; line-height: 1; }
.hero-stamp strong { margin: 3px 0; font-family: Arial, sans-serif; font-size: 34px; line-height: 1; letter-spacing: -.05em; }

.scroll-cue {
  display: flex;
  position: absolute;
  bottom: 27px;
  left: 50%;
  z-index: 3;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 255, 255, .55);
  transform: translateX(-50%);
}

.scroll-cue span { font-family: Arial, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .22em; writing-mode: vertical-rl; }
.scroll-cue i { display: block; position: relative; width: 1px; height: 44px; background: rgba(255, 255, 255, .2); overflow: hidden; }
.scroll-cue i::after { position: absolute; top: -100%; left: 0; width: 1px; height: 100%; background: var(--accent-light); content: ""; animation: scrollLine 2.2s ease-in-out infinite; }

@keyframes scrollLine { 0% { transform: translateY(0); } 55%, 100% { transform: translateY(200%); } }

/* ---------- Intro ---------- */

.intro { background: #fff; overflow: hidden; }
.intro::before { position: absolute; top: 0; right: 5%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--line), transparent); content: ""; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: 100px; align-items: start; }
.intro-copy { padding-top: 14px; }
.intro-copy > p { margin: 0; color: var(--muted); font-size: 15px; }
.intro-copy .intro-large { margin-bottom: 26px; color: var(--text); font-size: 18px; font-weight: 600; line-height: 2.05; }
.intro-signature { display: flex; margin-top: 45px; padding-top: 24px; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); }
.intro-signature span { color: var(--accent-deep); font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.intro-signature strong { color: var(--ink); font-family: "Yu Mincho", serif; font-size: 23px; font-weight: 600; }

/* ---------- Business cards ---------- */

.business { overflow: hidden; }
.business::before { position: absolute; top: 80px; right: -140px; width: 420px; height: 420px; border: 1px solid rgba(11, 23, 36, .07); border-radius: 50%; content: ""; }
.business-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.business-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(11, 23, 36, .08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.business-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.business-card-media { position: relative; height: 260px; overflow: hidden; }
.business-card-media::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 24, 37, .44), transparent 55%); content: ""; }
.business-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.business-card:hover .business-card-media img { transform: scale(1.06); }
.business-card-store .business-card-media img { object-position: center; }
.business-card-help .business-card-media img { object-position: center 45%; }
.business-card-space .business-card-media img { object-position: center 60%; }

.business-number { position: absolute; right: 20px; bottom: 13px; z-index: 2; color: rgba(255, 255, 255, .78); font-family: Arial, sans-serif; font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -.07em; }
.business-card-body { position: relative; padding: 36px 30px 30px; }
.business-icon { display: grid; position: absolute; top: -29px; left: 28px; z-index: 3; width: 58px; height: 58px; place-items: center; color: var(--ink); background: var(--accent); border: 5px solid #fff; border-radius: 18px; }
.business-card-space .business-icon { color: #fff; background: var(--green); }
.business-icon svg { width: 25px; height: 25px; }
.business-en { margin: 0 0 7px; padding-left: 66px; color: var(--accent-deep); font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; line-height: 1.3; letter-spacing: .18em; }
.business-card-space .business-en { color: var(--green); }
.business-card h3 { margin: 0 0 16px; color: var(--ink); font-size: 25px; line-height: 1.35; letter-spacing: -.035em; }
.business-card-body > p:not(.business-en) { min-height: 104px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.tag-list { display: flex; margin: 24px 0 28px; padding: 0; flex-wrap: wrap; gap: 7px; list-style: none; }
.tag-list li { padding: 6px 10px; color: #5c6570; background: var(--cream); border-radius: 999px; font-size: 10px; font-weight: 700; line-height: 1.3; }

/* ---------- Handyman ---------- */

.handyman { padding-bottom: 150px; overflow: hidden; }
.handyman::before { position: absolute; top: 0; right: -10%; width: 60%; height: 680px; opacity: .28; background: radial-gradient(circle, rgba(213, 155, 89, .22), transparent 68%); content: ""; }
.handyman::after { position: absolute; top: 100px; right: 4%; width: 360px; height: 360px; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .015), 0 0 0 140px rgba(255, 255, 255, .01); content: ""; }

.handyman-intro { display: grid; position: relative; z-index: 1; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr); gap: 90px; align-items: end; }
.handyman-lead { padding-bottom: 9px; }
.handyman-lead p { margin: 0 0 28px; color: rgba(255, 255, 255, .65); font-size: 14px; line-height: 2; }

.service-grid { display: grid; position: relative; z-index: 1; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 72px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { position: relative; min-height: 290px; padding: 38px 34px 34px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: color .35s ease, background .35s ease; overflow: hidden; }
.service-card::before { position: absolute; inset: auto -60px -80px auto; width: 180px; height: 180px; background: var(--accent); border-radius: 50%; content: ""; opacity: 0; transform: scale(.2); transition: opacity .45s ease, transform .5s var(--ease); }
.service-card:hover { color: var(--ink); background: var(--accent); }
.service-card:hover::before { opacity: .16; transform: scale(1); }
.service-icon { display: grid; width: 58px; height: 58px; margin-bottom: 34px; place-items: center; color: var(--accent-light); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; transition: color .35s ease, background .35s ease, border-color .35s ease; }
.service-card:hover .service-icon { color: var(--ink); background: rgba(255, 255, 255, .32); border-color: rgba(255, 255, 255, .35); }
.service-icon svg { width: 28px; height: 28px; }
.service-card > span { position: absolute; top: 35px; right: 31px; color: rgba(255, 255, 255, .25); font-family: Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; transition: color .35s ease; }
.service-card:hover > span { color: rgba(11, 23, 36, .45); }
.service-card h3 { margin: 0 0 14px; font-size: 19px; line-height: 1.4; letter-spacing: -.02em; }
.service-card p { margin: 0; color: rgba(255, 255, 255, .56); font-size: 12px; line-height: 1.9; transition: color .35s ease; }
.service-card:hover p { color: rgba(11, 23, 36, .7); }

.handyman-feature { display: grid; position: relative; z-index: 1; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); margin-top: 95px; align-items: stretch; background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-lg); overflow: hidden; }
.handyman-feature-image { min-height: 500px; overflow: hidden; }
.handyman-feature-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.handyman-feature-copy { padding: 64px clamp(42px, 6vw, 80px); }
.feature-label { margin: 0 0 16px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.handyman-feature-copy h3 { margin: 0; font-size: clamp(28px, 3vw, 43px); line-height: 1.45; letter-spacing: -.04em; }
.check-list { display: grid; margin: 42px 0 0; padding: 0; gap: 25px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 15px; color: rgba(255, 255, 255, .62); font-size: 13px; line-height: 1.75; }
.check-list li > svg { width: 28px; height: 28px; padding: 6px; flex: 0 0 28px; color: var(--ink); background: var(--accent); border-radius: 50%; stroke-width: 2.4; }
.check-list strong { display: block; margin-bottom: 3px; color: #fff; font-size: 15px; }

.process-block { display: grid; position: relative; z-index: 1; grid-template-columns: 260px 1fr; margin-top: 90px; padding-top: 58px; gap: 60px; border-top: 1px solid var(--line-light); }
.process-heading h3 { margin: 0; font-size: 27px; line-height: 1.4; }
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.process-list li { position: relative; padding: 0 23px; border-left: 1px solid var(--line-light); }
.process-list li:first-child { padding-left: 0; border-left: 0; }
.process-list li > span { display: block; margin-bottom: 22px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.process-list strong { display: block; margin-bottom: 10px; color: #fff; font-size: 14px; }
.process-list p { margin: 0; color: rgba(255, 255, 255, .48); font-size: 11px; line-height: 1.75; }

/* ---------- Store ---------- */

.store { overflow: hidden; }
.store::before { position: absolute; right: -15%; bottom: -40%; width: 720px; height: 720px; background: radial-gradient(circle, rgba(213, 155, 89, .12), transparent 68%); content: ""; }
.store-layout { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.store-visual { position: relative; min-height: 650px; }
.store-image-main { position: absolute; inset: 0 8% 0 0; border-radius: 30px 150px 30px 30px; box-shadow: var(--shadow-md); overflow: hidden; }
.store-image-main img { width: 100%; height: 100%; object-fit: cover; }
.store-badge { display: flex; position: absolute; right: 0; bottom: 55px; width: 210px; min-height: 135px; padding: 25px; align-items: center; gap: 16px; color: var(--ink); background: var(--accent); border-radius: 22px 22px 22px 70px; box-shadow: var(--shadow-md); }
.store-badge svg { width: 42px; height: 42px; flex: 0 0 42px; }
.store-badge span { font-size: 11px; line-height: 1.7; }
.store-badge strong { font-size: 15px; }
.store-copy { position: relative; z-index: 1; }
.store-copy h2 { margin-bottom: 28px; }
.store-lead { margin: 0; color: var(--muted); font-size: 15px; line-height: 2.05; }
.store-list { display: grid; margin-top: 38px; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.store-list > div { display: flex; min-height: 130px; padding: 24px 21px; align-items: flex-start; gap: 13px; background: #fff; }
.store-list svg { width: 26px; height: 26px; flex: 0 0 26px; color: var(--accent-deep); }
.store-list span { color: var(--muted); font-size: 11px; line-height: 1.7; }
.store-list strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 13px; line-height: 1.4; }
.store-note { margin: 22px 0 28px; color: #8a8f95; font-size: 10px; line-height: 1.7; }

/* ---------- Coworking space ---------- */

.space { overflow: hidden; }
.space::before { position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(11, 23, 36, .18) .7px, transparent .7px); background-size: 18px 18px; content: ""; }
.space-card { display: grid; position: relative; grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); max-width: 1360px; margin-inline: auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.space-media { position: relative; min-height: 720px; overflow: hidden; }
.space-media::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6, 18, 28, .72), transparent 55%); content: ""; }
.space-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.space-media-label { position: absolute; right: 34px; bottom: 34px; left: 34px; z-index: 2; color: #fff; }
.space-media-label span { display: block; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.space-media-label strong { display: block; margin-top: 7px; font-family: Arial, sans-serif; font-size: 21px; letter-spacing: .1em; }
.space-copy { padding: 72px clamp(42px, 6vw, 82px); }
.space-copy h2 { margin-bottom: 28px; font-size: clamp(36px, 4vw, 55px); }
.space-copy > p:not(.section-kicker):not(.space-caption) { margin: 0; color: var(--muted); font-size: 14px; line-height: 2; }
.space-stats { display: grid; grid-template-columns: 1fr 1fr; margin-top: 38px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.space-stats > div { padding: 22px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.space-stats strong { display: block; color: var(--ink); font-family: Arial, sans-serif; font-size: 26px; line-height: 1.1; letter-spacing: -.04em; }
.space-stats strong small { font-size: 13px; }
.space-stats span { display: block; margin-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.space-features { display: flex; margin: 30px 0 0; padding: 0; flex-wrap: wrap; gap: 8px; list-style: none; }
.space-features li { position: relative; padding: 7px 11px 7px 25px; color: #59636e; background: var(--cream); border-radius: 999px; font-size: 10px; font-weight: 700; }
.space-features li::before { position: absolute; top: 50%; left: 11px; width: 6px; height: 6px; background: var(--green); border-radius: 50%; content: ""; transform: translateY(-50%); }
.space-actions { display: flex; margin-top: 35px; align-items: center; flex-wrap: wrap; gap: 24px; }
.space-caption { margin: 20px 0 0; color: #8a8f95; font-size: 9px; line-height: 1.6; }

/* ---------- Pet feature ---------- */

.pet-feature { padding-top: 110px; padding-bottom: 110px; }
.pet-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); color: #fff; background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.pet-copy { position: relative; padding: clamp(52px, 7vw, 90px); overflow: hidden; }
.pet-copy::after { position: absolute; right: -80px; bottom: -110px; width: 310px; height: 310px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255, 255, 255, .02); content: ""; }
.pet-icon { display: grid; width: 60px; height: 60px; margin-bottom: 28px; place-items: center; color: var(--ink); background: var(--accent); border-radius: 20px; }
.pet-icon svg { width: 30px; height: 30px; }
.pet-copy h2 { color: #fff; font-size: clamp(34px, 4vw, 52px); }
.pet-copy h2 em { color: var(--accent-light); }
.pet-copy > p:not(.section-kicker) { max-width: 650px; margin: 28px 0 32px; color: rgba(255, 255, 255, .62); font-size: 14px; line-height: 2; }
.pet-image { min-height: 590px; overflow: hidden; }
.pet-image img { width: 100%; height: 100%; object-fit: cover; object-position: 45% center; filter: saturate(.8); }

/* ---------- History ---------- */

.history { overflow: hidden; }
.history::before { position: absolute; top: -220px; left: -220px; width: 500px; height: 500px; border: 1px solid rgba(11, 23, 36, .06); border-radius: 50%; box-shadow: 0 0 0 80px rgba(11, 23, 36, .018); content: ""; }
.history-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 100px; align-items: start; }
.history .section-heading { position: sticky; top: 125px; }
.history .section-heading > p:last-child { max-width: 390px; margin: 30px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { position: absolute; top: 10px; bottom: 10px; left: 7px; width: 1px; background: var(--line); content: ""; }
.timeline li { display: grid; position: relative; grid-template-columns: 130px 1fr; min-height: 180px; padding: 0 0 55px 42px; gap: 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { position: absolute; top: 8px; left: 0; width: 15px; height: 15px; background: var(--accent); border: 4px solid var(--cream); border-radius: 50%; box-shadow: 0 0 0 1px var(--accent); content: ""; }
.timeline-year strong { display: block; color: var(--ink); font-family: Arial, sans-serif; font-size: 34px; line-height: 1; letter-spacing: -.06em; }
.timeline-year span { display: block; margin-top: 9px; color: var(--accent-deep); font-size: 10px; font-weight: 800; }
.timeline-content { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.timeline li:last-child .timeline-content { border-bottom: 0; }
.timeline-content h3 { margin: 0 0 13px; color: var(--ink); font-size: 19px; line-height: 1.5; }
.timeline-content p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

/* ---------- FAQ ---------- */

.faq { background: #fff; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { display: flex; width: 100%; padding: 27px 10px; align-items: center; justify-content: space-between; gap: 30px; text-align: left; background: transparent; border: 0; cursor: pointer; }
.accordion-item button > span { display: flex; align-items: center; gap: 17px; color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.6; }
.accordion-item button b { display: grid; width: 36px; height: 36px; flex: 0 0 36px; place-items: center; color: var(--ink); background: var(--accent); border-radius: 50%; font-family: Arial, sans-serif; font-size: 13px; }
.accordion-item button > svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--muted); transition: transform .35s var(--ease); }
.accordion-item button[aria-expanded="true"] > svg { transform: rotate(180deg); }
.accordion-panel { overflow: hidden; }
.accordion-panel > div { display: flex; padding: 0 64px 27px; align-items: flex-start; gap: 16px; }
.accordion-panel b { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-family: Arial, sans-serif; font-size: 11px; }
.accordion-panel p { margin: 1px 0 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

/* ---------- Contact ---------- */

.contact { overflow: hidden; }
.contact::before { position: absolute; top: -260px; right: -180px; width: 680px; height: 680px; background: radial-gradient(circle, rgba(213, 155, 89, .14), transparent 68%); content: ""; }
.contact-heading { display: grid; position: relative; z-index: 1; grid-template-columns: minmax(0, 1fr) minmax(310px, .6fr); gap: 80px; align-items: end; margin-bottom: 68px; }
.contact-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -54px; }
.contact-heading h2 { font-size: clamp(40px, 5vw, 68px); }
.contact-heading > p:last-child { margin: 0 0 9px; color: rgba(255, 255, 255, .58); font-size: 14px; line-height: 2; }
.contact-grid { display: grid; position: relative; z-index: 1; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 28px; align-items: start; }
.contact-direct { display: grid; gap: 14px; }
.contact-method { display: flex; min-height: 132px; padding: 24px 25px; align-items: center; gap: 17px; color: #fff; background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; transition: transform .35s var(--ease), background .3s ease, border-color .3s ease; }
.contact-method:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .24); }
.contact-method-line { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.contact-method-line:hover { background: var(--accent-light); border-color: var(--accent-light); }
.contact-method-icon { display: grid; width: 50px; height: 50px; flex: 0 0 50px; place-items: center; color: var(--accent-light); background: rgba(255, 255, 255, .08); border-radius: 16px; }
.contact-method-line .contact-method-icon { color: var(--ink); background: rgba(255, 255, 255, .34); }
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method > span:nth-child(2) { display: flex; min-width: 0; flex: 1; flex-direction: column; line-height: 1.3; }
.contact-method small { font-size: 9px; font-weight: 700; letter-spacing: .08em; opacity: .6; }
.contact-method strong { margin: 7px 0 6px; font-family: Arial, "Yu Gothic", sans-serif; font-size: 24px; letter-spacing: -.01em; }
.contact-method em { font-size: 10px; font-style: normal; opacity: .62; }
.contact-method-arrow { width: 23px; height: 23px; flex: 0 0 23px; opacity: .6; }
.contact-note { margin-top: 10px; padding: 26px 28px; background: rgba(255, 255, 255, .045); border-radius: 18px; }
.contact-note strong { display: block; color: rgba(255, 255, 255, .78); font-size: 12px; line-height: 1.6; }
.contact-note ul { display: grid; grid-template-columns: 1fr 1fr; margin: 18px 0 0; padding: 0; gap: 8px 15px; list-style: none; }
.contact-note li { position: relative; padding-left: 13px; color: rgba(255, 255, 255, .45); font-size: 10px; }
.contact-note li::before { position: absolute; top: .75em; left: 0; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; content: ""; transform: translateY(-50%); }

.contact-form { padding: clamp(30px, 5vw, 52px); color: var(--text); background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.form-head { display: flex; margin-bottom: 30px; align-items: center; justify-content: space-between; gap: 20px; }
.form-head h3 { margin: 0; color: var(--ink); font-size: 21px; }
.form-head p { margin: 0; color: var(--muted); font-size: 9px; }
.form-head p span, .form-field > span b, .privacy-check b { color: #c84b43; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; position: relative; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field > span { color: var(--ink); font-size: 11px; font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; color: var(--text); background: var(--cream); border: 1px solid transparent; border-radius: 10px; outline: 0; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.form-field input,
.form-field select { height: 54px; padding: 0 15px; }
.form-field textarea { min-height: 145px; padding: 14px 15px; line-height: 1.7; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a3a7ac; font-size: 11px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { background: #fff; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(213, 155, 89, .13); }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #c84b43; }
.field-error { display: none; margin-top: -3px; color: #c84b43; font-size: 9px; }
.form-field.has-error .field-error { display: block; }
.privacy-check { display: block; margin: 24px 0; cursor: pointer; }
.privacy-check input { position: absolute; opacity: 0; pointer-events: none; }
.privacy-check > span { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; }
.privacy-check i { display: grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 6px; }
.privacy-check i svg { width: 14px; height: 14px; color: #fff; opacity: 0; stroke-width: 2.5; }
.privacy-check input:checked + span i { background: var(--ink); border-color: var(--ink); }
.privacy-check input:checked + span i svg { opacity: 1; }
.privacy-check.has-error > span { color: #c84b43; }
.button-submit { width: 100%; border: 0; }
.form-caption { margin: 14px 0 0; color: #969ca2; font-size: 9px; line-height: 1.6; text-align: center; }

/* ---------- Access ---------- */

.access { padding-bottom: 110px; background: #fff; }
.access-grid { display: grid; grid-template-columns: minmax(400px, .78fr) minmax(0, 1.22fr); gap: 70px; align-items: stretch; }
.access-info { padding: 25px 0; }
.access-info h2 { margin-bottom: 36px; font-size: clamp(36px, 4vw, 54px); }
.company-list { margin: 0; border-top: 1px solid var(--line); }
.company-list > div { display: grid; grid-template-columns: 115px 1fr; padding: 16px 0; gap: 20px; border-bottom: 1px solid var(--line); }
.company-list dt { color: var(--muted); font-size: 10px; font-weight: 700; }
.company-list dd { margin: 0; color: var(--ink); font-size: 12px; font-weight: 600; line-height: 1.75; }
.company-list dd small { color: var(--muted); font-size: 10px; font-weight: 400; }
.company-list dd a { text-decoration: underline; text-decoration-color: rgba(11, 23, 36, .25); text-underline-offset: 4px; }
.access-buttons { margin-top: 30px; }
.access-points { display: flex; margin-top: 25px; flex-wrap: wrap; gap: 18px; }
.access-points span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; }
.access-points svg { width: 17px; height: 17px; color: var(--accent-deep); }
.map-wrap { position: relative; min-height: 680px; background: var(--cream-2); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 680px; filter: grayscale(.12) contrast(.94); }
.map-label { position: absolute; right: 25px; bottom: 25px; left: 25px; padding: 19px 22px; color: #fff; background: rgba(11, 23, 36, .9); border-radius: 14px; backdrop-filter: blur(12px); }
.map-label strong { display: block; font-family: Arial, sans-serif; font-size: 13px; letter-spacing: .12em; }
.map-label span { display: block; margin-top: 4px; color: rgba(255, 255, 255, .58); font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .05em; }

/* ---------- Footer ---------- */

.site-footer { padding: 82px 0 25px; color: #fff; background: #06111d; }
.footer-main { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: 80px; padding-bottom: 60px; }
.brand-footer .brand-mark { width: 54px; height: 54px; flex-basis: 54px; }
.brand-footer .brand-copy strong { font-size: 16px; }
.footer-brand > p { margin: 26px 0 0; color: rgba(255, 255, 255, .48); font-size: 12px; line-height: 1.9; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 45px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links > div > strong { margin-bottom: 18px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 9px; letter-spacing: .2em; }
.footer-links a { margin: 5px 0; color: rgba(255, 255, 255, .58); font-size: 11px; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-contact .footer-tel { margin: 0 0 3px; color: #fff; font-family: Arial, sans-serif; font-size: 24px; font-weight: 800; }
.footer-contact > span { color: rgba(255, 255, 255, .4); font-size: 9px; }
.footer-contact > a:last-child { display: inline-flex; margin-top: 16px; align-items: center; gap: 8px; color: var(--accent-light); font-weight: 700; }
.footer-contact svg { width: 14px; height: 14px; }
.footer-bottom { display: flex; padding-top: 21px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, .32); font-family: Arial, sans-serif; font-size: 8px; letter-spacing: .08em; }

/* ---------- Fixed UI ---------- */

.mobile-cta { display: none; }
.back-to-top { display: grid; visibility: hidden; position: fixed; right: 24px; bottom: 24px; z-index: 800; width: 48px; height: 48px; padding: 0; place-items: center; color: #fff; background: var(--ink); border: 0; border-radius: 50%; box-shadow: var(--shadow-sm); opacity: 0; cursor: pointer; transform: translateY(15px); transition: visibility .3s, opacity .3s ease, transform .3s var(--ease), background .2s ease; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-deep); }
.back-to-top svg { width: 19px; height: 19px; transform: rotate(-90deg); }

/* ---------- Modal / toast ---------- */

.modal { display: grid; visibility: hidden; position: fixed; inset: 0; z-index: 2000; padding: 24px; place-items: center; opacity: 0; pointer-events: none; transition: visibility .3s, opacity .3s ease; }
.modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4, 12, 20, .78); backdrop-filter: blur(7px); }
.modal-dialog { position: relative; z-index: 1; width: min(620px, 100%); max-height: calc(100svh - 48px); padding: clamp(30px, 5vw, 52px); background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow: auto; transform: translateY(20px) scale(.98); transition: transform .35s var(--ease); }
.modal.is-open .modal-dialog { transform: translateY(0) scale(1); }
.modal-close { display: grid; position: absolute; top: 15px; right: 15px; width: 38px; height: 38px; padding: 0; place-items: center; color: var(--muted); background: var(--cream); border: 0; border-radius: 50%; font-size: 24px; line-height: 1; cursor: pointer; }
.modal-dialog h2 { margin: 0; color: var(--ink); font-size: 29px; line-height: 1.4; letter-spacing: -.035em; }
.modal-dialog > p:not(.section-kicker) { margin: 20px 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.modal-summary { max-height: 230px; padding: 18px; color: var(--text); background: var(--cream); border-radius: 12px; font-size: 11px; line-height: 1.8; white-space: pre-wrap; overflow: auto; }
.modal-actions { display: flex; margin-top: 24px; flex-wrap: wrap; gap: 12px; }
.modal-actions .button { flex: 1; }
.toast { visibility: hidden; position: fixed; right: 24px; bottom: 84px; z-index: 3000; max-width: min(360px, calc(100% - 48px)); padding: 14px 18px; color: #fff; background: var(--ink); border-radius: 12px; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(12px); transition: visibility .3s, opacity .3s ease, transform .3s var(--ease); font-size: 11px; }
.toast.is-show { visibility: visible; opacity: 1; transform: translateY(0); }

/* ---------- Reveal animation ---------- */

.js .reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1260px) {
  :root { --header-h: 82px; }
  .container, .container-narrow, .container-wide { width: calc(100% - 48px); }
  .global-nav { gap: 18px; }
  .global-nav a { font-size: 11px; }
  .header-phone { display: none; }
  .hero { min-height: 820px; }
  .hero-inner { grid-template-columns: minmax(420px, .88fr) minmax(500px, 1.12fr); gap: 45px; }
  .hero-visual { min-height: 590px; }
  .hero-photo-main { right: 5%; width: 67%; }
  .hero-photo-sub { width: 36%; }
  .hero-stamp { left: 11%; width: 120px; height: 120px; }
  .section { padding: 120px 0; }
  .business-card-body { padding-inline: 25px; }
  .business-card-body > p:not(.business-en) { min-height: 125px; }
  .space-copy { padding: 58px 45px; }
}

@media (max-width: 1040px) {
  .global-nav, .header-actions { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .site-header.is-scrolled { height: 72px; }
  .hero { height: auto; min-height: 930px; padding-top: calc(var(--header-h) + 55px); }
  .hero-inner { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 28px; }
  .hero h1 { font-size: clamp(56px, 7.8vw, 80px); }
  .hero-trust li { min-width: 120px; padding: 0 18px; }
  .hero-visual { min-height: 570px; }
  .business-grid { grid-template-columns: 1fr 1fr; }
  .business-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .85fr 1.15fr; }
  .business-card:last-child .business-card-media { height: 100%; min-height: 420px; }
  .business-card-body > p:not(.business-en) { min-height: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .handyman-intro { grid-template-columns: 1fr .75fr; gap: 50px; }
  .handyman-feature { grid-template-columns: .8fr 1.2fr; }
  .process-block { grid-template-columns: 1fr; gap: 34px; }
  .process-list { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .process-list li:nth-child(3) { padding-left: 0; border-left: 0; }
  .store-layout { gap: 55px; }
  .store-visual { min-height: 590px; }
  .store-list { grid-template-columns: 1fr; }
  .store-list > div { min-height: 100px; }
  .space-card { grid-template-columns: .9fr 1.1fr; }
  .space-media { min-height: 680px; }
  .pet-card { grid-template-columns: 1.08fr .92fr; }
  .history-layout { gap: 65px; }
  .contact-heading { grid-template-columns: 1fr .72fr; gap: 50px; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; }
  .access-grid { grid-template-columns: .85fr 1.15fr; gap: 45px; }
  .footer-main { grid-template-columns: .62fr 1.38fr; gap: 55px; }
  .footer-links { gap: 25px; }
}

@media (max-width: 840px) {
  :root { --header-h: 74px; }
  .section { padding: 95px 0; }
  .container, .container-narrow, .container-wide { width: calc(100% - 40px); }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; border-radius: 13px; }
  .brand-copy strong { font-size: 13px; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 65px); padding-bottom: 105px; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 680px; padding-left: 0; }
  .hero h1 { font-size: clamp(60px, 11vw, 86px); }
  .hero-lead { max-width: 540px; }
  .hero-visual { width: min(680px, 100%); min-height: 620px; margin-inline: auto; }
  .hero-photo-main { right: 4%; width: 65%; }
  .hero-photo-sub { width: 37%; }
  .hero-photo-store { top: 10%; }
  .hero-photo-space { right: 0; }
  .hero-stamp { left: 15%; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-copy { max-width: 680px; padding-top: 0; }
  .section-heading-row { grid-template-columns: 1fr; gap: 25px; margin-bottom: 50px; }
  .section-heading-row > p { max-width: 680px; }
  .business-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .business-card, .business-card:last-child { display: grid; grid-template-columns: .84fr 1.16fr; }
  .business-card-media, .business-card:last-child .business-card-media { height: 100%; min-height: 400px; }
  .business-en { padding-left: 58px; }
  .handyman-intro { grid-template-columns: 1fr; gap: 32px; }
  .handyman-lead { max-width: 650px; }
  .handyman-feature { grid-template-columns: 1fr; }
  .handyman-feature-image { min-height: 390px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .store-layout { grid-template-columns: 1fr; gap: 60px; }
  .store-visual { min-height: 620px; }
  .store-copy { max-width: 680px; }
  .store-list { grid-template-columns: 1fr 1fr; }
  .space-card { grid-template-columns: 1fr; }
  .space-media { min-height: 500px; }
  .space-copy { padding: 55px 45px; }
  .pet-card { grid-template-columns: 1fr; }
  .pet-image { min-height: 420px; order: -1; }
  .history-layout { grid-template-columns: 1fr; gap: 55px; }
  .history .section-heading { position: static; }
  .contact-heading { grid-template-columns: 1fr; gap: 25px; }
  .contact-heading .section-kicker { grid-column: auto; margin-bottom: -8px; }
  .contact-heading > p:last-child { max-width: 650px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-direct { grid-template-columns: 1fr 1fr; }
  .contact-note { grid-column: 1 / -1; }
  .access-grid { grid-template-columns: 1fr; }
  .access-info { max-width: 680px; }
  .map-wrap, .map-wrap iframe { min-height: 520px; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
  .footer-brand { max-width: 500px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  :root { --header-h: 68px; }
  .container, .container-narrow, .container-wide { width: calc(100% - 30px); }
  .section { padding: 78px 0; }
  .site-header { height: var(--header-h); }
  .site-header.is-scrolled { height: 64px; }
  .brand { gap: 10px; }
  .brand-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
  .brand-mark span { font-size: 20px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small { font-size: 6.8px; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-menu-inner { width: calc(100% - 34px); padding-top: calc(var(--header-h) + 34px); }
  .mobile-menu nav a { padding: 13px 0; font-size: 21px; }
  .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 80px; }
  .hero::before { background-size: 48px 48px; }
  .hero .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: .16em; }
  .hero .eyebrow span { width: 25px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); line-height: 1.13; }
  .hero-lead { margin-top: 22px; font-size: 15px; line-height: 1.85; }
  .hero-buttons { margin-top: 30px; }
  .hero-buttons .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 37px; }
  .hero-trust li { min-width: 0; padding: 0 11px; text-align: center; }
  .hero-trust li:first-child { padding-left: 0; }
  .hero-trust strong { font-size: 14px; }
  .hero-trust span { font-size: 8px; }
  .hero-visual { min-height: 455px; }
  .hero-photo-main { top: 0; right: 0; width: 73%; height: 78%; border-radius: 85px 20px 20px 20px; }
  .hero-photo-main figcaption { right: 17px; bottom: 17px; left: 18px; font-size: 9px; }
  .hero-photo-sub { width: 38%; height: 30%; border-radius: 15px; }
  .hero-photo-store { top: 11%; left: 0; }
  .hero-photo-space { right: 1%; bottom: 0; }
  .hero-photo-sub figcaption { right: 7px; bottom: 7px; left: 7px; min-height: 38px; padding: 7px 8px; font-size: 8px; }
  .hero-photo-sub figcaption svg { width: 15px; height: 15px; flex-basis: 15px; }
  .hero-stamp { bottom: 7%; left: 12%; width: 92px; height: 92px; border-width: 6px; }
  .hero-stamp strong { font-size: 25px; }
  .hero-stamp span, .hero-stamp small { font-size: 6px; }
  .section-heading h2, .store-copy h2, .space-copy h2, .pet-copy h2, .contact-heading h2, .access-info h2 { font-size: clamp(32px, 10vw, 44px); line-height: 1.43; }
  .section-kicker { margin-bottom: 12px; font-size: 9px; }
  .intro-copy .intro-large { font-size: 15px; }
  .intro-signature strong { font-size: 19px; }
  .business-card, .business-card:last-child { display: block; }
  .business-card-media, .business-card:last-child .business-card-media { height: 245px; min-height: 0; }
  .business-card-body { padding: 34px 22px 25px; }
  .business-card h3 { font-size: 22px; }
  .business-card-body > p:not(.business-en) { min-height: 0; }
  .business-en { padding-left: 59px; font-size: 8px; }
  .service-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .service-card { min-height: 245px; padding: 28px 25px; }
  .service-icon { margin-bottom: 24px; }
  .handyman-feature { margin-top: 65px; border-radius: 24px; }
  .handyman-feature-image { min-height: 280px; }
  .handyman-feature-copy { padding: 38px 25px 42px; }
  .handyman-feature-copy h3 { font-size: 27px; }
  .check-list { margin-top: 30px; gap: 20px; }
  .process-block { margin-top: 65px; padding-top: 45px; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-list li, .process-list li:nth-child(3) { padding: 0 0 28px 38px; border: 0; }
  .process-list li::before { position: absolute; top: 4px; left: 0; width: 15px; height: 15px; background: var(--accent); border-radius: 50%; content: ""; }
  .process-list li::after { position: absolute; top: 18px; bottom: -2px; left: 7px; width: 1px; background: var(--line-light); content: ""; }
  .process-list li:last-child::after { display: none; }
  .process-list li > span { margin-bottom: 9px; }
  .store-visual { min-height: 440px; }
  .store-image-main { right: 5%; border-radius: 23px 90px 23px 23px; }
  .store-badge { bottom: 28px; width: 175px; min-height: 105px; padding: 19px; border-radius: 18px 18px 18px 55px; }
  .store-badge svg { width: 32px; height: 32px; flex-basis: 32px; }
  .store-list { grid-template-columns: 1fr; }
  .store-list > div { min-height: 95px; }
  .space-card { border-radius: 24px; }
  .space-media { min-height: 330px; }
  .space-copy { padding: 38px 23px 42px; }
  .space-stats > div { padding: 18px 14px; }
  .space-stats strong { font-size: 22px; }
  .space-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .space-actions .button { width: 100%; }
  .pet-feature { padding-top: 65px; padding-bottom: 65px; }
  .pet-card { border-radius: 24px; }
  .pet-image { min-height: 300px; }
  .pet-copy { padding: 38px 24px 43px; }
  .pet-icon { width: 52px; height: 52px; margin-bottom: 22px; }
  .timeline li { grid-template-columns: 1fr; min-height: 0; padding: 0 0 42px 35px; gap: 13px; }
  .timeline-year strong { font-size: 28px; }
  .timeline-content { padding-bottom: 29px; }
  .accordion-item button { padding: 22px 2px; gap: 14px; }
  .accordion-item button > span { align-items: flex-start; gap: 11px; font-size: 13px; }
  .accordion-item button b { width: 31px; height: 31px; flex-basis: 31px; }
  .accordion-panel > div { padding: 0 8px 22px 42px; gap: 10px; }
  .contact-heading { margin-bottom: 45px; }
  .contact-direct { grid-template-columns: 1fr; }
  .contact-note { grid-column: auto; }
  .contact-method { min-height: 112px; padding: 20px; }
  .contact-method strong { font-size: 21px; }
  .contact-form { padding: 28px 20px; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .company-list > div { grid-template-columns: 90px 1fr; gap: 13px; }
  .map-wrap, .map-wrap iframe { min-height: 420px; }
  .map-label { right: 14px; bottom: 14px; left: 14px; }
  .footer-main { padding-bottom: 45px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .mobile-cta { display: grid; position: fixed; right: 0; bottom: 0; left: 0; z-index: 990; grid-template-columns: 1fr 1fr 1fr; min-height: calc(66px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); color: #fff; background: var(--ink); box-shadow: 0 -10px 35px rgba(5, 14, 24, .18); }
  .mobile-cta a { display: flex; min-width: 0; padding: 9px 5px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border-right: 1px solid rgba(255, 255, 255, .12); font-size: 9px; font-weight: 700; line-height: 1.1; }
  .mobile-cta a:nth-child(2) { color: var(--ink); background: var(--accent); }
  .mobile-cta a:last-child { border-right: 0; }
  .mobile-cta svg { width: 19px; height: 19px; }
  .back-to-top { right: 14px; bottom: calc(78px + env(safe-area-inset-bottom)); width: 42px; height: 42px; }
  .toast { right: 15px; bottom: calc(124px + env(safe-area-inset-bottom)); }
  .modal { padding: 15px; }
  .modal-dialog { max-height: calc(100svh - 30px); padding: 35px 20px 25px; }
  .modal-dialog h2 { font-size: 24px; }
  .modal-actions { flex-direction: column; }
}

@media (max-width: 380px) {
  .brand-copy strong { font-size: 10px; }
  .hero h1 { font-size: 46px; }
  .hero-trust li { padding-inline: 7px; }
  .hero-trust strong { font-size: 12px; }
  .hero-visual { min-height: 420px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   DYNAMIC EDITORIAL REDESIGN / 2026
   Hero, brand story and business showcase
   ========================================================= */

:root {
  --ink: #07131c;
  --ink-2: #0b202b;
  --ink-3: #12303b;
  --paper: #fffdfa;
  --cream: #f6f1e8;
  --cream-2: #eee5d8;
  --sand: #e7d7c2;
  --accent: #f0a04b;
  --accent-light: #ffc774;
  --accent-deep: #b75f1e;
  --green: #2f7b72;
  --aqua: #86d6ca;
  --lime: #b8d580;
  --shadow-sm: 0 18px 48px rgba(7, 19, 28, .09);
  --shadow-md: 0 34px 90px rgba(7, 19, 28, .17);
  --shadow-lg: 0 52px 130px rgba(2, 10, 16, .34);
  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

body {
  background: var(--paper);
}

.section {
  padding-block: clamp(110px, 10vw, 170px);
}

/* More expressive headings throughout the page. */
.section-heading h2,
.store-copy h2,
.space-copy h2,
.pet-copy h2,
.contact-heading h2,
.access-info h2 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1.22;
  letter-spacing: -.065em;
}

.section-kicker,
.eyebrow {
  letter-spacing: .28em;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .22);
  content: "";
  transform: translateX(-105%) skewX(-18deg);
  transition: transform .55s var(--ease);
}

.button:hover::before {
  transform: translateX(105%) skewX(-18deg);
}

.button-impact {
  min-height: 66px;
  padding-inline: 31px;
}

/* ---------- Refined header ---------- */

.site-header {
  height: 86px;
  border-bottom-color: rgba(255, 255, 255, .16);
}

.site-header::before {
  background: linear-gradient(to bottom, rgba(2, 9, 15, .82), rgba(2, 9, 15, 0));
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 253, 250, .91);
  box-shadow: 0 10px 40px rgba(7, 19, 28, .09);
}

.brand-mark {
  border-radius: 13px 13px 23px 13px;
  transform: rotate(-3deg);
  transition: transform .45s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(4deg) scale(1.04);
}

.global-nav a {
  font-size: 11px;
  letter-spacing: .08em;
}

/* ---------- Dynamic hero ---------- */

.hero-v2 {
  display: block;
  position: relative;
  min-height: 860px;
  height: max(860px, 100svh);
  padding: 0;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-v2::before,
.hero-v2::after {
  content: none;
}

.hero-image-layer {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero-image-city {
  position: absolute;
  top: -4%;
  left: -4%;
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.78) contrast(1.08) brightness(.78);
  transform: translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0) scale(1.035);
  transition: transform .18s linear;
  will-change: transform;
}

.hero-image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(4, 13, 21, .98) 0%, rgba(4, 13, 21, .91) 34%, rgba(5, 16, 25, .64) 61%, rgba(5, 15, 23, .76) 100%),
    linear-gradient(to top, rgba(2, 9, 15, .86) 0%, transparent 42%),
    radial-gradient(circle at 72% 35%, rgba(240, 160, 75, .18), transparent 38%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: clamp(54px, 5vw, 88px) clamp(54px, 5vw, 88px);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .78) 55%, transparent 96%);
}

.hero-grain {
  position: absolute;
  inset: -60%;
  opacity: .14;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.55) 0 .6px, transparent .7px),
    radial-gradient(circle at 75% 65%, rgba(255,255,255,.42) 0 .5px, transparent .6px);
  background-size: 4px 4px, 5px 5px;
  mix-blend-mode: soft-light;
  animation: grainShift 9s steps(8) infinite;
  pointer-events: none;
}

@keyframes grainShift {
  0% { transform: translate3d(0, 0, 0); }
  20% { transform: translate3d(-2%, 3%, 0); }
  40% { transform: translate3d(3%, -1%, 0); }
  60% { transform: translate3d(-1%, -3%, 0); }
  80% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.hero-inner-v2 {
  display: grid;
  min-height: 100%;
  height: 100%;
  padding-top: 142px;
  padding-bottom: 94px;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr);
  gap: clamp(50px, 5vw, 92px);
  align-items: center;
}

.hero-copy-v2 {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-left: clamp(10px, 3.5vw, 58px);
}

.hero-eyebrow {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 14px;
  color: var(--accent-light);
}

.hero-eyebrow span {
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero-title-v2 {
  margin: 0;
  color: #fff;
  font-size: clamp(72px, 8.4vw, 142px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.095em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  opacity: 0;
  transform: translateY(56px) skewY(3deg);
  transform-origin: left bottom;
  animation: heroTitleIn 1.05s var(--ease) forwards;
}

.hero-title-line-1 { animation-delay: .1s; }
.hero-title-line-2 { margin-left: clamp(18px, 5vw, 82px); animation-delay: .22s; }
.hero-title-line-3 {
  display: flex;
  margin-top: .04em;
  margin-left: clamp(70px, 13vw, 220px);
  align-items: flex-end;
  color: var(--accent-light);
  animation-delay: .34s;
}

.hero-title-line-3 b {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.02em;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.09em;
}

.hero-title-line-3 i {
  margin: 0 0 .03em .08em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: .55em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.08em;
}

@keyframes heroTitleIn {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}

.hero-copy-bottom {
  display: grid;
  max-width: 880px;
  margin-top: 36px;
  grid-template-columns: minmax(280px, 430px) auto;
  gap: 28px 36px;
  align-items: end;
  opacity: 0;
  animation: heroFadeIn .9s .62s var(--ease) forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

.hero-lead-v2 {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: .055em;
}

.hero-buttons-v2 {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hero-buttons-v2 .button {
  width: 100%;
  min-width: 230px;
}

.hero-hub {
  position: relative;
  z-index: 3;
  width: min(100%, 470px);
  margin-top: 52px;
  padding: 30px 26px 23px;
  justify-self: end;
  color: #fff;
  background: rgba(8, 22, 31, .69);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 32px 12px 32px 12px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, .34);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.hero-hub-frame {
  position: absolute;
  inset: -12px 12px 12px -12px;
  z-index: -1;
  border: 1px solid rgba(240, 160, 75, .42);
  border-radius: 34px 12px 34px 12px;
  transform: rotate(-1.8deg);
  pointer-events: none;
}

.hero-hub-head {
  padding: 4px 8px 23px;
}

.hero-hub-head p {
  margin: 0 0 10px;
  color: var(--accent-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .21em;
}

.hero-hub-head strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.5;
  letter-spacing: -.035em;
}

.hero-business-nav {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-business-link {
  display: grid;
  position: relative;
  min-height: 90px;
  padding: 14px 8px;
  grid-template-columns: 34px 72px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: padding .4s var(--ease), background .35s ease, transform .4s var(--ease);
}

.hero-business-link::before {
  position: absolute;
  inset: 7px -8px;
  z-index: -1;
  background: var(--accent);
  border-radius: 14px 4px 14px 4px;
  content: "";
  opacity: 0;
  transform: scaleX(.92);
  transition: opacity .35s ease, transform .4s var(--ease);
}

.hero-business-link:hover {
  padding-right: 2px;
  padding-left: 14px;
  color: var(--ink);
}

.hero-business-link:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.hero-business-number {
  color: var(--accent-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  transition: color .35s ease;
}

.hero-business-link:hover .hero-business-number {
  color: var(--ink);
}

.hero-business-link img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px 3px 12px 3px;
  filter: saturate(.8) contrast(1.05);
  transition: transform .55s var(--ease), filter .4s ease;
}

.hero-business-link:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.08) rotate(-2deg);
}

.hero-business-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.hero-business-copy small {
  overflow: hidden;
  color: rgba(255, 255, 255, .48);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .35s ease;
}

.hero-business-copy strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-business-link:hover .hero-business-copy small {
  color: rgba(7, 19, 28, .56);
}

.hero-business-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transition: color .35s ease, border-color .35s ease, transform .45s var(--ease);
}

.hero-business-arrow svg {
  width: 15px;
  height: 15px;
}

.hero-business-link:hover .hero-business-arrow {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(-35deg);
}

.hero-hub-foot {
  display: flex;
  padding: 18px 8px 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
  font-weight: 700;
}

.hero-hub-foot > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-hub-foot i {
  width: 7px;
  height: 7px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(134, 214, 202, .1);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: .65; box-shadow: 0 0 0 4px rgba(134, 214, 202, .08); }
  50% { opacity: 1; box-shadow: 0 0 0 9px rgba(134, 214, 202, 0); }
}

.hero-hub-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.hero-hub-foot svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
}

.hero-orbit {
  display: grid;
  position: absolute;
  top: -84px;
  right: -34px;
  width: 142px;
  height: 142px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border: 8px solid rgba(7, 19, 28, .9);
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .32);
}

.hero-orbit svg {
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit text {
  fill: var(--ink);
  stroke: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
}

.hero-orbit > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--accent-light);
  background: var(--ink);
  border-radius: 50%;
  font-family: "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 800;
  transform: rotate(-5deg);
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-rail {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: rgba(255, 255, 255, .38);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-rail-left { left: 22px; }
.hero-rail-right { right: 18px; transform: translateY(-50%) rotate(180deg); }

.hero-signal {
  display: flex;
  position: absolute;
  right: 32px;
  bottom: 37px;
  z-index: 4;
  align-items: flex-end;
  gap: 5px;
}

.hero-signal span {
  display: block;
  width: 3px;
  background: var(--accent-light);
  border-radius: 3px;
  animation: signalWave 1.4s ease-in-out infinite;
}

.hero-signal span:nth-child(1) { height: 10px; }
.hero-signal span:nth-child(2) { height: 18px; animation-delay: .15s; }
.hero-signal span:nth-child(3) { height: 28px; animation-delay: .3s; }

@keyframes signalWave {
  0%, 100% { opacity: .35; transform: scaleY(.65); }
  50% { opacity: 1; transform: scaleY(1); }
}

.scroll-cue-v2 {
  bottom: 26px;
  left: clamp(48px, 7vw, 118px);
  align-items: flex-start;
  transform: none;
}

.scroll-cue-v2 span {
  font-size: 7px;
  writing-mode: horizontal-tb;
}

.scroll-cue-v2 i {
  width: 90px;
  height: 1px;
}

.scroll-cue-v2 i::after {
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  animation: scrollLineHorizontal 2.2s ease-in-out infinite;
}

@keyframes scrollLineHorizontal {
  0% { transform: translateX(0); }
  55%, 100% { transform: translateX(200%); }
}

/* ---------- Moving brand ribbon ---------- */

.impact-marquee {
  position: relative;
  z-index: 10;
  margin: -12px -20px 0;
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 16px 42px rgba(7, 19, 28, .16);
  transform: rotate(-1deg);
  overflow: hidden;
}

.impact-marquee-track {
  display: flex;
  width: max-content;
  animation: impactMarquee 24s linear infinite;
}

.impact-marquee p {
  margin: 0;
  padding: 16px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.1vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.impact-marquee b {
  display: inline-block;
  margin-inline: .55em;
  font-size: .55em;
  transform: translateY(-.1em);
}

@keyframes impactMarquee { to { transform: translateX(-50%); } }

/* ---------- Editorial brand story ---------- */

.intro-v2 {
  position: relative;
  padding-top: clamp(150px, 13vw, 220px);
  background:
    linear-gradient(90deg, rgba(7, 19, 28, .045) 1px, transparent 1px),
    linear-gradient(rgba(7, 19, 28, .045) 1px, transparent 1px),
    var(--cream);
  background-size: 90px 90px;
  overflow: hidden;
}

.intro-v2::before {
  content: none;
}

.intro-backword {
  position: absolute;
  top: -4vw;
  left: -1vw;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(150px, 24vw, 410px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.1em;
  opacity: .035;
  pointer-events: none;
}

.intro-v2-grid {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
}

.intro-story {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 2vw, 30px);
}

.intro-manifesto {
  margin: 0;
  color: var(--ink);
  font-size: clamp(55px, 6.5vw, 102px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.085em;
}

.intro-manifesto span {
  display: block;
}

.intro-manifesto span:nth-child(2) {
  margin-left: clamp(30px, 5vw, 80px);
  color: var(--accent-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
}

.intro-manifesto span:nth-child(3) {
  margin-left: clamp(70px, 10vw, 170px);
}

.intro-catch {
  margin: 38px 0 0;
  color: var(--ink);
  font-size: clamp(21px, 2.1vw, 31px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -.025em;
}

.intro-body-grid {
  display: grid;
  margin-top: 38px;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.intro-body-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.intro-signature-v2 {
  margin-top: 42px;
  padding-top: 22px;
}

.intro-signature-v2 strong {
  font-size: clamp(19px, 1.8vw, 27px);
}

.intro-collage {
  position: relative;
  min-height: 700px;
  perspective: 1200px;
}

.intro-photo {
  position: absolute;
  margin: 0;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .2s ease-out, box-shadow .45s var(--ease);
  will-change: transform;
}

.intro-photo:hover {
  box-shadow: var(--shadow-lg);
}

.intro-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 22, .75), transparent 53%);
  content: "";
  pointer-events: none;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s var(--ease);
}

.intro-photo:hover img {
  transform: scale(1.045);
}

.intro-photo figcaption {
  display: flex;
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.intro-photo figcaption span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.intro-photo figcaption strong {
  font-size: 10px;
  letter-spacing: .18em;
}

.intro-photo figcaption small {
  margin-left: auto;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  letter-spacing: .06em;
}

.intro-photo-main {
  top: 10%;
  right: 3%;
  width: 67%;
  height: 76%;
  border-radius: 170px 20px 20px 20px;
  transform: rotate(1.5deg);
}

.intro-photo-main img { object-position: center 48%; }

.intro-photo-store {
  top: 0;
  left: 1%;
  width: 37%;
  height: 36%;
  border-radius: 22px 7px 22px 7px;
  transform: rotate(-5deg);
}

.intro-photo-space {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 35%;
  border: 8px solid var(--cream);
  border-radius: 9px 30px 9px 30px;
  transform: rotate(5deg);
}

.intro-collage-note {
  display: flex;
  position: absolute;
  bottom: 8%;
  left: 2%;
  z-index: 5;
  width: 165px;
  height: 165px;
  padding: 26px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--accent);
  border: 9px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 18px 55px rgba(7, 19, 28, .18);
  transform: rotate(-8deg);
}

.intro-collage-note b {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.08em;
}

.intro-collage-note span {
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 7px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .15em;
  text-align: center;
}

/* ---------- Business showcase: no generic card grid ---------- */

.business-v2 {
  padding-top: clamp(120px, 11vw, 190px);
  background: var(--paper);
  overflow: hidden;
}

.business-v2::before {
  top: 5%;
  right: -10vw;
  width: 34vw;
  height: 34vw;
  border-color: rgba(7, 19, 28, .08);
  box-shadow: 0 0 0 7vw rgba(7, 19, 28, .018), 0 0 0 14vw rgba(7, 19, 28, .012);
}

.business-heading-v2 {
  margin-bottom: 82px;
}

.business-heading-v2 > p {
  max-width: 470px;
  justify-self: end;
  font-size: 14px;
}

.business-showcase {
  display: grid;
  gap: 58px;
}

.business-feature {
  display: grid;
  position: relative;
  min-height: 590px;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  border-radius: 44px 12px 44px 12px;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  overflow: hidden;
}

.business-feature-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.business-feature-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 13, 20, .5), transparent 56%);
  content: "";
}

.business-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s ease;
}

.business-feature:hover .business-feature-media img {
  transform: scale(1.055);
}

.business-feature-chip {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  padding: 10px 14px;
  color: #fff;
  background: rgba(7, 19, 28, .68);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
}

.business-feature-index {
  position: absolute;
  right: 27px;
  bottom: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(70px, 8vw, 126px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.1em;
}

.business-feature-copy {
  display: flex;
  position: relative;
  z-index: 2;
  padding: clamp(55px, 6vw, 90px);
  justify-content: center;
  flex-direction: column;
}

.business-feature-en {
  margin: 0 0 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.business-feature-copy h3 {
  margin: 0;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.15;
  letter-spacing: -.07em;
}

.business-feature-copy > p:not(.business-feature-en) {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 2;
}

.business-feature-tags {
  display: flex;
  margin: 30px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.business-feature-tags li {
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  opacity: .68;
}

.business-round-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 42px;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.business-round-link > span {
  position: relative;
}

.business-round-link > span::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.business-round-link svg {
  width: 52px;
  height: 52px;
  padding: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color .35s ease, background .35s ease, transform .45s var(--ease);
}

.business-round-link:hover > span::after {
  transform: scaleX(1);
}

.business-round-link:hover svg {
  transform: translateX(7px) rotate(-28deg);
}

.business-ghost-word {
  position: absolute;
  right: -10px;
  bottom: -28px;
  z-index: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(110px, 13vw, 220px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.1em;
  opacity: .055;
  pointer-events: none;
}

.business-feature-store {
  color: #fff;
  background: var(--ink-2);
}

.business-feature-store .business-feature-en { color: var(--accent-light); }
.business-feature-store .business-feature-copy > p:not(.business-feature-en) { color: rgba(255, 255, 255, .67); }
.business-feature-store .business-round-link svg { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.business-feature-help {
  color: var(--ink);
  background: var(--accent);
}

.business-feature-help .business-feature-media {
  order: 2;
}

.business-feature-help .business-feature-en { color: rgba(7, 19, 28, .64); }
.business-feature-help .business-feature-copy > p:not(.business-feature-en) { color: rgba(7, 19, 28, .68); }
.business-feature-help .business-round-link svg { color: #fff; background: var(--ink); border-color: var(--ink); }
.business-feature-help .business-feature-chip { color: var(--ink); background: rgba(255, 255, 255, .74); border-color: rgba(255, 255, 255, .7); }

.business-feature-space {
  color: var(--ink);
  background: #dcece7;
}

.business-feature-space .business-feature-en { color: var(--green); }
.business-feature-space .business-feature-copy > p:not(.business-feature-en) { color: rgba(7, 19, 28, .66); }
.business-feature-space .business-round-link svg { color: #fff; background: var(--green); border-color: var(--green); }

/* ---------- More movement in the remaining page ---------- */

.handyman {
  border-top-left-radius: clamp(48px, 8vw, 130px);
  border-top-right-radius: 0;
}

.handyman::before {
  background:
    radial-gradient(circle at 70% 28%, rgba(240, 160, 75, .22), transparent 42%),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .025) 48% 52%, transparent 52%);
}

.service-card {
  transition: color .45s ease, background .45s ease, transform .45s var(--ease);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px) scale(1.015);
}

.store-image-main {
  border-radius: 32px 8px 32px 8px;
}

.space-card {
  border-radius: 18px 52px 18px 52px;
}

.pet-card {
  border-radius: 42px 12px 42px 12px;
}

/* ---------- Pointer tilt ---------- */

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

/* Reveal variations feel less templated. */
.js .reveal {
  transform: translateY(54px) scale(.985);
}

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

.business-feature.reveal:nth-child(even) {
  transform: translateX(50px) scale(.985);
}

.business-feature.reveal:nth-child(even).is-visible {
  transform: translateX(0) scale(1);
}

/* =========================================================
   Dynamic responsive rules
   ========================================================= */

@media (max-width: 1280px) {
  .hero-inner-v2 {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .7fr);
    gap: 40px;
  }

  .hero-title-v2 {
    font-size: clamp(68px, 8.2vw, 114px);
  }

  .hero-title-line-3 {
    margin-left: clamp(50px, 10vw, 150px);
  }

  .intro-v2-grid {
    grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr);
    gap: 70px;
  }

  .business-feature-copy {
    padding: 56px;
  }
}

@media (max-width: 1040px) {
  .hero-v2 {
    min-height: 980px;
    height: auto;
  }

  .hero-inner-v2 {
    min-height: 980px;
    padding-top: 135px;
    padding-bottom: 98px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 52px;
  }

  .hero-copy-v2 {
    padding-inline: 3vw;
  }

  .hero-title-v2 {
    font-size: clamp(70px, 12.4vw, 126px);
  }

  .hero-copy-bottom {
    max-width: 780px;
  }

  .hero-hub {
    width: min(94%, 720px);
    margin: 0 auto;
    justify-self: center;
  }

  .hero-hub-head strong br {
    display: none;
  }

  .hero-business-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-business-link {
    min-height: 164px;
    padding: 15px;
    grid-template-columns: 1fr 34px;
    grid-template-rows: 68px auto;
    gap: 12px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 0;
  }

  .hero-business-link:last-child {
    border-right: 0;
  }

  .hero-business-link::before {
    inset: 6px;
  }

  .hero-business-number {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 5px 7px;
    color: #fff;
    background: rgba(7, 19, 28, .65);
    border-radius: 999px;
  }

  .hero-business-link img {
    width: 100%;
    height: 68px;
    grid-column: 1 / -1;
    border-radius: 12px 4px 12px 4px;
  }

  .hero-business-copy strong {
    white-space: normal;
  }

  .intro-v2-grid {
    grid-template-columns: 1fr;
  }

  .intro-story {
    max-width: 850px;
  }

  .intro-collage {
    width: min(100%, 820px);
    min-height: 680px;
    margin-inline: auto;
  }

  .business-feature {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    min-height: 520px;
  }

  .business-feature-media {
    min-height: 520px;
  }

  .business-feature-copy {
    padding: 48px;
  }

  .hero-rail-right { display: none; }
}

@media (max-width: 840px) {
  .hero-v2 {
    min-height: auto;
  }

  .hero-inner-v2 {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 100px;
  }

  .hero-image-city {
    top: 0;
    left: -16%;
    width: 132%;
    height: 100%;
  }

  .hero-image-wash {
    background:
      linear-gradient(to bottom, rgba(4, 13, 21, .9) 0%, rgba(4, 13, 21, .72) 37%, rgba(4, 13, 21, .9) 78%, rgba(2, 9, 15, .98) 100%),
      linear-gradient(90deg, rgba(4, 13, 21, .95), rgba(4, 13, 21, .38));
  }

  .hero-title-v2 {
    font-size: clamp(62px, 14vw, 104px);
  }

  .hero-copy-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-buttons-v2 {
    max-width: 450px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-buttons-v2 .button {
    width: auto;
    min-width: 0;
  }

  .hero-hub {
    width: 100%;
    padding-inline: 20px;
  }

  .hero-orbit {
    top: -67px;
    right: 15px;
    width: 116px;
    height: 116px;
    border-width: 7px;
  }

  .hero-orbit > span {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .hero-rail-left,
  .hero-signal {
    display: none;
  }

  .scroll-cue-v2 {
    left: 32px;
  }

  .intro-v2 {
    background-size: 62px 62px;
  }

  .intro-body-grid {
    grid-template-columns: 1fr;
  }

  .intro-collage {
    min-height: 580px;
  }

  .business-heading-v2 {
    margin-bottom: 58px;
  }

  .business-feature {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 34px 10px 34px 10px;
  }

  .business-feature-media,
  .business-feature-help .business-feature-media {
    min-height: 420px;
    order: 0;
  }

  .business-feature-copy {
    min-height: 430px;
    padding: 52px 46px;
  }

  .business-ghost-word {
    font-size: 145px;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 100px;
  }

  .site-header {
    height: 68px;
  }

  .hero-inner-v2 {
    padding-top: 102px;
    padding-bottom: 84px;
    gap: 78px;
  }

  .hero-copy-v2 {
    padding-inline: 0;
  }

  .hero-eyebrow {
    margin-bottom: 19px;
    font-size: 8px;
  }

  .hero-eyebrow span {
    width: 24px;
  }

  .hero-title-v2 {
    font-size: clamp(55px, 17vw, 82px);
    line-height: .94;
  }

  .hero-title-line-2 {
    margin-left: 0;
  }

  .hero-title-line-3 {
    margin-top: .14em;
    margin-left: clamp(34px, 13vw, 74px);
  }

  .hero-title-line-3 i {
    margin-bottom: .06em;
    font-size: .5em;
  }

  .hero-copy-bottom {
    margin-top: 30px;
  }

  .hero-lead-v2 {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-buttons-v2 {
    display: grid;
    max-width: none;
    grid-template-columns: 1fr;
  }

  .hero-buttons-v2 .button {
    width: 100%;
  }

  .hero-hub {
    padding: 24px 16px 16px;
    border-radius: 25px 8px 25px 8px;
  }

  .hero-hub-frame {
    inset: -8px 8px 8px -8px;
    border-radius: 27px 8px 27px 8px;
  }

  .hero-hub-head {
    padding: 2px 5px 20px;
  }

  .hero-hub-head strong {
    padding-right: 95px;
    font-size: 18px;
  }

  .hero-business-nav {
    display: block;
  }

  .hero-business-link {
    min-height: 82px;
    padding: 12px 5px;
    grid-template-columns: 28px 64px minmax(0, 1fr) 30px;
    grid-template-rows: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .hero-business-number {
    position: static;
    padding: 0;
    color: var(--accent-light);
    background: transparent;
  }

  .hero-business-link img {
    width: 64px;
    height: 52px;
    grid-column: auto;
  }

  .hero-business-copy strong {
    font-size: 12px;
  }

  .hero-business-arrow {
    width: 29px;
    height: 29px;
  }

  .hero-hub-foot {
    padding-inline: 4px;
    font-size: 8px;
  }

  .hero-hub-foot a {
    font-size: 11px;
  }

  .hero-orbit {
    top: -51px;
    right: 6px;
    width: 98px;
    height: 98px;
    border-width: 6px;
  }

  .hero-orbit text {
    font-size: 9px;
  }

  .hero-orbit > span {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .scroll-cue-v2 {
    display: none;
  }

  .impact-marquee {
    margin-top: -8px;
  }

  .impact-marquee p {
    padding: 13px 0;
    font-size: 17px;
  }

  .intro-v2 {
    padding-top: 120px;
    background-size: 48px 48px;
  }

  .intro-backword {
    top: 10px;
    font-size: 42vw;
  }

  .intro-manifesto {
    font-size: clamp(49px, 15vw, 68px);
  }

  .intro-manifesto span:nth-child(2) {
    margin-left: 16px;
  }

  .intro-manifesto span:nth-child(3) {
    margin-left: 42px;
  }

  .intro-catch {
    margin-top: 30px;
    font-size: 20px;
  }

  .intro-body-grid {
    margin-top: 30px;
    gap: 18px;
  }

  .intro-collage {
    min-height: 465px;
  }

  .intro-photo-main {
    top: 9%;
    right: 1%;
    width: 76%;
    height: 72%;
    border-radius: 92px 14px 14px 14px;
  }

  .intro-photo-store {
    width: 43%;
    height: 31%;
  }

  .intro-photo-space {
    width: 48%;
    height: 29%;
    border-width: 5px;
  }

  .intro-photo figcaption {
    right: 12px;
    bottom: 11px;
    left: 12px;
    gap: 7px;
  }

  .intro-photo figcaption span {
    width: 27px;
    height: 27px;
    font-size: 7px;
  }

  .intro-photo figcaption small {
    display: none;
  }

  .intro-collage-note {
    bottom: 4%;
    width: 118px;
    height: 118px;
    padding: 18px;
    border-width: 6px;
  }

  .intro-collage-note b {
    font-size: 28px;
  }

  .intro-collage-note span {
    font-size: 6px;
  }

  .business-heading-v2 {
    margin-bottom: 46px;
  }

  .business-showcase {
    gap: 34px;
  }

  .business-feature {
    border-radius: 26px 7px 26px 7px;
  }

  .business-feature-media,
  .business-feature-help .business-feature-media {
    min-height: 300px;
  }

  .business-feature-chip {
    top: 17px;
    left: 17px;
    font-size: 7px;
  }

  .business-feature-index {
    right: 18px;
    bottom: 12px;
    font-size: 70px;
  }

  .business-feature-copy {
    min-height: auto;
    padding: 38px 27px 45px;
  }

  .business-feature-copy h3 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .business-feature-copy > p:not(.business-feature-en) {
    margin-top: 23px;
    font-size: 13px;
  }

  .business-round-link {
    margin-top: 32px;
  }

  .business-round-link svg {
    width: 46px;
    height: 46px;
    padding: 13px;
  }

  .business-ghost-word {
    right: -2px;
    bottom: -8px;
    font-size: 104px;
  }

  .handyman {
    border-top-left-radius: 56px;
  }
}

@media (max-width: 380px) {
  .hero-title-v2 {
    font-size: 51px;
  }

  .hero-hub-head strong {
    padding-right: 76px;
    font-size: 16px;
  }

  .hero-orbit {
    width: 86px;
    height: 86px;
  }

  .hero-business-link {
    grid-template-columns: 24px 54px minmax(0, 1fr) 27px;
  }

  .hero-business-link img {
    width: 54px;
    height: 47px;
  }

  .hero-hub-foot > span {
    display: none;
  }

  .hero-hub-foot {
    justify-content: flex-end;
  }
}

@media (hover: none) {
  .hero-business-link:hover {
    padding: 14px 8px;
    color: #fff;
  }

  .hero-business-link:hover::before {
    opacity: 0;
  }

  .hero-business-link:hover .hero-business-number {
    color: var(--accent-light);
  }

  .hero-business-link:hover .hero-business-copy small {
    color: rgba(255, 255, 255, .48);
  }

  .hero-business-link:hover .hero-business-arrow {
    color: inherit;
    background: transparent;
    border-color: rgba(255, 255, 255, .24);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line,
  .hero-copy-bottom,
  .hero-grain,
  .hero-orbit svg,
  .hero-signal span,
  .impact-marquee-track,
  .hero-hub-foot i {
    animation: none !important;
  }

  .hero-title-line,
  .hero-copy-bottom {
    opacity: 1;
    transform: none;
  }

  .hero-image-city {
    transform: scale(1.035) !important;
  }
}

/* =========================================================
   Dynamic Editorial Redesign
   - kinetic hero / layered imagery / asymmetric business grid
   ========================================================= */

:root {
  --accent-hot: #efad62;
  --accent-coral: #c86f43;
  --mint: #64a68f;
  --navy-soft: #102235;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--mint));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ---------- Dynamic hero ---------- */

.hero.hero-dynamic {
  display: block;
  min-height: 940px;
  height: max(900px, 100svh);
  padding: calc(var(--header-h) + 44px) 0 150px;
  color: #fff;
  background: #06121f;
  overflow: hidden;
}

.hero-dynamic .hero-bg {
  inset: -3%;
  background:
    linear-gradient(94deg, rgba(4, 12, 21, .98) 0%, rgba(5, 15, 25, .94) 34%, rgba(7, 20, 33, .65) 66%, rgba(6, 17, 28, .88) 100%),
    url("../images/hero-hakodate.webp") center 58% / cover no-repeat;
  transform: scale(1.05);
  animation: heroBreath 18s ease-in-out infinite alternate;
}

.hero-dynamic::before {
  inset: 0;
  z-index: -2;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    radial-gradient(circle at 69% 42%, rgba(239, 173, 98, .17), transparent 27%);
  background-size: 96px 96px, 96px 96px, auto;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.92) 58%, transparent 100%);
}

.hero-dynamic::after {
  right: -22vw;
  bottom: -41vw;
  z-index: -1;
  width: 88vw;
  height: 88vw;
  border-color: rgba(255, 255, 255, .075);
  box-shadow: 0 0 0 8vw rgba(255,255,255,.018), 0 0 0 17vw rgba(255,255,255,.012), 0 0 0 26vw rgba(255,255,255,.008);
}

@keyframes heroBreath {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(-1.2%, -.8%, 0); }
}

.hero-atmosphere,
.hero-atmosphere span { position: absolute; pointer-events: none; }
.hero-atmosphere { inset: 0; z-index: -1; }
.hero-glow { border-radius: 50%; filter: blur(90px); opacity: .68; }
.hero-glow-one { top: 14%; left: 43%; width: 360px; height: 360px; background: rgba(239, 173, 98, .18); animation: glowDriftOne 10s ease-in-out infinite alternate; }
.hero-glow-two { right: 3%; bottom: 4%; width: 430px; height: 430px; background: rgba(77, 146, 140, .18); animation: glowDriftTwo 12s ease-in-out infinite alternate; }
.hero-grid-accent { top: 18%; right: 3.6%; width: 190px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.36)); transform: rotate(-17deg); transform-origin: right center; }

@keyframes glowDriftOne { to { transform: translate3d(40px, -25px, 0) scale(1.12); } }
@keyframes glowDriftTwo { to { transform: translate3d(-35px, 20px, 0) scale(.9); } }

.hero-dynamic .hero-inner {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(470px, .82fr) minmax(610px, 1.18fr);
  gap: clamp(45px, 5.5vw, 96px);
  height: calc(100% - 40px);
  align-items: center;
}

.hero-dynamic .hero-copy {
  max-width: 660px;
  padding: 10px 0 0 clamp(0px, 1vw, 15px);
}

.hero-dynamic .hero .eyebrow,
.hero-dynamic .eyebrow { margin-bottom: 24px; }

.hero-dynamic h1 {
  margin: 0;
  font-size: clamp(76px, 7.4vw, 126px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.095em;
}

.hero-title-mask {
  display: block;
  margin: 0 0 -.02em;
  padding: .05em .08em .12em 0;
  overflow: hidden;
}

.hero-title-line { display: block; will-change: transform; }
.hero-title-accent {
  color: var(--accent-light);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.075em;
}

.js .hero-title-line { transform: translateY(118%); }
.js body.is-ready .hero-title-line { animation: titleRise .95s var(--ease) forwards; }
.js body.is-ready .hero-title-mask:nth-child(2) .hero-title-line { animation-delay: .13s; }

@keyframes titleRise { to { transform: translateY(0); } }

.hero-dynamic .hero-lead {
  margin-top: 27px;
  color: rgba(255, 255, 255, .64);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.95;
}
.hero-dynamic .hero-lead strong { color: #fff; font-weight: 700; }

.hero-description {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 1.9;
}

.hero-dynamic .hero-buttons { margin-top: 32px; }
.hero-dynamic .button-accent { background: var(--accent-hot); box-shadow: 0 18px 44px rgba(239, 173, 98, .22); }

.hero-meta {
  display: flex;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.43);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .19em;
}
.hero-meta i { width: 28px; height: 1px; background: rgba(255,255,255,.2); }

.hero-canvas {
  position: relative;
  min-height: 655px;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.hero-canvas-label {
  position: absolute;
  top: 20%;
  right: -11px;
  z-index: 9;
  color: rgba(255,255,255,.48);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
}

.hero-giant-number {
  position: absolute;
  top: -8%;
  right: -1%;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.1);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(190px, 19vw, 310px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.11em;
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  z-index: 2;
  margin: 0;
  background: #12283b;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 42px 100px rgba(0,0,0,.36);
  overflow: hidden;
  transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) rotate(var(--base-rotate, 0deg));
  transform-origin: center;
  transition: transform .55s var(--ease), box-shadow .45s var(--ease);
  will-change: transform;
}

.hero-canvas.is-interacting .hero-scene,
.hero-canvas.is-interacting .hero-floating-callout,
.hero-canvas.is-interacting .hero-orbit { transition-duration: .16s; transition-timing-function: ease-out; }

.hero-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,13,22,.82), rgba(4,13,22,.04) 58%);
  content: "";
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s ease;
}
.hero-scene:hover img { transform: scale(1.055); }

.hero-scene-main {
  top: 3%;
  right: 3%;
  width: 70%;
  height: 79%;
  --base-rotate: 2.2deg;
  border-radius: 34px 120px 34px 34px;
  clip-path: polygon(8% 0, 100% 0, 100% 87%, 90% 100%, 0 100%, 0 12%);
}
.hero-scene-main img { object-position: center 55%; }
.hero-scene-main figcaption {
  position: absolute;
  right: 30px;
  bottom: 29px;
  left: 34px;
  z-index: 3;
  color: rgba(255,255,255,.76);
  font-size: 10px;
}
.hero-scene-main figcaption span { display: block; margin-bottom: 5px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .22em; }

.hero-scene-store {
  top: 11%;
  left: 0;
  z-index: 5;
  width: 39%;
  height: 32%;
  --base-rotate: -6deg;
  border-radius: 26px 26px 62px 26px;
}

.hero-scene-space {
  right: 0;
  bottom: 1%;
  z-index: 5;
  width: 42%;
  height: 31%;
  --base-rotate: 5deg;
  border-radius: 58px 24px 24px 24px;
}

.hero-scene-store figcaption,
.hero-scene-space figcaption {
  display: flex;
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  z-index: 3;
  min-height: 49px;
  padding: 9px 12px;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(5,15,25,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 13px;
  backdrop-filter: blur(13px);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-scene-store figcaption svg,
.hero-scene-space figcaption svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--accent-light); }
.hero-scene-store figcaption span,
.hero-scene-space figcaption span { display: block; }
.hero-scene-store figcaption small,
.hero-scene-space figcaption small { display: block; margin-bottom: 2px; color: rgba(255,255,255,.48); font-family: Arial, sans-serif; font-size: 6px; letter-spacing: .14em; }

.hero-floating-callout {
  display: flex;
  position: absolute;
  bottom: 11%;
  left: 5%;
  z-index: 8;
  min-width: 265px;
  min-height: 76px;
  padding: 14px 17px;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  background: rgba(239,173,98,.96);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 20px 20px 48px 20px;
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
  transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) rotate(-3deg);
  transition: transform .55s var(--ease), background .3s ease;
}
.hero-floating-callout:hover { background: var(--accent-light); }
.hero-floating-icon { display: grid; width: 43px; height: 43px; flex: 0 0 43px; place-items: center; background: rgba(255,255,255,.36); border-radius: 14px; }
.hero-floating-icon svg { width: 23px; height: 23px; }
.hero-floating-callout > span:nth-child(2) { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.hero-floating-callout small { font-size: 8px; font-weight: 700; opacity: .63; }
.hero-floating-callout strong { margin-top: 4px; font-size: 12px; white-space: nowrap; }
.hero-floating-arrow { width: 18px; height: 18px; margin-left: auto; }

.hero-orbit {
  display: grid;
  position: absolute;
  right: 36%;
  bottom: 10%;
  z-index: 9;
  width: 142px;
  height: 142px;
  place-items: center;
  color: var(--ink);
  background: var(--accent-hot);
  border: 7px solid rgba(6,18,31,.88);
  border-radius: 50%;
  box-shadow: 0 24px 62px rgba(0,0,0,.32);
  transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) rotate(-8deg);
  transition: transform .55s var(--ease);
}
.hero-orbit > svg { position: absolute; inset: 4px; width: calc(100% - 8px); height: calc(100% - 8px); animation: orbitSpin 16s linear infinite; }
.hero-orbit text { fill: var(--ink); stroke: none; font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 2.1px; }
.hero-orbit > div { display: flex; align-items: center; flex-direction: column; line-height: 1; }
.hero-orbit strong { font-family: Arial, sans-serif; font-size: 31px; letter-spacing: -.08em; }
.hero-orbit strong sup { font-size: 12px; vertical-align: top; }
.hero-orbit small { margin-top: 4px; font-family: Arial, sans-serif; font-size: 7px; font-weight: 800; letter-spacing: .18em; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-service-dock {
  display: grid;
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  z-index: 12;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1170px;
  color: #fff;
  background: rgba(7,18,30,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-service-dock a {
  display: grid;
  position: relative;
  min-height: 94px;
  padding: 17px 22px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,.13);
  transition: background .35s ease, color .35s ease;
  overflow: hidden;
}
.hero-service-dock a:last-child { border-right: 0; }
.hero-service-dock a::before { position: absolute; inset: auto 0 0; height: 3px; background: var(--accent-hot); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.hero-service-dock a:nth-child(3)::before { background: var(--mint); }
.hero-service-dock a:hover { background: rgba(255,255,255,.08); }
.hero-service-dock a:hover::before { transform: scaleX(1); }
.hero-service-dock a > svg { width: 19px; height: 19px; color: rgba(255,255,255,.48); transition: transform .35s var(--ease), color .35s ease; }
.hero-service-dock a:hover > svg { color: #fff; transform: translateX(5px); }
.hero-dock-number { color: var(--accent-light); font-family: Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.hero-dock-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.hero-dock-copy small { color: rgba(255,255,255,.38); font-family: Arial, sans-serif; font-size: 6px; font-weight: 700; letter-spacing: .15em; }
.hero-dock-copy strong { margin-top: 5px; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hero-dynamic .scroll-cue { right: 22px; bottom: 155px; left: auto; transform: none; }

/* ---------- Kinetic brand ribbon ---------- */

.brand-marquee {
  position: relative;
  z-index: 15;
  height: 72px;
  color: var(--ink);
  background: var(--accent-hot);
  border-bottom: 1px solid rgba(11,23,36,.13);
  overflow: hidden;
}
.brand-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 30px;
  animation: marqueeMove 28s linear infinite;
  will-change: transform;
}
.brand-marquee span { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 900; letter-spacing: .16em; white-space: nowrap; }
.brand-marquee i { display: block; width: 10px; height: 10px; flex: 0 0 10px; background: var(--ink); border-radius: 50%; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- Editorial story section ---------- */

.story-section {
  padding: 165px 0 130px;
  background:
    radial-gradient(circle at 9% 18%, rgba(239,173,98,.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  overflow: hidden;
}
.story-section::before {
  position: absolute;
  top: 9%;
  right: -4%;
  width: 38vw;
  height: 38vw;
  color: rgba(11,23,36,.025);
  border: 1px solid rgba(11,23,36,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(11,23,36,.012), 0 0 0 140px rgba(11,23,36,.008);
  content: "";
}

.story-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(540px, 1.08fr) minmax(430px, .92fr);
  gap: clamp(75px, 8vw, 130px);
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 710px;
  perspective: 1200px;
}

.story-photo {
  position: absolute;
  margin: 0;
  background: var(--cream-2);
  box-shadow: 0 35px 90px rgba(11,23,36,.17);
  overflow: hidden;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.story-photo:hover img { transform: scale(1.045); }
.story-photo-main {
  top: 0;
  left: 4%;
  width: 76%;
  height: 610px;
  border-radius: 32px 155px 32px 32px;
  transform: rotate(-2.4deg) translateY(var(--soft-shift, 0px));
}
.story-photo-main img { object-position: center; }
.story-photo-sub {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 43%;
  height: 305px;
  border: 8px solid #fff;
  border-radius: 90px 26px 26px 26px;
  transform: rotate(4.2deg) translateY(var(--soft-shift-sub, 0px));
}
.story-photo-sub img { object-position: center; }

.story-year {
  display: flex;
  position: absolute;
  top: 76px;
  right: 0;
  z-index: 4;
  align-items: flex-start;
  flex-direction: column;
  color: var(--ink);
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}
.story-year span { margin-left: 6px; color: var(--accent-deep); font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .28em; }
.story-year strong { font-family: Arial, sans-serif; font-size: 76px; line-height: .9; letter-spacing: -.08em; }

.story-caption {
  position: absolute;
  bottom: 20px;
  left: 1%;
  z-index: 5;
  max-width: 315px;
  margin: 0;
  padding-left: 49px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}
.story-caption::before { position: absolute; top: 8px; left: 0; width: 36px; height: 1px; background: var(--accent-deep); content: ""; }
.story-caption span { display: block; color: var(--accent-deep); font-family: Arial, sans-serif; font-size: 7px; font-weight: 800; letter-spacing: .18em; }

.story-copy { position: relative; padding-right: clamp(0px, 2vw, 26px); }
.story-copy h2 {
  margin: 0 0 35px;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: -.065em;
}
.story-copy h2 em { color: var(--accent-deep); font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-style: normal; font-weight: 600; }
.story-copy > p:not(.section-kicker) { margin: 0; color: var(--muted); font-size: 14px; line-height: 2.05; }
.story-copy .story-lead { margin-bottom: 22px !important; color: var(--text) !important; font-size: 17px !important; font-weight: 650; }

.story-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line);
}
.story-principles > div { min-height: 145px; padding: 23px 16px 0; border-left: 1px solid var(--line); }
.story-principles > div:first-child { padding-left: 0; border-left: 0; }
.story-principles span { display: block; margin-bottom: 10px; color: var(--accent-deep); font-family: Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.story-principles strong { display: block; color: var(--ink); font-size: 18px; }
.story-principles p { margin: 8px 0 0; color: var(--muted); font-size: 10px; line-height: 1.7; }

.story-stat-band {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(340px, 1.65fr) repeat(3, minmax(145px, .55fr));
  margin-top: 115px;
  color: #fff;
  background: var(--ink);
  border-radius: 36px 36px 100px 36px;
  box-shadow: 0 35px 90px rgba(11,23,36,.2);
  overflow: hidden;
}
.story-stat-band::before { position: absolute; right: -120px; bottom: -180px; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.018); content: ""; }
.story-stat-band > p {
  display: flex;
  position: relative;
  z-index: 1;
  min-height: 170px;
  margin: 0;
  padding: 42px 48px;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.55;
}
.story-stat-band > p span { display: block; margin-bottom: 9px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .22em; }
.story-stat {
  display: flex;
  position: relative;
  z-index: 1;
  min-height: 170px;
  padding: 33px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.story-stat strong { color: var(--accent-light); font-family: Arial, sans-serif; font-size: 48px; line-height: 1; letter-spacing: -.07em; }
.story-stat strong sup { font-size: 18px; vertical-align: top; }
.story-stat small { margin-top: 12px; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.55; }

/* ---------- Asymmetric business showcase ---------- */

.business-editorial {
  padding: 150px 0 205px;
  background:
    linear-gradient(105deg, transparent 0 72%, rgba(11,23,36,.025) 72% 73%, transparent 73%),
    var(--cream);
  overflow: hidden;
}
.business-editorial::before { top: -150px; right: -150px; width: 520px; height: 520px; border-color: rgba(11,23,36,.06); box-shadow: 0 0 0 80px rgba(11,23,36,.015); }
.business-editorial .section-heading-row { margin-bottom: 70px; }
.business-heading-copy { align-self: end; }
.business-heading-copy > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 2; }
.business-heading-copy > span { display: flex; margin-top: 22px; align-items: center; gap: 12px; color: var(--accent-deep); font-family: Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.business-heading-copy > span::before { width: 42px; height: 1px; background: currentColor; content: ""; }

.business-showcase {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(330px, 1fr));
  min-height: 760px;
  gap: 22px;
}

.business-panel {
  position: relative;
  min-width: 0;
  background: var(--ink);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(11,23,36,.13);
  overflow: hidden;
}
.business-panel-store { grid-column: 1 / 8; grid-row: 1 / 3; border-radius: 36px 125px 36px 36px; }
.business-panel-help { grid-column: 8 / 13; grid-row: 1; border-radius: 36px 36px 36px 90px; }
.business-panel-space { grid-column: 8 / 13; grid-row: 2; border-radius: 90px 36px 36px 36px; }

.business-panel > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: #fff;
  border-radius: inherit;
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s ease-out, box-shadow .4s var(--ease);
  will-change: transform;
}
.business-panel-media { position: absolute; inset: 0; }
.business-panel-media::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,14,24,.94) 0%, rgba(5,14,24,.58) 44%, rgba(5,14,24,.08) 76%), linear-gradient(90deg, rgba(5,14,24,.42), transparent 55%); content: ""; transition: opacity .45s ease; }
.business-panel-help .business-panel-media::after { background: linear-gradient(0deg, rgba(36,18,10,.94), rgba(36,18,10,.42) 63%, rgba(36,18,10,.05)); }
.business-panel-space .business-panel-media::after { background: linear-gradient(0deg, rgba(5,25,24,.96), rgba(5,25,24,.38) 66%, rgba(5,25,24,.05)); }
.business-panel-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s ease; }
.business-panel-store .business-panel-media img { object-position: center; }
.business-panel-help .business-panel-media img { object-position: center 44%; }
.business-panel-space .business-panel-media img { object-position: center 58%; }
.business-panel:hover .business-panel-media img { transform: scale(1.07) rotate(.6deg); }
.business-panel:hover .business-panel-media::after { opacity: .88; }

.business-panel-index {
  position: absolute;
  top: 25px;
  right: 28px;
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.58);
  font-family: Arial, sans-serif;
  font-size: 78px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  transition: transform .5s var(--ease), color .35s ease;
}
.business-panel:hover .business-panel-index { color: rgba(255,255,255,.13); transform: translate3d(-6px, 6px, 0); }

.business-panel-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 48px 50px;
  transform: translateZ(34px);
}
.business-panel-help .business-panel-copy,
.business-panel-space .business-panel-copy { padding: 31px 34px; }
.business-panel-en { margin: 0 0 11px; color: var(--accent-light); font-family: Arial, sans-serif; font-size: 8px; font-weight: 800; letter-spacing: .21em; }
.business-panel-space .business-panel-en { color: #8ed4bb; }
.business-panel-copy h3 { margin: 0; font-size: clamp(38px, 4vw, 60px); line-height: 1.28; letter-spacing: -.055em; }
.business-panel-help .business-panel-copy h3,
.business-panel-space .business-panel-copy h3 { font-size: clamp(25px, 2.7vw, 37px); line-height: 1.33; }
.business-panel-copy > p:not(.business-panel-en) { max-width: 560px; margin: 17px 0 0; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.85; }
.business-panel-help .business-panel-copy > p:not(.business-panel-en),
.business-panel-space .business-panel-copy > p:not(.business-panel-en) { max-width: 455px; margin-top: 10px; font-size: 10px; }
.business-panel-copy ul { display: flex; margin: 20px 0 0; padding: 0; flex-wrap: wrap; gap: 7px; list-style: none; }
.business-panel-copy li { padding: 6px 10px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; backdrop-filter: blur(8px); font-size: 8px; font-weight: 700; }
.business-panel-help .business-panel-copy ul,
.business-panel-space .business-panel-copy ul { margin-top: 13px; }
.business-panel-cta { display: inline-flex; margin-top: 25px; align-items: center; gap: 11px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .05em; }
.business-panel-help .business-panel-cta,
.business-panel-space .business-panel-cta { margin-top: 16px; font-size: 9px; }
.business-panel-cta svg { width: 19px; height: 19px; transition: transform .35s var(--ease); }
.business-panel:hover .business-panel-cta svg { transform: translateX(7px); }

.business-footer-line {
  display: flex;
  margin-top: 45px;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}
.business-footer-line i { height: 1px; flex: 1; background: var(--line); }
.business-footer-line strong { color: var(--accent-deep); }

/* ---------- More organic treatment for the lower page ---------- */

.handyman {
  z-index: 3;
  margin-top: -54px;
  padding-top: 190px;
  border-radius: 76px 76px 0 0;
  box-shadow: 0 -30px 80px rgba(11,23,36,.12);
}
.handyman > .container { position: relative; }
.handyman > .container::before {
  position: absolute;
  top: -112px;
  right: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.065);
  content: "OTASUKE";
  font-family: Arial, sans-serif;
  font-size: clamp(90px, 12vw, 170px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.service-grid { margin-top: 78px; gap: 16px; background: transparent; border: 0; }
.service-card { min-height: 285px; border: 1px solid rgba(255,255,255,.12); border-radius: 25px; background: rgba(255,255,255,.035); }
.service-card:nth-child(2),
.service-card:nth-child(5) { margin-top: 28px; }
.service-card:hover { background: var(--accent-hot); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.handyman-feature { border-radius: 36px 110px 36px 36px; }
.store-image-main { transform: rotate(-1.4deg); }
.space-card { border-radius: 40px 120px 40px 40px; }
.pet-card { border-radius: 90px 36px 36px 36px; }

/* ---------- Responsive redesign ---------- */

@media (max-width: 1280px) {
  .hero.hero-dynamic { min-height: 900px; }
  .hero-dynamic .hero-inner { grid-template-columns: minmax(420px, .84fr) minmax(530px, 1.16fr); gap: 38px; }
  .hero-dynamic h1 { font-size: clamp(70px, 7.4vw, 103px); }
  .hero-canvas { min-height: 600px; }
  .hero-orbit { right: 34%; width: 126px; height: 126px; }
  .hero-floating-callout { min-width: 235px; }
  .story-grid { grid-template-columns: minmax(470px, 1fr) minmax(390px, .9fr); gap: 70px; }
  .story-visual { min-height: 650px; }
  .story-photo-main { height: 560px; }
  .business-showcase { min-height: 710px; grid-template-rows: repeat(2, minmax(310px, 1fr)); }
}

@media (max-width: 1080px) {
  .hero.hero-dynamic {
    height: auto;
    min-height: 0;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 82px;
  }
  .hero-dynamic .hero-inner { grid-template-columns: 1fr; height: auto; gap: 58px; }
  .hero-dynamic .hero-copy { max-width: 750px; }
  .hero-dynamic h1 { font-size: clamp(76px, 10vw, 108px); }
  .hero-canvas { width: min(830px, 100%); min-height: 650px; margin-inline: auto; }
  .hero-service-dock { position: relative; bottom: auto; margin-top: 58px; }
  .hero-dynamic .scroll-cue { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 78px; }
  .story-visual { width: min(760px, 100%); margin-inline: auto; }
  .story-copy { max-width: 760px; }
  .story-stat-band { grid-template-columns: 1.35fr repeat(3, .55fr); }
  .story-stat-band > p { padding-inline: 35px; font-size: 21px; }
  .business-showcase { grid-template-rows: minmax(520px, 1.2fr) minmax(390px, .9fr); min-height: 950px; }
  .business-panel-store { grid-column: 1 / 13; grid-row: 1; }
  .business-panel-help { grid-column: 1 / 7; grid-row: 2; }
  .business-panel-space { grid-column: 7 / 13; grid-row: 2; }
  .business-panel-store .business-panel-copy h3 { font-size: 50px; }
  .business-panel-help .business-panel-copy,
  .business-panel-space .business-panel-copy { padding: 30px; }
}

@media (max-width: 760px) {
  .hero.hero-dynamic { padding-top: calc(var(--header-h) + 45px); padding-bottom: 70px; }
  .hero-dynamic::before { background-size: 56px 56px, 56px 56px, auto; }
  .hero-dynamic .hero-copy { padding: 0; }
  .hero-dynamic h1 { font-size: clamp(58px, 16vw, 78px); line-height: .94; }
  .hero-dynamic .hero-lead { margin-top: 22px; font-size: 14px; }
  .hero-description { font-size: 11px; }
  .hero-dynamic .hero-buttons .button { width: 100%; }
  .hero-meta { margin-top: 28px; gap: 9px; }
  .hero-meta i { width: 18px; }
  .hero-canvas { min-height: 510px; }
  .hero-canvas-label { display: none; }
  .hero-giant-number { top: -3%; font-size: 165px; }
  .hero-scene-main { right: 1%; width: 77%; height: 75%; border-radius: 25px 80px 25px 25px; }
  .hero-scene-store { top: 10%; width: 42%; height: 29%; border-radius: 19px 19px 45px 19px; }
  .hero-scene-space { right: 0; width: 45%; height: 29%; border-radius: 45px 18px 18px 18px; }
  .hero-scene-store figcaption,
  .hero-scene-space figcaption { right: 7px; bottom: 7px; left: 7px; min-height: 40px; padding: 7px 8px; font-size: 8px; }
  .hero-scene-store figcaption svg,
  .hero-scene-space figcaption svg { width: 15px; height: 15px; flex-basis: 15px; }
  .hero-floating-callout { bottom: 12%; left: 1%; min-width: 208px; min-height: 62px; padding: 10px 12px; border-radius: 16px 16px 35px 16px; }
  .hero-floating-icon { width: 36px; height: 36px; flex-basis: 36px; border-radius: 11px; }
  .hero-floating-icon svg { width: 19px; height: 19px; }
  .hero-floating-callout strong { font-size: 10px; }
  .hero-orbit { right: 30%; bottom: 7%; width: 104px; height: 104px; border-width: 6px; }
  .hero-orbit strong { font-size: 24px; }
  .hero-service-dock { display: flex; width: calc(100% - 32px); margin-top: 44px; margin-inline: auto; overflow-x: auto; scroll-snap-type: x mandatory; border-radius: 20px; scrollbar-width: none; }
  .hero-service-dock::-webkit-scrollbar { display: none; }
  .hero-service-dock a { min-width: 275px; min-height: 84px; flex: 0 0 82%; scroll-snap-align: start; }
  .brand-marquee { height: 58px; }
  .brand-marquee-track { gap: 22px; }
  .brand-marquee span { font-size: 11px; }
  .brand-marquee i { width: 7px; height: 7px; flex-basis: 7px; }

  .story-section { padding: 100px 0 92px; }
  .story-grid { gap: 60px; }
  .story-visual { min-height: 535px; }
  .story-photo-main { left: 0; width: 82%; height: 445px; border-radius: 24px 100px 24px 24px; }
  .story-photo-sub { width: 47%; height: 215px; border-width: 6px; border-radius: 60px 20px 20px 20px; }
  .story-year { top: 55px; right: -4px; }
  .story-year strong { font-size: 58px; }
  .story-caption { bottom: 3px; left: 0; max-width: 240px; padding-left: 37px; font-size: 9px; }
  .story-caption::before { width: 27px; }
  .story-copy h2 { font-size: clamp(45px, 12vw, 62px); }
  .story-copy .story-lead { font-size: 15px !important; }
  .story-principles { grid-template-columns: 1fr; }
  .story-principles > div { display: grid; min-height: 0; padding: 19px 0; grid-template-columns: 42px 70px 1fr; align-items: start; border-left: 0; border-bottom: 1px solid var(--line); }
  .story-principles > div:last-child { border-bottom: 0; }
  .story-principles span { margin: 4px 0 0; }
  .story-principles p { margin: 2px 0 0; }
  .story-stat-band { grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-radius: 28px 28px 70px 28px; }
  .story-stat-band > p { grid-column: 1 / -1; min-height: 130px; padding: 30px; font-size: 20px; }
  .story-stat { min-height: 130px; padding: 24px 10px; border-top: 1px solid rgba(255,255,255,.12); }
  .story-stat:first-of-type { border-left: 0; }
  .story-stat strong { font-size: 38px; }
  .story-stat small { font-size: 8px; }

  .business-editorial { padding: 100px 0 155px; }
  .business-editorial .section-heading-row { margin-bottom: 45px; }
  .business-heading-copy > span { display: none; }
  .business-showcase { display: grid; grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; gap: 18px; }
  .business-panel-store,
  .business-panel-help,
  .business-panel-space { grid-column: auto; grid-row: auto; min-height: 500px; border-radius: 28px 75px 28px 28px; }
  .business-panel-help { min-height: 440px; border-radius: 28px 28px 28px 70px; }
  .business-panel-space { min-height: 440px; border-radius: 70px 28px 28px 28px; }
  .business-panel-copy,
  .business-panel-help .business-panel-copy,
  .business-panel-space .business-panel-copy { padding: 30px 26px; }
  .business-panel-copy h3,
  .business-panel-store .business-panel-copy h3,
  .business-panel-help .business-panel-copy h3,
  .business-panel-space .business-panel-copy h3 { font-size: clamp(29px, 8vw, 40px); }
  .business-panel-copy > p:not(.business-panel-en),
  .business-panel-help .business-panel-copy > p:not(.business-panel-en),
  .business-panel-space .business-panel-copy > p:not(.business-panel-en) { font-size: 10px; }
  .business-panel-index { top: 20px; right: 20px; font-size: 60px; }
  .business-footer-line { margin-top: 32px; gap: 10px; font-size: 7px; }

  .handyman { margin-top: -38px; padding-top: 135px; border-radius: 48px 48px 0 0; }
  .handyman > .container::before { top: -70px; font-size: 76px; }
  .service-grid { gap: 12px; }
  .service-card:nth-child(2),
  .service-card:nth-child(5) { margin-top: 0; }
  .handyman-feature { border-radius: 28px 70px 28px 28px; }
  .space-card { border-radius: 30px 80px 30px 30px; }
  .pet-card { border-radius: 65px 28px 28px 28px; }
}

@media (max-width: 480px) {
  .hero.hero-dynamic { padding-top: calc(var(--header-h) + 36px); }
  .hero-dynamic .eyebrow { font-size: 8px; letter-spacing: .15em; }
  .hero-dynamic h1 { font-size: clamp(52px, 15.5vw, 66px); }
  .hero-description { line-height: 1.75; }
  .hero-meta { font-size: 6px; letter-spacing: .13em; }
  .hero-canvas { min-height: 420px; }
  .hero-giant-number { font-size: 135px; }
  .hero-scene-main { width: 80%; height: 72%; }
  .hero-scene-store { width: 45%; height: 28%; }
  .hero-scene-space { width: 47%; height: 27%; }
  .hero-scene-main figcaption { right: 16px; bottom: 16px; left: 18px; font-size: 8px; }
  .hero-orbit { right: 27%; bottom: 5%; width: 88px; height: 88px; }
  .hero-orbit text { font-size: 9px; }
  .hero-orbit strong { font-size: 20px; }
  .hero-floating-callout { bottom: 10%; min-width: 185px; }
  .hero-floating-callout small { font-size: 6px; }
  .hero-floating-callout strong { font-size: 9px; }
  .hero-service-dock a { min-width: 246px; flex-basis: 88%; padding-inline: 16px; }

  .story-visual { min-height: 430px; }
  .story-photo-main { width: 85%; height: 350px; }
  .story-photo-sub { width: 49%; height: 170px; }
  .story-year { top: 42px; }
  .story-year strong { font-size: 45px; }
  .story-caption { max-width: 205px; font-size: 8px; }
  .story-copy h2 { margin-bottom: 26px; }
  .story-stat-band > p { font-size: 17px; }
  .story-stat strong { font-size: 32px; }

  .business-panel-store { min-height: 470px; }
  .business-panel-help,
  .business-panel-space { min-height: 420px; }
  .business-panel-copy ul { margin-top: 13px; }
  .business-panel-cta { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-dynamic .hero-bg,
  .hero-glow,
  .hero-orbit > svg,
  .brand-marquee-track { animation: none !important; }
  .js .hero-title-line { transform: none; }
  .hero-scene,
  .hero-floating-callout,
  .hero-orbit,
  .business-panel > a { transform: none !important; }
}

/* =========================================================
   Dynamic redesign / Local Motion edition
   Top page: cinematic hero, layered photography, moving type,
   sticky business stories and responsive interaction.
   ========================================================= */

.design-v2 {
  --ink: #071522;
  --ink-2: #0d2232;
  --ink-3: #173247;
  --cream: #f6f0e7;
  --cream-2: #eee5d8;
  --accent: #f0a34d;
  --accent-light: #ffd18f;
  --accent-deep: #b65f16;
  --green: #4fa984;
  --electric: #78d7b3;
  --coral: #ee6d4d;
  --shadow-xl: 0 55px 130px rgba(0, 10, 20, .32);
  background: #fff;
}

.design-v2 .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.design-v2 .section-kicker::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.design-v2 .site-header {
  height: 88px;
}

.design-v2 .site-header.is-scrolled {
  height: 72px;
}

.design-v2 .site-header:not(.is-scrolled) .header-inner {
  width: calc(100% - 86px);
}

.design-v2 .brand-mark {
  border-radius: 50% 50% 50% 14px;
  transform: rotate(-4deg);
}

.design-v2 .brand-mark > span,
.design-v2 .brand-copy {
  transform: rotate(4deg);
}

.design-v2 .global-nav {
  gap: clamp(18px, 2vw, 34px);
}

.design-v2 .global-nav a::after {
  height: 3px;
  border-radius: 99px;
}

/* ---------- Dynamic hero ---------- */

.design-v2 .hero-v2 {
  display: block;
  position: relative;
  min-height: 900px;
  height: max(900px, 100svh);
  padding: 140px 0 150px;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.design-v2 .hero-v2::before,
.design-v2 .hero-v2::after {
  content: none;
}

.hero-v2-background,
.hero-v2-background img,
.hero-v2-background-wash,
.hero-v2-grid {
  position: absolute;
  inset: 0;
}

.hero-v2-background {
  z-index: -4;
  overflow: hidden;
}

.hero-v2-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.84) contrast(1.08);
  transform: scale(1.045);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-v2-background-wash {
  background:
    linear-gradient(90deg, rgba(3, 12, 21, .98) 0%, rgba(4, 15, 25, .93) 39%, rgba(5, 18, 30, .72) 66%, rgba(5, 17, 28, .9) 100%),
    linear-gradient(180deg, rgba(3, 12, 21, .25), rgba(3, 12, 21, .22) 50%, rgba(3, 12, 21, .9));
}

.hero-v2-grid {
  z-index: 1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .65) 58%, transparent 90%);
}

.hero-v2-background::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  content: "";
  pointer-events: none;
}

.hero-v2-glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.hero-v2-glow-one {
  top: 4%;
  left: 36%;
  width: 420px;
  height: 420px;
  background: rgba(240, 163, 77, .21);
  animation: glowDrift 10s ease-in-out infinite alternate;
}

.hero-v2-glow-two {
  right: -7%;
  bottom: -8%;
  width: 520px;
  height: 520px;
  background: rgba(79, 169, 132, .17);
  animation: glowDrift 13s ease-in-out -3s infinite alternate-reverse;
}

.hero-v2-sideword {
  position: absolute;
  top: 50%;
  left: 22px;
  z-index: 3;
  margin: 0;
  color: rgba(255, 255, 255, .37);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .34em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.hero-v2-inner {
  display: grid;
  position: relative;
  z-index: 3;
  grid-template-columns: minmax(560px, 1.05fr) minmax(500px, .95fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  min-height: 620px;
}

.hero-v2-copy {
  position: relative;
  z-index: 4;
  padding-left: clamp(0px, 1.4vw, 22px);
}

.hero-v2-kicker {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .62);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .25em;
}

.hero-v2-kicker span {
  display: inline-flex;
  min-height: 29px;
  padding: 6px 11px;
  align-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
  letter-spacing: .13em;
}

.design-v2 .hero-v2 h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: normal;
}

.hero-v2-title-line {
  display: flex;
  width: fit-content;
  align-items: flex-end;
  gap: 17px;
  white-space: nowrap;
}

.hero-v2-title-line + .hero-v2-title-line {
  margin-top: 4px;
}

.hero-v2-title-line-shift {
  margin-left: clamp(25px, 4vw, 66px);
}

.hero-v2-title-line b {
  display: inline-block;
  color: #fff;
  font-size: clamp(67px, 7.2vw, 116px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.095em;
  text-shadow: 0 12px 45px rgba(0, 0, 0, .2);
}

.hero-v2-title-line-accent b {
  color: var(--accent-light);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 700;
}

.hero-v2-title-line i {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, .36);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.hero-v2-punch {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.hero-v2-punch em {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-style: normal;
  font-weight: 600;
}

.hero-v2-punch em::after {
  position: absolute;
  right: -4px;
  bottom: 1px;
  left: -4px;
  z-index: -1;
  height: 10px;
  background: rgba(240, 163, 77, .48);
  border-radius: 99px;
  content: "";
  transform: rotate(-1deg);
}

.hero-v2-lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .63);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .05em;
}

.hero-v2-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.hero-v2-primary {
  min-width: 220px;
  box-shadow: 0 18px 45px rgba(240, 163, 77, .26);
}

.hero-v2-text-link {
  display: inline-flex;
  position: relative;
  padding: 10px 0;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-v2-text-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .3);
  content: "";
  transform-origin: left;
  transition: transform .35s var(--ease), background .35s ease;
}

.hero-v2-text-link svg {
  width: 19px;
  height: 19px;
  transition: transform .35s var(--ease);
}

.hero-v2-text-link:hover::after {
  background: var(--accent-light);
  transform: scaleX(.55);
}

.hero-v2-text-link:hover svg {
  transform: translateX(6px);
}

.hero-v2-collage {
  position: relative;
  min-height: 625px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}

.js .hero-v2-collage.reveal {
  transform: translate3d(0, 35px, 0) scale(.97);
}

.js .hero-v2-collage.reveal.is-visible {
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

.hero-v2-orbit {
  position: absolute;
  top: 5%;
  left: 4%;
  z-index: -1;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  animation: orbitSpin 28s linear infinite;
}

.hero-v2-orbit::before,
.hero-v2-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.hero-v2-orbit::before { inset: 10%; }
.hero-v2-orbit::after { inset: 24%; }

.hero-v2-orbit span,
.hero-v2-orbit i {
  position: absolute;
  border-radius: 50%;
}

.hero-v2-orbit span {
  top: 8%;
  left: 16%;
  width: 13px;
  height: 13px;
  background: var(--accent);
  box-shadow: 0 0 25px rgba(240, 163, 77, .75);
}

.hero-v2-orbit i {
  right: 4%;
  bottom: 27%;
  width: 8px;
  height: 8px;
  background: var(--electric);
  box-shadow: 0 0 22px rgba(120, 215, 179, .75);
}

.hero-v2-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  background: #112638;
  border: 1px solid rgba(255, 255, 255, .19);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  will-change: transform;
  transition: box-shadow .55s var(--ease), filter .55s var(--ease);
}

.hero-v2-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 15, 25, .88));
  content: "";
  pointer-events: none;
}

.hero-v2-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .7s ease;
}

.hero-v2-card:hover img {
  transform: scale(1.065);
  filter: saturate(1.12);
}

.hero-v2-card figcaption {
  display: grid;
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 3;
  grid-template-columns: auto 1fr;
  gap: 2px 13px;
  align-items: end;
  color: #fff;
}

.hero-v2-card figcaption span {
  grid-row: 1 / 3;
  color: var(--accent-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.06em;
}

.hero-v2-card figcaption strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.15;
  letter-spacing: .13em;
}

.hero-v2-card figcaption small {
  color: rgba(255, 255, 255, .63);
  font-size: 9px;
  line-height: 1.45;
}

.hero-v2-card-main {
  top: 14%;
  left: 15%;
  width: 70%;
  height: 61%;
  border-radius: 38px 120px 38px 38px;
  transform: translate3d(0, var(--parallax-y, 0px), 45px) rotate(2.5deg);
}

.hero-v2-card-main img { object-position: center 43%; }

.hero-v2-card-store {
  top: 1%;
  left: -4%;
  z-index: 3;
  width: 43%;
  height: 34%;
  border-radius: 26px 26px 80px 26px;
  transform: translate3d(0, var(--parallax-y, 0px), 80px) rotate(-6deg);
}

.hero-v2-card-store figcaption,
.hero-v2-card-space figcaption {
  right: 13px;
  bottom: 13px;
  left: 13px;
  grid-template-columns: auto 1fr;
  gap: 7px;
  padding: 10px 12px;
  align-items: center;
  background: rgba(4, 15, 25, .73);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  backdrop-filter: blur(11px);
}

.hero-v2-card-store figcaption span,
.hero-v2-card-space figcaption span {
  grid-row: auto;
  font-size: 18px;
}

.hero-v2-card-store figcaption strong,
.hero-v2-card-space figcaption strong {
  font-size: 8px;
}

.hero-v2-card-space {
  right: -2%;
  bottom: 2%;
  z-index: 4;
  width: 45%;
  height: 36%;
  border-radius: 78px 26px 26px 26px;
  transform: translate3d(0, var(--parallax-y, 0px), 90px) rotate(5deg);
}

.hero-v2-card-space img { object-position: center 60%; }

.hero-v2-century {
  display: flex;
  position: absolute;
  top: 3%;
  right: 1%;
  z-index: 6;
  width: 145px;
  height: 145px;
  padding: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--accent);
  border: 9px solid rgba(7, 21, 34, .86);
  border-radius: 50%;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .35);
  transform: rotate(9deg);
  animation: centuryFloat 4.8s ease-in-out infinite;
}

.hero-v2-century::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(7, 21, 34, .4);
  border-radius: 50%;
  content: "";
}

.hero-v2-century span,
.hero-v2-century small {
  position: relative;
  z-index: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .15em;
  text-align: center;
}

.hero-v2-century strong {
  position: relative;
  z-index: 1;
  margin: 3px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.07em;
}

.hero-v2-bottom {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 5;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.hero-v2-business-nav {
  display: grid;
  width: min(740px, 64vw);
  grid-template-columns: repeat(3, 1fr);
  background: rgba(7, 21, 34, .67);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-v2-business-nav a {
  display: grid;
  position: relative;
  min-height: 82px;
  padding: 16px 20px 14px 54px;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  transition: color .3s ease, background .3s ease;
}

.hero-v2-business-nav a:last-child { border-right: 0; }

.hero-v2-business-nav a:hover {
  color: var(--ink);
  background: var(--accent);
}

.hero-v2-business-nav span {
  position: absolute;
  top: 19px;
  left: 18px;
  color: var(--accent-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.hero-v2-business-nav a:hover span { color: var(--ink); }

.hero-v2-business-nav strong {
  font-size: 14px;
  line-height: 1.35;
}

.hero-v2-business-nav small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-v2-business-nav a:hover small { color: rgba(7, 21, 34, .68); }

.hero-v2-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .48);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero-v2-scroll i {
  display: block;
  position: relative;
  width: 76px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  overflow: hidden;
}

.hero-v2-scroll i::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: var(--accent);
  content: "";
  animation: scrollHorizontal 2.4s ease-in-out infinite;
}

/* ---------- Moving brand strip ---------- */

.motion-marquee {
  position: relative;
  z-index: 10;
  color: var(--ink);
  background: var(--accent);
  border-top: 1px solid rgba(7, 21, 34, .16);
  border-bottom: 1px solid rgba(7, 21, 34, .16);
  overflow: hidden;
}

.motion-marquee-track {
  display: flex;
  width: max-content;
  min-height: 70px;
  align-items: center;
  animation: marqueeMove 28s linear infinite;
}

.motion-marquee-track span {
  padding: 0 28px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.motion-marquee-track i {
  display: block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: var(--ink);
  border-radius: 50% 50% 50% 2px;
  transform: rotate(45deg);
}

/* ---------- Editorial about section ---------- */

.about-v2 {
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}

.about-v2::before {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(7, 21, 34, .15) 15%, rgba(7, 21, 34, .15) 85%, transparent);
  content: "";
}

.about-v2-shape {
  position: absolute;
  border: 1px solid rgba(7, 21, 34, .08);
  border-radius: 50%;
  pointer-events: none;
}

.about-v2-shape-one {
  top: 6%;
  right: -13%;
  width: 520px;
  height: 520px;
  box-shadow: 0 0 0 80px rgba(7, 21, 34, .018), 0 0 0 160px rgba(7, 21, 34, .012);
}

.about-v2-shape-two {
  bottom: 2%;
  left: -9%;
  width: 320px;
  height: 320px;
  border-color: rgba(240, 163, 77, .22);
}

.about-v2-header {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1.68fr);
  gap: 45px;
  align-items: start;
  margin-bottom: 90px;
}

.about-v2-header .section-kicker {
  margin-top: 13px;
}

.about-v2-header h2 {
  max-width: 1040px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.07em;
}

.about-v2-header h2 span {
  color: var(--accent-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
}

.about-v2-layout {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.16fr) minmax(390px, .84fr);
  gap: clamp(65px, 8vw, 125px);
  align-items: center;
}

.about-v2-visual {
  position: relative;
  min-height: 690px;
}

.about-v2-photo {
  position: absolute;
  margin: 0;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: 0 34px 80px rgba(7, 21, 34, .18);
  overflow: hidden;
}

.about-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.about-v2-photo:hover img { transform: scale(1.055); }

.about-v2-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 15px 17px;
  color: #fff;
  background: rgba(7, 21, 34, .78);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  backdrop-filter: blur(12px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .12em;
}

.about-v2-photo figcaption small {
  color: rgba(255, 255, 255, .56);
  font-size: 8px;
}

.about-v2-photo-main {
  top: 0;
  left: 3%;
  z-index: 2;
  width: 68%;
  height: 79%;
  border-radius: 32px 130px 32px 32px;
  transform: perspective(1000px) rotateY(2deg) rotate(-3deg);
}

.about-v2-photo-sub {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 49%;
  height: 45%;
  border-radius: 95px 26px 26px 26px;
  transform: translateY(var(--parallax-y, 0px)) rotate(5deg);
}

.about-v2-photo-sub img { object-position: center; }

.about-v2-year {
  display: flex;
  position: absolute;
  top: 12%;
  right: 1%;
  z-index: 1;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(7, 21, 34, .34);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.about-v2-year i {
  display: block;
  width: 1px;
  height: 130px;
  background: linear-gradient(var(--accent), rgba(7, 21, 34, .12));
}

.about-v2-copy {
  position: relative;
  padding: 35px 0 15px;
}

.about-v2-copy > p {
  margin: 0 0 22px;
  color: #616a71;
  font-size: 14px;
  line-height: 2.05;
}

.about-v2-copy .about-v2-lead {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: -.025em;
}

.about-v2-copy blockquote {
  position: relative;
  margin: 48px 0 0;
  padding: 31px 0 31px 35px;
  border-left: 5px solid var(--accent);
}

.about-v2-copy blockquote::before {
  position: absolute;
  top: 0;
  left: 22px;
  color: rgba(240, 163, 77, .18);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: .8;
  content: "“";
}

.about-v2-copy blockquote small,
.about-v2-copy blockquote strong {
  display: block;
  position: relative;
  z-index: 1;
}

.about-v2-copy blockquote small {
  margin-bottom: 9px;
  color: var(--accent-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
}

.about-v2-copy blockquote strong {
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.035em;
}

.about-v2-metrics {
  display: grid;
  margin: 42px 0 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 21, 34, .15);
  border-bottom: 1px solid rgba(7, 21, 34, .15);
}

.about-v2-metrics > div {
  padding: 23px 15px 22px;
  border-right: 1px solid rgba(7, 21, 34, .15);
}

.about-v2-metrics > div:first-child { padding-left: 0; }
.about-v2-metrics > div:last-child { border-right: 0; }

.about-v2-metrics dt {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
}

.about-v2-metrics dt span {
  color: var(--accent-deep);
  font-size: 18px;
}

.about-v2-metrics dd {
  margin: 8px 0 0;
  color: #777f84;
  font-size: 9px;
  line-height: 1.5;
}

/* ---------- Sticky business stories ---------- */

.business-v2 {
  padding-top: 165px;
  padding-bottom: 180px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 7%, rgba(79, 169, 132, .13), transparent 24%),
    radial-gradient(circle at 15% 35%, rgba(240, 163, 77, .12), transparent 27%),
    var(--ink);
  overflow: clip;
}

.business-v2::before {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
  content: "";
}

.business-v2-sideword {
  position: absolute;
  top: 205px;
  right: 18px;
  margin: 0;
  color: rgba(255, 255, 255, .18);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .34em;
  writing-mode: vertical-rl;
}

.business-v2-heading {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.business-v2-heading .section-kicker { color: var(--accent-light); }

.business-v2-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(45px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.065em;
}

.business-v2-heading h2 span {
  color: var(--accent-light);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 600;
}

.business-v2-heading > p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .57);
  font-size: 13px;
  line-height: 2;
}

.business-v2-stack {
  position: relative;
  z-index: 2;
}

.business-v2-panel {
  display: grid;
  position: sticky;
  min-height: 590px;
  margin-bottom: 34px;
  grid-template-columns: minmax(390px, .78fr) minmax(0, 1.22fr);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 42px;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .34);
  overflow: hidden;
  transform-origin: center top;
  transition: box-shadow .5s var(--ease), filter .5s ease;
}

.business-v2-panel:nth-child(1) { top: 104px; z-index: 1; }
.business-v2-panel:nth-child(2) { top: 120px; z-index: 2; }
.business-v2-panel:nth-child(3) { top: 136px; z-index: 3; margin-bottom: 0; }

.business-v2-panel-store {
  color: var(--ink);
  background: #f6eadb;
}

.business-v2-panel-help {
  color: #fff;
  background: #17354a;
}

.business-v2-panel-space {
  color: var(--ink);
  background: #b9dfcc;
}

.business-v2-panel.is-active {
  box-shadow: 0 60px 130px rgba(0, 0, 0, .44);
}

.business-v2-copy {
  display: flex;
  position: relative;
  z-index: 2;
  padding: clamp(45px, 5vw, 76px);
  justify-content: center;
  flex-direction: column;
}

.business-v2-panel-help .business-v2-copy {
  grid-column: 2;
  grid-row: 1;
}

.business-v2-panel-help .business-v2-media {
  grid-column: 1;
  grid-row: 1;
}

.business-v2-copy::before {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  opacity: .32;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.business-v2-meta {
  display: flex;
  margin: 0 0 26px;
  align-items: center;
  gap: 14px;
  color: var(--accent-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .18em;
}

.business-v2-panel-help .business-v2-meta { color: var(--accent-light); }
.business-v2-panel-space .business-v2-meta { color: #175e48; }

.business-v2-meta span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 0;
}

.business-v2-panel-space .business-v2-meta span {
  color: #fff;
  background: #176b51;
}

.business-v2-copy h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(39px, 4.2vw, 62px);
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: -.065em;
}

.business-v2-copy h3 em {
  color: var(--accent-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-style: normal;
  font-weight: 600;
}

.business-v2-panel-help .business-v2-copy h3 em { color: var(--accent-light); }
.business-v2-panel-space .business-v2-copy h3 em { color: #176b51; }

.business-v2-copy > p:not(.business-v2-meta) {
  margin: 28px 0 0;
  color: rgba(7, 21, 34, .67);
  font-size: 13px;
  line-height: 2;
}

.business-v2-panel-help .business-v2-copy > p:not(.business-v2-meta) {
  color: rgba(255, 255, 255, .64);
}

.business-v2-copy ul {
  display: flex;
  margin: 27px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.business-v2-copy li {
  padding: 7px 11px;
  color: rgba(7, 21, 34, .72);
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(7, 21, 34, .1);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
}

.business-v2-panel-help .business-v2-copy li {
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.business-v2-link {
  display: inline-flex;
  position: relative;
  width: fit-content;
  margin-top: 34px;
  padding-bottom: 7px;
  align-items: center;
  gap: 13px;
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.business-v2-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.business-v2-link svg {
  width: 18px;
  height: 18px;
  transition: transform .35s var(--ease);
}

.business-v2-link:hover::after { transform: scaleX(.45); }
.business-v2-link:hover svg { transform: translateX(6px); }

.business-v2-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.business-v2-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 21, 34, .55));
  content: "";
}

.business-v2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .8s ease;
}

.business-v2-panel.is-active .business-v2-media img,
.business-v2-panel:hover .business-v2-media img {
  transform: scale(1.055);
}

.business-v2-panel-store .business-v2-media img { object-position: center; }
.business-v2-panel-help .business-v2-media img { object-position: center 43%; }
.business-v2-panel-space .business-v2-media img { object-position: center 60%; }

.business-v2-image-number {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 3;
  color: rgba(255, 255, 255, .9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(72px, 9vw, 142px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.09em;
  mix-blend-mode: overlay;
}

.business-v2-media p {
  position: absolute;
  right: 30px;
  bottom: 25px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

/* ---------- Existing lower sections: more movement and depth ---------- */

.design-v2 .handyman {
  padding-top: 175px;
  background:
    radial-gradient(circle at 85% 12%, rgba(240, 163, 77, .14), transparent 28%),
    #081a28;
}

.design-v2 .handyman::before {
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 42px;
  opacity: 1;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 12%, 63% 100%, 0 28%);
}

.design-v2 .handyman::after {
  top: 140px;
  right: -8%;
  width: 520px;
  height: 520px;
}

.design-v2 .service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  border: 0;
}

.design-v2 .service-card {
  min-height: 270px;
  padding: 37px 32px 31px;
  grid-column: span 4;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), color .35s ease, background .35s ease, border-color .35s ease, box-shadow .45s var(--ease);
}

.design-v2 .service-card:nth-child(1) { grid-column: span 5; }
.design-v2 .service-card:nth-child(2) { grid-column: span 3; }
.design-v2 .service-card:nth-child(3) { grid-column: span 4; }
.design-v2 .service-card:nth-child(4) { grid-column: span 4; }
.design-v2 .service-card:nth-child(5) { grid-column: span 5; }
.design-v2 .service-card:nth-child(6) { grid-column: span 3; }

.design-v2 .service-card:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  transform: translateY(-9px) rotate(-.6deg);
}

.design-v2 .service-card:nth-child(even):hover { transform: translateY(-9px) rotate(.6deg); }

.design-v2 .handyman-feature {
  margin-top: 110px;
  border-radius: 48px 48px 145px 48px;
  box-shadow: 0 35px 95px rgba(0, 0, 0, .24);
}

.design-v2 .handyman-feature-image {
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.design-v2 .store {
  padding-top: 170px;
  padding-bottom: 170px;
  background: #fff;
}

.design-v2 .store::after {
  position: absolute;
  top: 80px;
  left: -25px;
  color: rgba(7, 21, 34, .035);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(110px, 17vw, 250px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  content: "STORE";
  pointer-events: none;
}

.design-v2 .store-image-main {
  right: 4%;
  border-radius: 36px 170px 36px 36px;
  box-shadow: 0 45px 105px rgba(7, 21, 34, .22);
  transform: rotate(-2deg);
}

.design-v2 .store-badge {
  right: -2%;
  bottom: 80px;
  transform: rotate(4deg);
}

.design-v2 .store-list {
  gap: 10px;
  background: transparent;
  border: 0;
}

.design-v2 .store-list > div {
  background: var(--cream);
  border: 1px solid rgba(7, 21, 34, .09);
  border-radius: 18px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.design-v2 .store-list > div:hover {
  box-shadow: 0 18px 45px rgba(7, 21, 34, .1);
  transform: translateY(-5px);
}

.design-v2 .space {
  padding-top: 150px;
  padding-bottom: 150px;
  background:
    linear-gradient(135deg, rgba(120, 215, 179, .14), transparent 38%),
    var(--cream-2);
}

.design-v2 .space-card {
  border-radius: 44px 150px 44px 44px;
  box-shadow: 0 48px 110px rgba(7, 21, 34, .2);
}

.design-v2 .space-media {
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
}

.design-v2 .pet-card {
  border-radius: 120px 36px 36px 36px;
  box-shadow: 0 40px 95px rgba(7, 21, 34, .2);
}

.design-v2 .pet-image {
  clip-path: ellipse(78% 90% at 72% 50%);
}

.design-v2 .history {
  background:
    radial-gradient(circle at 4% 15%, rgba(240, 163, 77, .13), transparent 25%),
    var(--cream);
}

.design-v2 .timeline-year strong {
  color: var(--accent-deep);
  font-size: 42px;
}

.design-v2 .accordion-item {
  border-color: rgba(7, 21, 34, .13);
}

.design-v2 .contact {
  background:
    radial-gradient(circle at 12% 9%, rgba(240, 163, 77, .16), transparent 25%),
    radial-gradient(circle at 91% 90%, rgba(79, 169, 132, .16), transparent 26%),
    var(--ink);
}

.design-v2 .contact-form {
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, .28);
}

/* ---------- Entrance / motion ---------- */

html.js body:not(.is-ready) .hero-v2-kicker,
html.js body:not(.is-ready) .hero-v2-title-line,
html.js body:not(.is-ready) .hero-v2-punch,
html.js body:not(.is-ready) .hero-v2-lead,
html.js body:not(.is-ready) .hero-v2-actions,
html.js body:not(.is-ready) .hero-v2-bottom {
  opacity: 0;
  transform: translateY(25px);
}

html.js body.is-ready .hero-v2-kicker,
html.js body.is-ready .hero-v2-title-line,
html.js body.is-ready .hero-v2-punch,
html.js body.is-ready .hero-v2-lead,
html.js body.is-ready .hero-v2-actions,
html.js body.is-ready .hero-v2-bottom {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform 1s var(--ease);
}

html.js body.is-ready .hero-v2-title-line:nth-child(1) { transition-delay: .08s; }
html.js body.is-ready .hero-v2-title-line:nth-child(2) { transition-delay: .16s; }
html.js body.is-ready .hero-v2-title-line:nth-child(3) { transition-delay: .24s; }
html.js body.is-ready .hero-v2-punch { transition-delay: .34s; }
html.js body.is-ready .hero-v2-lead { transition-delay: .42s; }
html.js body.is-ready .hero-v2-actions { transition-delay: .49s; }
html.js body.is-ready .hero-v2-bottom { transition-delay: .6s; }

@keyframes heroKenBurns {
  0% { transform: scale(1.045) translate3d(0, 0, 0); }
  100% { transform: scale(1.11) translate3d(-1.2%, -1%, 0); }
}

@keyframes glowDrift {
  0% { transform: translate3d(-4%, -3%, 0) scale(.92); }
  100% { transform: translate3d(8%, 6%, 0) scale(1.12); }
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

@keyframes centuryFloat {
  0%, 100% { transform: translateY(0) rotate(9deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes scrollHorizontal {
  0% { transform: translateX(0); }
  55%, 100% { transform: translateX(200%); }
}

@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ---------- Dynamic responsive ---------- */

@media (max-width: 1260px) {
  .hero-v2-inner {
    grid-template-columns: minmax(500px, 1fr) minmax(440px, .9fr);
    gap: 25px;
  }

  .hero-v2-title-line b { font-size: clamp(66px, 7vw, 95px); }
  .hero-v2-collage { min-height: 580px; }
  .hero-v2-century { width: 126px; height: 126px; }

  .about-v2-layout { gap: 70px; }
  .about-v2-visual { min-height: 610px; }
  .business-v2-panel { min-height: 550px; grid-template-columns: minmax(350px, .83fr) minmax(0, 1.17fr); }
  .business-v2-media { min-height: 550px; }
}

@media (max-width: 1040px) {
  .design-v2 .site-header:not(.is-scrolled) .header-inner { width: calc(100% - 42px); }

  .design-v2 .hero-v2 {
    height: auto;
    min-height: 0;
    padding: 128px 0 145px;
  }

  .hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: 0;
  }

  .hero-v2-copy { max-width: 760px; }
  .hero-v2-title-line b { font-size: clamp(73px, 11vw, 105px); }
  .hero-v2-collage { width: min(760px, 100%); min-height: 640px; margin: 0 auto; }
  .hero-v2-card-main { left: 18%; width: 66%; }
  .hero-v2-card-store { left: 1%; }
  .hero-v2-card-space { right: 1%; }
  .hero-v2-bottom { bottom: 24px; }
  .hero-v2-business-nav { width: min(710px, 78vw); }
  .hero-v2-sideword { display: none; }

  .about-v2-header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 65px;
  }

  .about-v2-header .section-kicker { margin-top: 0; }
  .about-v2-layout { grid-template-columns: 1fr; gap: 65px; }
  .about-v2-visual { width: min(760px, 100%); margin-inline: auto; }
  .about-v2-copy { max-width: 720px; margin-inline: auto; }

  .business-v2-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .business-v2-heading > p { max-width: 650px; }

  .business-v2-panel {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  }

  .business-v2-copy { padding: 45px 38px; }
  .business-v2-copy h3 { font-size: clamp(36px, 5vw, 50px); }
  .business-v2-sideword { display: none; }

  .design-v2 .service-card,
  .design-v2 .service-card:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 840px) {
  .design-v2 .hero-v2 {
    padding-top: 112px;
    padding-bottom: 118px;
  }

  .hero-v2-kicker { font-size: 9px; }
  .hero-v2-title-line b { font-size: clamp(62px, 12vw, 88px); }
  .hero-v2-title-line-shift { margin-left: 30px; }
  .hero-v2-title-line i { margin-bottom: 5px; }
  .hero-v2-collage { min-height: 570px; }
  .hero-v2-bottom { align-items: center; }
  .hero-v2-business-nav { width: calc(100% - 95px); }
  .hero-v2-scroll span { display: none; }
  .hero-v2-scroll i { width: 55px; }

  .about-v2 { padding-top: 110px; padding-bottom: 110px; }
  .about-v2-header h2 { font-size: clamp(43px, 8.5vw, 66px); }
  .about-v2-visual { min-height: 540px; }
  .about-v2-photo-main { width: 72%; }
  .about-v2-photo-sub { width: 49%; }

  .business-v2 { padding-top: 115px; padding-bottom: 115px; }
  .business-v2-heading { margin-bottom: 55px; }
  .business-v2-panel,
  .business-v2-panel:nth-child(n) {
    position: relative;
    top: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    margin-bottom: 28px;
    border-radius: 32px;
  }

  .business-v2-panel-help .business-v2-copy,
  .business-v2-panel-help .business-v2-media {
    grid-column: auto;
    grid-row: auto;
  }

  .business-v2-media,
  .business-v2-panel-help .business-v2-media {
    min-height: 430px;
    grid-row: 1;
  }

  .business-v2-copy,
  .business-v2-panel-help .business-v2-copy {
    grid-row: 2;
    padding: 45px 35px 48px;
  }

  .design-v2 .handyman { padding-top: 125px; }
  .design-v2 .handyman-feature-image { clip-path: none; }
  .design-v2 .space-card { border-radius: 35px 95px 35px 35px; }
  .design-v2 .space-media { clip-path: none; }
}

@media (max-width: 640px) {
  .design-v2 .site-header { height: 68px; }
  .design-v2 .site-header.is-scrolled { height: 64px; }

  .design-v2 .hero-v2 {
    min-height: 0;
    padding: 96px 0 105px;
  }

  .hero-v2-background-wash {
    background:
      linear-gradient(180deg, rgba(3, 12, 21, .94) 0%, rgba(3, 13, 23, .86) 47%, rgba(3, 13, 23, .93) 100%),
      linear-gradient(90deg, rgba(3, 12, 21, .85), rgba(3, 12, 21, .4));
  }

  .hero-v2-grid { background-size: 54px 54px; opacity: .16; }
  .hero-v2-inner { gap: 40px; }
  .hero-v2-copy { padding-left: 0; }
  .hero-v2-kicker { margin-bottom: 20px; gap: 8px; font-size: 7.5px; letter-spacing: .17em; }
  .hero-v2-kicker span { min-height: 25px; padding: 5px 8px; }

  .hero-v2-title-line {
    gap: 9px;
  }

  .hero-v2-title-line + .hero-v2-title-line { margin-top: 7px; }
  .hero-v2-title-line-shift { margin-left: 18px; }
  .hero-v2-title-line b { font-size: clamp(51px, 15.2vw, 72px); letter-spacing: -.09em; }
  .hero-v2-title-line i { display: none; }
  .hero-v2-punch { margin-top: 24px; font-size: 23px; }
  .hero-v2-punch em::after { height: 8px; }
  .hero-v2-lead { margin-top: 15px; font-size: 12px; line-height: 1.85; }
  .hero-v2-lead br { display: none; }
  .hero-v2-actions { margin-top: 26px; align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-v2-actions .button { width: 100%; }
  .hero-v2-text-link { justify-content: center; }

  .hero-v2-collage {
    min-height: 470px;
  }

  .hero-v2-orbit {
    top: 5%;
    left: 8%;
    width: 84%;
  }

  .hero-v2-card-main {
    top: 16%;
    left: 15%;
    width: 70%;
    height: 60%;
    border-radius: 25px 80px 25px 25px;
  }

  .hero-v2-card-store {
    top: 1%;
    left: -1%;
    width: 45%;
    height: 32%;
    border-radius: 18px 18px 55px 18px;
  }

  .hero-v2-card-space {
    right: 0;
    bottom: 1%;
    width: 47%;
    height: 35%;
    border-radius: 55px 18px 18px 18px;
  }

  .hero-v2-card figcaption { right: 13px; bottom: 13px; left: 13px; }
  .hero-v2-card-main figcaption span { font-size: 25px; }
  .hero-v2-card-main figcaption strong { font-size: 9px; }
  .hero-v2-card-main figcaption small { display: none; }
  .hero-v2-card-store figcaption,
  .hero-v2-card-space figcaption { padding: 7px 8px; }
  .hero-v2-card-store figcaption span,
  .hero-v2-card-space figcaption span { font-size: 14px; }
  .hero-v2-card-store figcaption strong,
  .hero-v2-card-space figcaption strong { font-size: 6.5px; }

  .hero-v2-century {
    top: 3%;
    right: 0;
    width: 96px;
    height: 96px;
    border-width: 6px;
  }

  .hero-v2-century strong { font-size: 20px; }
  .hero-v2-century span,
  .hero-v2-century small { font-size: 5.7px; }

  .hero-v2-bottom {
    position: absolute;
    bottom: 16px;
  }

  .hero-v2-business-nav {
    display: none;
  }

  .hero-v2-scroll {
    margin-left: auto;
  }

  .motion-marquee-track { min-height: 54px; }
  .motion-marquee-track span { padding: 0 19px; font-size: 15px; }
  .motion-marquee-track i { width: 8px; height: 8px; flex-basis: 8px; }

  .about-v2 {
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .about-v2::before { right: 18px; }
  .about-v2-header { margin-bottom: 45px; }
  .about-v2-header h2 { font-size: clamp(38px, 11.4vw, 52px); line-height: 1.3; }
  .about-v2-layout { gap: 48px; }
  .about-v2-visual { min-height: 420px; }
  .about-v2-photo { border-width: 6px; }
  .about-v2-photo-main { left: 1%; width: 75%; height: 73%; border-radius: 22px 75px 22px 22px; }
  .about-v2-photo-sub { right: 1%; width: 54%; height: 43%; border-radius: 60px 18px 18px 18px; }
  .about-v2-photo figcaption { right: 7px; bottom: 7px; left: 7px; padding: 10px 11px; font-size: 8px; }
  .about-v2-year { display: none; }
  .about-v2-copy { padding-top: 0; }
  .about-v2-copy > p { font-size: 12px; line-height: 1.95; }
  .about-v2-copy .about-v2-lead { font-size: 20px; }
  .about-v2-copy blockquote { margin-top: 35px; padding-left: 25px; }
  .about-v2-copy blockquote strong { font-size: 27px; }
  .about-v2-metrics > div { padding: 18px 8px; }
  .about-v2-metrics dt { font-size: 27px; }
  .about-v2-metrics dd { font-size: 7.5px; }

  .business-v2 {
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .business-v2-heading { margin-bottom: 42px; }
  .business-v2-heading h2 { font-size: clamp(38px, 11vw, 52px); }
  .business-v2-heading > p { font-size: 12px; }
  .business-v2-panel,
  .business-v2-panel:nth-child(n) { border-radius: 25px; }
  .business-v2-media,
  .business-v2-panel-help .business-v2-media { min-height: 280px; }
  .business-v2-copy,
  .business-v2-panel-help .business-v2-copy { padding: 34px 24px 38px; }
  .business-v2-meta { margin-bottom: 19px; font-size: 8px; }
  .business-v2-meta span { width: 32px; height: 32px; }
  .business-v2-copy h3 { font-size: 35px; }
  .business-v2-copy > p:not(.business-v2-meta) { margin-top: 20px; font-size: 11px; line-height: 1.9; }
  .business-v2-copy ul { margin-top: 20px; }
  .business-v2-copy li { font-size: 8px; }
  .business-v2-link { margin-top: 26px; }
  .business-v2-image-number { top: 20px; right: 22px; }

  .design-v2 .service-grid { gap: 12px; }
  .design-v2 .service-card,
  .design-v2 .service-card:nth-child(n) {
    min-height: 0;
    grid-column: 1 / -1;
    border-radius: 20px;
  }

  .design-v2 .handyman-feature { border-radius: 28px 28px 75px 28px; }
  .design-v2 .store { padding-top: 100px; padding-bottom: 100px; }
  .design-v2 .store::after { top: 38px; }
  .design-v2 .store-image-main { border-radius: 24px 85px 24px 24px; }
  .design-v2 .store-badge { transform: rotate(2deg); }
  .design-v2 .space { padding-top: 90px; padding-bottom: 90px; }
  .design-v2 .space-card { border-radius: 26px 70px 26px 26px; }
  .design-v2 .pet-card { border-radius: 70px 25px 25px 25px; }
  .design-v2 .pet-image { clip-path: none; }
}

@media (max-width: 380px) {
  .hero-v2-title-line b { font-size: 49px; }
  .hero-v2-collage { min-height: 430px; }
  .hero-v2-century { width: 86px; height: 86px; }
  .about-v2-header h2 { font-size: 36px; }
  .about-v2-visual { min-height: 385px; }
  .business-v2-copy h3 { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2-background img,
  .hero-v2-glow,
  .hero-v2-orbit,
  .hero-v2-century,
  .motion-marquee-track,
  .hero-v2-scroll i::after {
    animation: none !important;
  }

  html.js body:not(.is-ready) .hero-v2-kicker,
  html.js body:not(.is-ready) .hero-v2-title-line,
  html.js body:not(.is-ready) .hero-v2-punch,
  html.js body:not(.is-ready) .hero-v2-lead,
  html.js body:not(.is-ready) .hero-v2-actions,
  html.js body:not(.is-ready) .hero-v2-bottom {
    opacity: 1;
    transform: none;
  }
}

/* Intentional Japanese line breaks on narrow screens. */
.mobile-break { display: none; }

@media (min-width: 841px) {
  .business-v2-heading h2 {
    font-size: clamp(44px, 4.3vw, 64px);
    letter-spacing: -.075em;
  }
}

@media (max-width: 640px) {
  .mobile-break { display: inline; }
  .business-v2-heading h2 { font-size: clamp(36px, 10.2vw, 43px); }
}

/* Ensure reveal completion wins over the earlier editorial compatibility layer. */
html.js body.design-v2 .reveal.is-visible:not(.hero-v2-collage) {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

html.js body.design-v2 .hero-v2-collage.reveal.is-visible {
  opacity: 1 !important;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) !important;
}

/* The two editorial lead sections remain readable even when observers are unavailable. */
html.js body.design-v2 .about-v2 .reveal,
html.js body.design-v2 .business-v2 .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* =========================================================
   Online commerce / staff / pricing / booking extension
   ========================================================= */

/* Company logo: intentionally straight and stable. */
body.design-v2 .brand-mark,
body.design-v2 .brand:hover .brand-mark,
body.design-v2 .brand-footer .brand-mark {
  border-radius: 14px !important;
  transform: none !important;
}

body.design-v2 .brand-mark > span,
body.design-v2 .brand-copy,
body.design-v2 .brand:hover .brand-mark > span,
body.design-v2 .brand:hover .brand-copy {
  transform: none !important;
}

/* Header commerce entry point. */
.design-v2 .header-actions { gap: 13px; }

.header-shop {
  display: inline-flex;
  min-height: 42px;
  padding: 0 15px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease);
}

.header-shop svg { width: 17px; height: 17px; }
.header-shop:hover { transform: translateY(-2px); color: var(--ink); background: var(--accent); border-color: var(--accent); }
.site-header.is-scrolled .header-shop { color: var(--ink); background: rgba(7, 21, 34, .045); border-color: rgba(7, 21, 34, .14); }
.site-header.is-scrolled .header-shop:hover { background: var(--accent); border-color: var(--accent); }

.mobile-contact-row-three { grid-template-columns: repeat(3, 1fr); }
.mobile-contact-row-three a { min-width: 0; padding-inline: 5px; font-size: 11px; }
.mobile-contact-row-three a:nth-child(3) { color: var(--ink); background: var(--accent); border-color: var(--accent); }

.shop-float {
  display: flex;
  position: fixed;
  top: 46%;
  right: 0;
  z-index: 70;
  width: 74px;
  min-height: 170px;
  padding: 20px 10px 14px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 24px 0 0 24px;
  box-shadow: 0 20px 50px rgba(0, 10, 20, .25);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transition: width .35s var(--ease), background .3s ease, transform .3s var(--ease);
}

.shop-float:hover { width: 88px; background: var(--accent-light); }
.shop-float svg { width: 23px; height: 23px; }
.shop-float span { font-size: 10px; font-weight: 900; line-height: 1.25; letter-spacing: .12em; }
.shop-float i { display: inline-flex; padding: 4px 7px; color: #fff; background: var(--ink); border-radius: 99px; font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .13em; }

/* Hero secondary commerce link. */
.hero-v2-shop-link {
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  gap: 9px;
  color: var(--accent-light);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  transition: transform .3s var(--ease), color .3s ease, background .3s ease;
}

.hero-v2-shop-link:hover { transform: translateY(-3px); color: var(--ink); background: var(--accent-light); }
.hero-v2-shop-link svg { width: 17px; height: 17px; }

/* Staff showcase. */
.staff-pricing-anchor { position: relative; top: -95px; }

.staff-showcase {
  position: relative;
  z-index: 2;
  margin-top: 110px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.staff-showcase::before {
  position: absolute;
  top: 25px;
  right: 0;
  color: rgba(255, 255, 255, .035);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(80px, 11vw, 160px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  content: "TEAM";
  pointer-events: none;
}

.staff-showcase-heading {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 80px;
  align-items: end;
}

.staff-showcase-heading h3,
.pricing-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: -.065em;
}

.staff-showcase-heading h3 em,
.pricing-heading h3 em {
  color: var(--accent-light);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-style: normal;
  font-weight: 600;
}

.staff-showcase-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 2;
}

.staff-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.staff-card {
  position: relative;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  border-radius: 26px 26px 78px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.staff-card:nth-child(2) { border-radius: 76px 26px 26px 26px; }
.staff-card:nth-child(3) { border-radius: 26px 76px 26px 26px; }
.staff-card:hover { transform: translateY(-10px); box-shadow: 0 45px 95px rgba(0, 0, 0, .25); }
.staff-card figure { position: relative; height: 390px; margin: 0; overflow: hidden; }
.staff-card figure::after { position: absolute; inset: auto 0 0; height: 48%; background: linear-gradient(transparent, rgba(3, 12, 21, .74)); content: ""; }
.staff-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.staff-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
.staff-card figure > span { position: absolute; right: 14px; bottom: 14px; z-index: 2; padding: 7px 9px; color: #fff; background: rgba(7, 21, 34, .72); border: 1px solid rgba(255, 255, 255, .25); border-radius: 99px; backdrop-filter: blur(8px); font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.staff-card > div { padding: 28px 27px 34px; }
.staff-card > div > p { margin: 0 0 8px; color: var(--accent-deep); font-family: Arial, Helvetica, sans-serif; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.staff-card h4 { margin: 0; font-size: 21px; line-height: 1.45; }
.staff-card blockquote { margin: 16px 0 18px; padding-left: 16px; color: var(--ink-3); border-left: 3px solid var(--accent); font-size: 12px; font-weight: 700; line-height: 1.8; }
.staff-card small { display: block; color: #7a8390; font-size: 9px; line-height: 1.6; }

/* Clear pricing. */
.pricing-block {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  padding: clamp(38px, 6vw, 72px);
  color: var(--ink);
  background: var(--cream);
  border-radius: 42px 42px 130px 42px;
  box-shadow: 0 45px 120px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.pricing-block::after {
  position: absolute;
  top: -170px;
  right: -130px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 163, 77, .28), transparent 68%);
  content: "";
}

.pricing-heading {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .66fr);
  gap: 70px;
  align-items: end;
}

.pricing-heading h3 { color: var(--ink); }
.pricing-heading h3 em { color: var(--accent-deep); }
.pricing-heading-copy > p:first-child { margin: 0; color: #586474; font-size: 13px; line-height: 1.95; }
.pricing-draft-note { margin: 18px 0 0; padding: 14px 16px; color: #765126; background: rgba(240, 163, 77, .15); border: 1px solid rgba(182, 95, 22, .22); border-radius: 13px; font-size: 10px; line-height: 1.75; }
.pricing-draft-note strong { display: block; margin-bottom: 2px; color: var(--accent-deep); }

.pricing-groups { display: grid; position: relative; z-index: 1; gap: 40px; margin-top: 55px; }
.pricing-group { padding: 28px; background: rgba(255, 255, 255, .72); border: 1px solid rgba(7, 21, 34, .09); border-radius: 28px; }
.pricing-group > header { display: flex; min-height: 66px; align-items: center; gap: 16px; }
.pricing-group > header > span { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; color: var(--ink); background: var(--accent); border-radius: 14px; font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: 900; }
.pricing-group > header > div { flex: 1; }
.pricing-group > header p { margin: 0 0 4px; color: #87909b; font-family: Arial, Helvetica, sans-serif; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.pricing-group > header h4 { margin: 0; font-size: 23px; letter-spacing: -.03em; }
.pricing-group > header > svg { width: 34px; height: 34px; color: var(--accent-deep); }

.price-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.price-card { position: relative; min-width: 0; padding: 27px 24px 24px; background: #fff; border: 1px solid rgba(7, 21, 34, .09); border-radius: 20px; transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease; }
.price-card:hover { transform: translateY(-6px); border-color: rgba(182, 95, 22, .32); box-shadow: 0 20px 48px rgba(7, 21, 34, .1); }
.price-card-popular { border: 2px solid var(--accent); box-shadow: 0 18px 50px rgba(240, 163, 77, .14); }
.price-popular { position: absolute; top: -12px; right: 18px; padding: 6px 10px; color: var(--ink); background: var(--accent); border-radius: 99px; font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.price-card > p { margin: 0 0 7px; color: #9a7a50; font-family: Arial, Helvetica, sans-serif; font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.price-card h5 { margin: 0; font-size: 18px; }
.price-card-price { display: flex; margin-top: 22px; align-items: flex-end; flex-wrap: wrap; gap: 4px 6px; }
.price-card-price small { width: 100%; color: #87909b; font-size: 8px; }
.price-card-price strong { color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: clamp(27px, 2.3vw, 36px); line-height: 1; letter-spacing: -.05em; }
.price-card-price em { color: #7b8490; font-size: 8px; font-style: normal; }
.price-card ul { display: grid; margin: 23px 0 0; padding: 0; gap: 9px; list-style: none; }
.price-card li { position: relative; padding-left: 16px; color: #596574; font-size: 10px; line-height: 1.5; }
.price-card li::before { position: absolute; top: .55em; left: 0; width: 7px; height: 4px; border-bottom: 2px solid var(--accent-deep); border-left: 2px solid var(--accent-deep); content: ""; transform: rotate(-45deg); }
.price-card > a { display: flex; min-height: 45px; margin-top: 24px; padding: 0 14px; align-items: center; justify-content: space-between; color: #fff; background: var(--ink); border-radius: 12px; font-size: 10px; font-weight: 800; transition: background .3s ease, transform .3s var(--ease); }
.price-card > a:hover { transform: translateY(-2px); color: var(--ink); background: var(--accent); }
.price-card > a svg { width: 16px; height: 16px; }
.pricing-notes { display: grid; position: relative; z-index: 1; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.pricing-notes p { margin: 0; padding: 17px 19px; color: #68727f; background: rgba(7, 21, 34, .045); border-radius: 14px; font-size: 9px; line-height: 1.8; }
.pricing-notes strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 10px; }

.process-online-cta {
  display: flex;
  grid-column: 2;
  margin-top: 38px;
  padding: 22px 24px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 18px;
  transition: transform .35s var(--ease), background .3s ease;
}
.process-online-cta:hover { transform: translateY(-4px); background: var(--accent-light); }
.process-online-cta span { color: rgba(7, 21, 34, .55); font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.process-online-cta strong { flex: 1; font-size: 13px; }
.process-online-cta svg { width: 22px; height: 22px; }

/* Online estimate & booking. */
.booking-section {
  position: relative;
  padding: 135px 0 150px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  isolation: isolate;
  overflow: hidden;
}

.booking-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 8px;
  background: var(--accent);
  content: "";
}

.booking-section::after {
  position: absolute;
  right: -7%;
  bottom: -18%;
  z-index: -1;
  width: 650px;
  height: 650px;
  opacity: .5;
  background: radial-gradient(circle, rgba(79, 169, 132, .25), transparent 68%);
  content: "";
}

.booking-orbit { position: absolute; z-index: -1; border: 1px solid rgba(7, 21, 34, .08); border-radius: 50%; pointer-events: none; }
.booking-orbit-one { top: 80px; right: -140px; width: 430px; height: 430px; box-shadow: 0 0 0 55px rgba(7, 21, 34, .02), 0 0 0 110px rgba(7, 21, 34, .012); }
.booking-orbit-two { bottom: 70px; left: -110px; width: 280px; height: 280px; }

.booking-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr); gap: 75px; align-items: end; margin-bottom: 65px; }
.booking-heading h2 { margin: 0; font-size: clamp(48px, 6vw, 82px); font-weight: 900; line-height: 1.22; letter-spacing: -.075em; }
.booking-heading h2 em { color: var(--accent-deep); font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-style: normal; font-weight: 600; }
.booking-heading > p { margin: 0 0 10px; color: #5e6978; font-size: 13px; line-height: 2; }

.booking-shell { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr); gap: 24px; align-items: start; }
.booking-form { position: relative; padding: clamp(28px, 4vw, 52px); background: #fff; border: 1px solid rgba(7, 21, 34, .08); border-radius: 32px; box-shadow: 0 35px 100px rgba(7, 21, 34, .12); }
.booking-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.booking-progress { display: flex; margin-bottom: 52px; align-items: center; }
.booking-progress button { display: flex; min-width: 64px; padding: 0; align-items: center; flex-direction: column; gap: 7px; color: #9aa1aa; background: none; border: 0; cursor: pointer; }
.booking-progress button:disabled { cursor: default; }
.booking-progress button > span { display: grid; width: 36px; height: 36px; place-items: center; background: #edf0f2; border: 1px solid #e2e5e8; border-radius: 50%; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: 900; transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease); }
.booking-progress button small { font-size: 8px; font-weight: 800; white-space: nowrap; }
.booking-progress button.is-active > span { color: var(--ink); background: var(--accent); border-color: var(--accent); transform: scale(1.12); box-shadow: 0 8px 20px rgba(240, 163, 77, .28); }
.booking-progress button.is-active small { color: var(--ink); }
.booking-progress button.is-complete > span { color: #fff; background: var(--green); border-color: var(--green); }
.booking-progress > i { height: 1px; flex: 1; margin: 0 4px 22px; background: #e1e5e8; }

.booking-step { animation: bookingStepIn .48s var(--ease) both; }
.booking-step[hidden] { display: none !important; }
@keyframes bookingStepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.booking-step-head { margin-bottom: 28px; }
.booking-step-head > span { color: var(--accent-deep); font-family: Arial, Helvetica, sans-serif; font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.booking-step-head h3 { margin: 7px 0 7px; font-size: clamp(25px, 3vw, 34px); line-height: 1.4; letter-spacing: -.04em; }
.booking-step-head p { margin: 0; color: #7d8691; font-size: 10px; line-height: 1.7; }

.booking-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-choice { display: flex; position: relative; min-height: 155px; padding: 25px; align-items: center; gap: 17px; background: #f8f9fa; border: 2px solid transparent; border-radius: 20px; cursor: pointer; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.booking-choice:hover { transform: translateY(-4px); background: #fff; border-color: rgba(240, 163, 77, .45); box-shadow: 0 18px 40px rgba(7, 21, 34, .08); }
.booking-choice:has(input:checked) { background: #fff8ee; border-color: var(--accent); box-shadow: 0 18px 42px rgba(240, 163, 77, .14); }
.booking-choice input { position: absolute; opacity: 0; }
.booking-choice-icon { display: grid; width: 58px; height: 58px; flex: 0 0 58px; place-items: center; color: var(--accent-deep); background: rgba(240, 163, 77, .16); border-radius: 18px; }
.booking-choice-icon svg { width: 29px; height: 29px; }
.booking-choice > span:nth-of-type(2) { display: flex; min-width: 0; flex-direction: column; }
.booking-choice small { color: #9a7a50; font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.booking-choice strong { margin: 7px 0; font-size: 16px; }
.booking-choice em { color: #737d89; font-size: 9px; font-style: normal; line-height: 1.7; }
.booking-choice > i,
.booking-plan > i { display: grid; position: absolute; top: 14px; right: 14px; width: 24px; height: 24px; place-items: center; color: #fff; background: #d7dce0; border-radius: 50%; }
.booking-choice > i svg,
.booking-plan > i svg { width: 14px; height: 14px; }
.booking-choice:has(input:checked) > i,
.booking-plan:has(input:checked) > i { background: var(--green); }

.booking-plan-list { display: grid; gap: 10px; }
.booking-plan-list[hidden] { display: none !important; }
.booking-plan { display: grid; position: relative; min-height: 84px; grid-template-columns: 1fr auto; padding: 16px 52px 16px 18px; align-items: center; gap: 15px; background: #f7f8f9; border: 2px solid transparent; border-radius: 16px; cursor: pointer; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
.booking-plan:hover { transform: translateX(5px); border-color: rgba(240, 163, 77, .42); }
.booking-plan:has(input:checked) { background: #fff8ee; border-color: var(--accent); }
.booking-plan input { position: absolute; opacity: 0; }
.booking-plan > span { display: flex; flex-direction: column; }
.booking-plan > span small { color: #9a7a50; font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .15em; }
.booking-plan > span strong { margin: 3px 0; font-size: 15px; }
.booking-plan > span em { color: #7d8691; font-size: 9px; font-style: normal; }
.booking-plan > b { font-family: Arial, Helvetica, sans-serif; font-size: 19px; letter-spacing: -.03em; }

.booking-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 30px 0 0; padding: 0; gap: 10px; border: 0; }
.booking-options legend { grid-column: 1 / -1; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.booking-options label { display: block; position: relative; min-width: 0; cursor: pointer; }
.booking-options label[hidden] { display: none; }
.booking-options input { position: absolute; opacity: 0; }
.booking-options label > span { display: grid; min-height: 72px; grid-template-columns: 35px 1fr; padding: 12px 15px; align-items: center; background: #f8f9fa; border: 1px solid #e5e8ea; border-radius: 14px; transition: background .3s ease, border-color .3s ease, transform .3s var(--ease); }
.booking-options label > span:hover { transform: translateY(-2px); border-color: rgba(240, 163, 77, .5); }
.booking-options input:checked + span { background: #fff8ee; border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.booking-options svg { width: 22px; height: 22px; color: var(--accent-deep); }
.booking-options strong { display: block; font-size: 11px; }
.booking-options small { display: block; margin-top: 3px; color: #7a8490; font-size: 8px; }
.booking-price-caution { margin: 18px 0 0; padding: 13px 15px; color: #7c654a; background: #fff9f0; border-radius: 12px; font-size: 8px; line-height: 1.75; }

.booking-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.booking-field-full { grid-column: 1 / -1; }
.booking-field { display: flex; min-width: 0; flex-direction: column; }
.booking-field > span { margin-bottom: 8px; color: #354250; font-size: 10px; font-weight: 800; }
.booking-field > span b { color: var(--coral); }
.booking-field input,
.booking-field select,
.booking-field textarea { width: 100%; min-height: 54px; padding: 0 15px; color: var(--ink); background: #f7f8f9; border: 1px solid #dfe4e7; border-radius: 12px; outline: none; font: inherit; font-size: 12px; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.booking-field textarea { min-height: 115px; padding-block: 14px; resize: vertical; }
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { background: #fff; border-color: var(--accent-deep); box-shadow: 0 0 0 4px rgba(240, 163, 77, .12); }
.booking-field.has-error input,
.booking-field.has-error select,
.booking-field.has-error textarea { border-color: #d64c4c; box-shadow: 0 0 0 3px rgba(214, 76, 76, .1); }
.booking-error { display: none; margin-top: 6px; color: #c53e3e; font-size: 8px; }
.booking-field.has-error .booking-error { display: block; }
.booking-slot-status { grid-column: 1 / -1; margin: -4px 0 0; padding: 10px 13px; color: #52705f; background: rgba(79, 169, 132, .1); border-radius: 10px; font-size: 8px; line-height: 1.6; }

.booking-upload { display: block; position: relative; cursor: pointer; }
.booking-upload input { position: absolute; opacity: 0; pointer-events: none; }
.booking-upload > span { display: flex; min-height: 94px; padding: 17px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; color: #5b6876; background: #f7f8f9; border: 1px dashed #bcc5cc; border-radius: 14px; text-align: center; transition: color .3s ease, background .3s ease, border-color .3s ease; }
.booking-upload:hover > span { color: var(--accent-deep); background: #fff9f1; border-color: var(--accent); }
.booking-upload svg { width: 24px; height: 24px; }
.booking-upload strong { font-size: 11px; }
.booking-upload small { color: #8b949e; font-size: 8px; }
.booking-photo-preview { display: flex; flex-wrap: wrap; gap: 7px; }
.booking-photo-preview:empty { display: none; }
.booking-photo-preview span { padding: 7px 10px; color: #52606d; background: #eef1f3; border-radius: 99px; font-size: 8px; }

.booking-consent { display: block; position: relative; margin-top: 22px; cursor: pointer; }
.booking-consent input { position: absolute; opacity: 0; }
.booking-consent > span { display: flex; align-items: flex-start; gap: 10px; color: #66717e; font-size: 9px; line-height: 1.75; }
.booking-consent i { display: grid; width: 21px; height: 21px; flex: 0 0 21px; place-items: center; color: transparent; background: #f1f3f4; border: 1px solid #d8dde0; border-radius: 6px; }
.booking-consent i svg { width: 14px; height: 14px; }
.booking-consent input:checked + span i { color: #fff; background: var(--green); border-color: var(--green); }
.booking-consent.has-error > span { color: #c53e3e; }
.booking-consent.has-error i { border-color: #c53e3e; }
.booking-final-note { margin: 13px 0 0; color: #8b949e; font-size: 8px; }
.booking-form-message { margin: 24px 0 0; padding: 13px 15px; border-radius: 12px; font-size: 10px; font-weight: 700; line-height: 1.6; }
.booking-form-message.is-error { color: #9d3030; background: #fff0f0; border: 1px solid #f0bcbc; }
.booking-form-message.is-success { color: #356c52; background: #effaf4; border: 1px solid #b9e4cd; }
.booking-navigation { display: flex; margin-top: 30px; align-items: center; justify-content: flex-end; gap: 12px; }
.booking-back { display: inline-flex; min-height: 50px; padding: 0 18px; align-items: center; gap: 8px; color: #66717d; background: transparent; border: 1px solid #d8dde0; border-radius: 12px; font-size: 10px; font-weight: 800; cursor: pointer; }
.booking-back svg { width: 17px; height: 17px; transform: rotate(180deg); }
.booking-next,
.booking-submit { min-width: 190px; }
.booking-submit.is-loading { opacity: .65; cursor: wait; }

.estimate-panel { position: sticky; top: 96px; padding: 30px; color: #fff; background: var(--ink); border-radius: 28px 28px 78px 28px; box-shadow: 0 35px 80px rgba(7, 21, 34, .24); overflow: hidden; }
.estimate-panel::before { position: absolute; top: -110px; right: -100px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(240, 163, 77, .28), transparent 68%); content: ""; }
.estimate-panel-head { display: flex; position: relative; align-items: center; gap: 13px; }
.estimate-panel-head > svg { width: 42px; height: 42px; padding: 10px; color: var(--ink); background: var(--accent); border-radius: 13px; }
.estimate-panel-head > span { display: flex; flex-direction: column; }
.estimate-panel-head small { color: rgba(255, 255, 255, .42); font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.estimate-panel-head strong { margin-top: 3px; font-size: 17px; }
.estimate-panel dl { position: relative; margin: 28px 0 0; }
.estimate-panel dl > div { display: flex; padding: 12px 0; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.estimate-panel dt { color: rgba(255, 255, 255, .47); font-size: 9px; }
.estimate-panel dd { margin: 0; font-size: 10px; font-weight: 800; text-align: right; }
.estimate-total { position: relative; margin-top: 25px; padding: 22px; background: rgba(255, 255, 255, .065); border: 1px solid rgba(255, 255, 255, .1); border-radius: 18px; }
.estimate-total small { display: block; color: rgba(255, 255, 255, .54); font-size: 8px; }
.estimate-total strong { display: block; margin: 8px 0 5px; color: var(--accent-light); font-family: Arial, Helvetica, sans-serif; font-size: clamp(32px, 3vw, 43px); letter-spacing: -.04em; }
.estimate-total span { display: block; color: rgba(255, 255, 255, .4); font-size: 7px; }
.estimate-panel ul { display: grid; position: relative; margin: 23px 0 0; padding: 0; gap: 8px; list-style: none; }
.estimate-panel li { position: relative; padding-left: 18px; color: rgba(255, 255, 255, .7); font-size: 9px; }
.estimate-panel li::before { position: absolute; top: .25em; left: 0; width: 9px; height: 5px; border-bottom: 2px solid var(--electric); border-left: 2px solid var(--electric); content: ""; transform: rotate(-45deg); }
.estimate-panel > p { position: relative; margin: 20px 0 0; padding-top: 17px; color: rgba(255, 255, 255, .35); border-top: 1px solid rgba(255, 255, 255, .09); font-size: 7px; line-height: 1.7; }

.booking-success { max-width: 860px; margin: 0 auto; padding: clamp(38px, 7vw, 75px); background: #fff; border: 1px solid rgba(7, 21, 34, .08); border-radius: 38px; box-shadow: 0 35px 100px rgba(7, 21, 34, .13); text-align: center; }
.booking-success-icon { display: grid; width: 70px; height: 70px; margin: 0 auto 24px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; box-shadow: 0 18px 40px rgba(79, 169, 132, .28); }
.booking-success-icon svg { width: 34px; height: 34px; }
.booking-success h3 { margin: 8px 0 12px; font-size: clamp(28px, 4vw, 45px); letter-spacing: -.04em; }
.booking-success > p:not(.section-kicker) { margin: 0 auto; max-width: 580px; color: #697481; font-size: 11px; line-height: 1.9; }
.booking-success > strong { display: inline-flex; margin: 28px 0; padding: 15px 22px; color: var(--ink); background: var(--accent); border-radius: 14px; font-family: Arial, Helvetica, sans-serif; font-size: clamp(22px, 3vw, 33px); letter-spacing: .05em; }
#bookingSuccessSummary { max-width: 580px; margin: 0 auto; text-align: left; }
#bookingSuccessSummary dl { margin: 0; padding: 18px 22px; background: #f6f7f8; border-radius: 16px; }
#bookingSuccessSummary dl > div { display: flex; padding: 10px 0; justify-content: space-between; gap: 20px; border-bottom: 1px solid #e2e5e7; }
#bookingSuccessSummary dl > div:last-child { border-bottom: 0; }
#bookingSuccessSummary dt { color: #7a8490; font-size: 9px; }
#bookingSuccessSummary dd { margin: 0; font-size: 10px; font-weight: 800; text-align: right; }
.booking-success-actions { display: flex; margin-top: 28px; justify-content: center; flex-wrap: wrap; gap: 10px; }
.booking-success > small { display: block; margin: 22px auto 0; max-width: 620px; padding: 12px 14px; color: #805c2e; background: #fff6e8; border-radius: 10px; font-size: 8px; line-height: 1.7; }

/* Store and online shop route. */
.store-actions { display: flex; margin-top: 32px; flex-wrap: wrap; gap: 10px; }
.store-actions .button { margin-top: 0; }

.shop-teaser { position: relative; padding: 70px 0 130px; background: #fff; }
.shop-teaser-card { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); color: #fff; background: var(--ink); border-radius: 40px 40px 130px 40px; box-shadow: 0 45px 120px rgba(7, 21, 34, .2); overflow: hidden; }
.shop-teaser-media { position: relative; min-height: 610px; overflow: hidden; }
.shop-teaser-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 21, 34, .08), rgba(7, 21, 34, .72)); content: ""; }
.shop-teaser-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform 1s var(--ease); }
.shop-teaser-card:hover .shop-teaser-media img { transform: scale(1.04); }
.shop-teaser-media > span { position: absolute; bottom: 28px; left: 30px; z-index: 2; color: #fff; font-family: Arial, Helvetica, sans-serif; font-size: clamp(38px, 5vw, 68px); font-weight: 900; line-height: .86; letter-spacing: -.065em; }
.shop-teaser-copy { display: flex; padding: clamp(45px, 6vw, 82px); justify-content: center; flex-direction: column; }
.shop-teaser-copy h2 { margin: 0; font-size: clamp(39px, 5vw, 67px); line-height: 1.28; letter-spacing: -.065em; }
.shop-teaser-copy h2 em { color: var(--accent-light); font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif; font-style: normal; font-weight: 600; }
.shop-teaser-copy > p:not(.section-kicker) { margin: 25px 0 0; color: rgba(255, 255, 255, .58); font-size: 12px; line-height: 2; }
.shop-category-tags { display: flex; margin-top: 27px; flex-wrap: wrap; gap: 7px; }
.shop-category-tags span { padding: 7px 11px; color: rgba(255, 255, 255, .74); background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); border-radius: 99px; font-size: 8px; }
.shop-teaser-button { display: flex; min-height: 76px; margin-top: 33px; padding: 0 24px; align-items: center; justify-content: space-between; color: var(--ink); background: var(--accent); border-radius: 18px; transition: transform .35s var(--ease), background .3s ease; }
.shop-teaser-button:hover { transform: translateY(-5px); background: var(--accent-light); }
.shop-teaser-button > span { display: flex; flex-direction: column; }
.shop-teaser-button small { font-family: Arial, Helvetica, sans-serif; font-size: 7px; font-weight: 900; letter-spacing: .16em; opacity: .55; }
.shop-teaser-button strong { margin-top: 4px; font-size: 15px; }
.shop-teaser-button svg { width: 25px; height: 25px; }
.shop-teaser-note { display: block; margin-top: 14px; color: rgba(255, 255, 255, .34); font-size: 7px; line-height: 1.65; }

/* Contact card for online booking. */
.contact-method-booking { color: var(--ink); background: #fff; border-color: #fff; }
.contact-method-booking .contact-method-icon { color: var(--ink); background: var(--accent); }
.contact-method-booking:hover { color: var(--ink); background: var(--cream); border-color: var(--cream); }

/* Temporary online shop page. */
.shop-coming-page { min-height: 100vh; color: #fff; background: var(--ink); }
.shop-coming-page .site-header { position: fixed; }
.shop-coming-main { min-height: 100vh; }
.shop-coming-hero { display: grid; position: relative; min-height: 100vh; padding: 130px 0 70px; place-items: center; overflow: hidden; }
.shop-coming-hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 12, 21, .96), rgba(3, 12, 21, .66)), url("../images/retail.webp") center / cover; content: ""; }
.shop-coming-hero::after { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 72px; content: ""; }
.shop-coming-content { display: grid; position: relative; z-index: 1; grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr); gap: 70px; align-items: center; }
.shop-coming-copy h1 { margin: 18px 0 0; font-family: Arial, "Yu Gothic", sans-serif; font-size: clamp(60px, 8vw, 118px); font-weight: 900; line-height: .86; letter-spacing: -.075em; }
.shop-coming-copy h1 span { display: block; color: var(--accent-light); }
.shop-coming-copy > p:not(.section-kicker) { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 2; }
.shop-coming-actions { display: flex; margin-top: 32px; flex-wrap: wrap; gap: 10px; }
.shop-coming-panel { padding: 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 30px 30px 85px 30px; backdrop-filter: blur(18px); }
.shop-coming-panel > small { color: var(--accent-light); font-family: Arial, Helvetica, sans-serif; font-size: 8px; font-weight: 900; letter-spacing: .16em; }
.shop-coming-panel h2 { margin: 10px 0 20px; font-size: 24px; }
.shop-coming-panel ul { display: grid; margin: 0; padding: 0; gap: 10px; list-style: none; }
.shop-coming-panel li { padding: 14px 15px; background: rgba(255,255,255,.07); border-radius: 12px; font-size: 11px; }
.shop-coming-panel p { margin: 22px 0 0; color: rgba(255,255,255,.42); font-size: 8px; line-height: 1.8; }

/* Responsive extension. */
@media (max-width: 1380px) {
  .header-shop { padding-inline: 12px; }
  .header-shop span { display: none; }
  .shop-float { width: 66px; }
}

@media (max-width: 1160px) {
  .staff-showcase-heading,
  .pricing-heading,
  .booking-heading { grid-template-columns: 1fr; gap: 24px; }
  .staff-showcase-heading > p,
  .pricing-heading-copy,
  .booking-heading > p { max-width: 720px; }
  .booking-shell { grid-template-columns: minmax(0, 1fr) 300px; }
  .price-card-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1040px) {
  .shop-float { display: none; }
  .staff-showcase { margin-top: 90px; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .staff-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; border-radius: 26px 80px 26px 26px; }
  .staff-card:last-child figure { height: 100%; min-height: 380px; }
  .pricing-block { border-radius: 36px 36px 100px 36px; }
  .booking-shell { grid-template-columns: 1fr; }
  .estimate-panel { position: relative; top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; border-radius: 28px 28px 80px 28px; }
  .estimate-panel-head,
  .estimate-total,
  .estimate-panel > p { grid-column: 1 / -1; }
  .estimate-panel dl { margin-top: 20px; }
  .estimate-panel ul { margin-top: 25px; }
  .shop-teaser-card { grid-template-columns: .85fr 1.15fr; }
  .shop-coming-content { grid-template-columns: 1fr; }
  .shop-coming-panel { max-width: 700px; }
}

@media (max-width: 840px) {
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card:last-child { display: block; grid-column: auto; }
  .staff-card:last-child figure { height: 390px; min-height: 0; }
  .pricing-group { padding: 20px; }
  .price-card-grid { grid-template-columns: 1fr; }
  .price-card:last-child { grid-column: auto; }
  .booking-section { padding-top: 105px; padding-bottom: 110px; }
  .booking-progress button { min-width: 52px; }
  .booking-choice-grid { grid-template-columns: 1fr; }
  .shop-teaser-card { grid-template-columns: 1fr; border-radius: 34px 34px 95px 34px; }
  .shop-teaser-media { min-height: 440px; }
  .shop-teaser-copy { padding: 48px 38px 58px; }
  .contact-direct .contact-method-booking { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .mobile-contact-row-three { gap: 7px; }
  .mobile-contact-row-three a { min-height: 48px; flex-direction: column; gap: 3px; font-size: 8px; }
  .mobile-contact-row-three svg { width: 17px; height: 17px; }

  .hero-v2-shop-link { width: 100%; min-height: 45px; justify-content: center; }
  .staff-pricing-anchor { top: -70px; }
  .staff-showcase { margin-top: 70px; padding-top: 55px; }
  .staff-showcase::before { top: 18px; font-size: 65px; }
  .staff-showcase-heading h3,
  .pricing-heading h3 { font-size: 36px; }
  .staff-showcase-heading > p { font-size: 11px; }
  .staff-grid { margin-top: 38px; gap: 13px; }
  .staff-card,
  .staff-card:nth-child(n) { border-radius: 22px 22px 62px 22px; }
  .staff-card figure,
  .staff-card:last-child figure { height: 340px; }
  .staff-card > div { padding: 24px 22px 29px; }

  .pricing-block { margin-top: 80px; padding: 31px 17px 45px; border-radius: 28px 28px 72px 28px; }
  .pricing-heading { padding-inline: 7px; }
  .pricing-heading-copy > p:first-child { font-size: 11px; }
  .pricing-groups { margin-top: 38px; gap: 22px; }
  .pricing-group { padding: 16px 12px; border-radius: 20px; }
  .pricing-group > header { padding-inline: 4px; }
  .pricing-group > header h4 { font-size: 19px; }
  .price-card { padding: 24px 20px 21px; }
  .price-card-price strong { font-size: 32px; }
  .pricing-notes { grid-template-columns: 1fr; }
  .process-online-cta {
  position: relative; grid-column: 1; align-items: flex-start; flex-direction: column; }
  .process-online-cta svg { position: absolute; right: 22px; align-self: flex-end; }

  .booking-section { padding: 88px 0 95px; }
  .booking-heading { margin-bottom: 42px; }
  .booking-heading h2 { font-size: 41px; }
  .booking-heading > p { font-size: 11px; }
  .booking-form { padding: 25px 17px 28px; border-radius: 24px; }
  .booking-progress { margin: 0 -3px 38px; }
  .booking-progress button { min-width: 43px; }
  .booking-progress button > span { width: 31px; height: 31px; }
  .booking-progress button small { font-size: 6.7px; }
  .booking-progress > i { margin-inline: 0; margin-bottom: 20px; }
  .booking-step-head h3 { font-size: 25px; }
  .booking-choice { min-height: 135px; padding: 20px 17px; }
  .booking-choice-icon { width: 49px; height: 49px; flex-basis: 49px; }
  .booking-choice strong { font-size: 14px; }
  .booking-plan { min-height: 82px; grid-template-columns: 1fr; padding-right: 48px; gap: 7px; }
  .booking-plan > b { font-size: 17px; }
  .booking-options { grid-template-columns: 1fr; }
  .booking-field-grid { grid-template-columns: 1fr; }
  .booking-field-full,
  .booking-slot-status { grid-column: auto; }
  .booking-navigation { align-items: stretch; flex-direction: column-reverse; }
  .booking-navigation .button,
  .booking-back { width: 100%; justify-content: center; }
  .estimate-panel { display: block; padding: 26px 22px; }
  .estimate-panel ul { margin-top: 22px; }
  .booking-success { padding: 38px 20px; border-radius: 25px; }
  .booking-success-actions { flex-direction: column; }
  .booking-success-actions .button { width: 100%; }

  .store-actions { flex-direction: column; }
  .store-actions .button { width: 100%; }
  .shop-teaser { padding: 35px 0 90px; }
  .shop-teaser-card { border-radius: 26px 26px 72px 26px; }
  .shop-teaser-media { min-height: 330px; }
  .shop-teaser-media > span { bottom: 20px; left: 21px; font-size: 43px; }
  .shop-teaser-copy { padding: 38px 23px 48px; }
  .shop-teaser-copy h2 { font-size: 38px; }
  .shop-teaser-copy > p:not(.section-kicker) { font-size: 10px; }
  .shop-teaser-button { min-height: 69px; padding-inline: 18px; }

  .contact-direct .contact-method-booking { grid-column: auto; }
  .shop-coming-hero { padding-top: 100px; }
  .shop-coming-copy h1 { font-size: 57px; }
  .shop-coming-panel { padding: 27px 21px; border-radius: 24px 24px 65px 24px; }
}

@supports not selector(:has(*)) {
  .booking-choice input:checked + .booking-choice-icon { outline: 3px solid var(--accent); }
  .booking-plan input:checked ~ span { color: var(--accent-deep); }
}

@media print {
  body * { visibility: hidden !important; }
  #bookingSuccess,
  #bookingSuccess * { visibility: visible !important; }
  #bookingSuccess { position: absolute; top: 0; left: 0; width: 100%; box-shadow: none; }
  .booking-success-actions,
  #bookingDemoNotice { display: none !important; }
}

/* Shop placeholder header refinement. */
.shop-coming-page .menu-toggle { display: none !important; }
.shop-coming-page .header-inner { justify-content: space-between; }
.shop-coming-page .shop-coming-header-actions { display: flex; margin-left: auto; }
.shop-coming-page .shop-coming-panel code { color: var(--accent-light); font-family: Consolas, monospace; }
@media (max-width: 640px) {
  .shop-coming-page .shop-coming-header-actions { display: flex !important; }
  .shop-coming-page .shop-coming-header-actions .header-phone { display: none; }
  .shop-coming-page .shop-coming-header-actions .header-shop { min-width: 44px; justify-content: center; }
  .shop-coming-page .shop-coming-header-actions .header-shop span { display: none; }
}

/* Preserve the native hidden attribute even on flex/grid components. */
[hidden] {
  display: none !important;
}
