:root {
  --text: #3a2b14;
  --muted: #786143;
  --card: rgba(255, 254, 244, .94);
  --line: rgba(174, 132, 24, .22);
  --accent: #f4a800;
  --accent-dark: #a96700;
  --peach: #ffc46a;
  --gold: #ffd84d;
  --logo-gold: #f7c84b;
  --logo-charcoal: #3a3328;
  --cream: #fffbea;
  --shadow: 0 24px 58px rgba(139, 96, 10, .16);
  --shadow-soft: 0 12px 28px rgba(139, 96, 10, .10);
  --radius: 28px;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.82;
  background:
    radial-gradient(circle at 10% 4%, rgba(164, 118, 255, .28), transparent 26rem),
    radial-gradient(circle at 92% 10%, rgba(214, 109, 191, .22), transparent 22rem),
    linear-gradient(135deg, #faf5ff 0%, #ead8ff 22%, #f8e9ff 42%, #f4d4ef 62%, #f6e2ff 80%, #ede0ff 100%);
  background-size: 340% 340%;
  animation: salonGradient 22s ease-in-out infinite;
  overflow-x: hidden;
}
body::before, body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(56px);
  opacity: .62;
}
body::before {
  width: 340px;
  height: 340px;
  left: -90px;
  top: -80px;
  background: rgba(144, 116, 221, .42);
  animation: blobA 16s ease-in-out infinite;
}
body::after {
  width: 430px;
  height: 430px;
  right: -130px;
  top: 120px;
  background: rgba(190, 111, 219, .30);
  animation: blobB 18s ease-in-out infinite;
}
@keyframes salonGradient {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes blobA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(54px,36px) scale(1.08); } }
@keyframes blobB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-42px,46px) scale(1.12); } }
@media (prefers-reduced-motion: reduce) {
  body, body::before, body::after, .motif-chip { animation: none !important; }
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; position: relative; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 243, 255, .88);
  border-bottom: 1px solid rgba(108,91,73,.14);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { text-decoration: none; display: inline-flex; align-items: center; gap: 12px; min-width: fit-content; }
.brand-logo { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; box-shadow: 0 8px 18px rgba(143,85,55,.14); }
.brand:hover .brand-logo { transform: translateY(-1px); transition: transform .16s ease; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.18; }
.brand-main { font-weight: 900; letter-spacing: .13em; font-size: 1.04rem; }
.brand-sub { color: var(--muted); font-size: .72rem; letter-spacing: .06em; }
.nav-toggle { display: none; }
.nav-button { display: none; }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  color: #654a87;
  font-weight: 850;
  font-size: .86rem;
  padding: 9px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a:hover, .nav a:focus-visible { outline: none; background: rgba(255,255,255,.75); color: var(--accent-dark); }
.nav .nav-instagram { background: rgba(255,255,255,.76); border-color: var(--line); }
.nav .line-button, .button-primary {
  color: #fff;
  background: linear-gradient(135deg, #c95cc0, #7b4ea3);
  box-shadow: 0 12px 28px rgba(123,78,163,.24);
}
.nav .line-button:hover, .nav .line-button:focus-visible { color: #fff; background: linear-gradient(135deg, #e65aa0, var(--accent-dark)); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button-secondary { color: var(--accent-dark); background: rgba(255,255,255,.9); border-color: var(--line); box-shadow: var(--shadow-soft); }
.hero { padding: 68px 0 42px; }
.hero-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 38px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 18px; padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.72);
  color: var(--accent-dark); font-weight: 900; font-size: .86rem;
}
.hero h1, .page-hero h1 { margin: 0; line-height: 1.18; letter-spacing: .02em; font-size: clamp(2.1rem, 4.5vw, 4rem); }
.title-line { display: block; }
.hero-lead, .page-lead, .section-text, .card p, .flow-item p, .profile-copy p, .note, .link-card p, .menu-item p, .panel p { color: var(--muted); }
.hero-lead, .page-lead { margin: 18px 0 0; max-width: 42rem; font-size: clamp(1rem, 2vw, 1.14rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.label-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.label { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.9); border: 1px solid var(--line); color: var(--accent-dark); font-weight: 900; font-size: .88rem; box-shadow: var(--shadow-soft); }
.label::before { content:""; width: 15px; height: 15px; border-radius: 50%; background: linear-gradient(135deg, #ffbfdc, #ffe39b); box-shadow: inset 0 0 0 4px rgba(214,75,139,.18); }

.brand-message {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 22px;
  background: rgba(255, 252, 244, .78);
  border: 1px solid rgba(108, 91, 73, .16);
  box-shadow: var(--shadow-soft);
  color: var(--logo-charcoal);
  font-weight: 800;
  max-width: 38rem;
}
.brand-message img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}

.hero-card { position: relative; border-radius: 34px; background: linear-gradient(135deg, rgba(255,253,247,.78), rgba(255,239,199,.58)); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.75); overflow: hidden; padding: 14px; }
.hero-card > img.hero-main-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.photo-note { margin: 10px 4px 0; color: var(--muted); text-align: center; font-size: .82rem; }
.motif-chip { position: absolute; display: none; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.94); border: 1px solid var(--line); box-shadow: var(--shadow-soft); color: var(--accent-dark); font-weight: 900; font-size: .82rem; animation: floatY 3.6s ease-in-out infinite; }
.motif-chip::before { content:""; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #ff7ab8, #ffd36f); box-shadow: inset 0 0 0 5px rgba(255,255,255,.48); flex: 0 0 auto; }
.motif-chip.one { right: 16px; top: 18px; }
.motif-chip.two { left: 24px; bottom: 58px; animation-delay: 1.2s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.section-kicker::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--logo-gold);
}
.hero::before {
  content: "AMOR SUI";
  position: absolute;
  right: 6vw;
  top: 110px;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: .18em;
  color: rgba(57,57,57,.035);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  white-space: nowrap;
}
.hero { position: relative; }

section { padding: 48px 0; }
.section-head { margin-bottom: 22px; }
.section-kicker { margin: 0 0 8px; color: var(--accent-dark); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.34; letter-spacing: .03em; }
h3 { line-height: 1.45; }
.section-text { max-width: 50rem; margin: 12px 0 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card, .panel, .info-card { background: var(--card); border: 1px solid rgba(255,255,255,.68); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-soft); }
.card h3, .info-card h3 { margin: 10px 0 8px; font-size: 1.08rem; }
.card p, .info-card p { margin: 0; font-size: .95rem; }
.icon-badge { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, rgba(255,246,249,.96), rgba(255,249,236,.96)); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-soft); }
.icon-badge img { width: 34px; height: 34px; object-fit: contain; }
.soft-band { padding: 26px 0; background: linear-gradient(90deg, rgba(243,231,255,.86), rgba(255,241,252,.86), rgba(239,230,255,.86)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-inner { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.band-inner p { margin: 6px 0 0; color: var(--muted); }
.link-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.link-card { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; background: var(--card); border: 1px solid rgba(255,255,255,.68); border-radius: 28px; padding: 24px; box-shadow: var(--shadow-soft); }
.link-card::after { content:"詳しく見る →"; align-self: flex-start; margin-top: 16px; color: var(--accent-dark); font-weight: 900; }
.link-card:hover { transform: translateY(-2px); transition: transform .16s ease; }
.link-card h3 { margin: 12px 0 8px; font-size: 1.18rem; color: var(--accent-dark); }
.link-card p { margin: 0; }
.page-hero { padding: 56px 0 32px; }
.page-hero .container { display: grid; gap: 16px; }
.breadcrumb { font-size: .86rem; color: var(--muted); }
.breadcrumb a { color: var(--accent-dark); font-weight: 800; text-decoration: none; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.panel { padding: 28px; }
.check-list { display: grid; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--muted); }
.check-list li::before { content:"✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 900; }
.note { margin-top: 16px; padding: 16px 18px; border-radius: 20px; background: rgba(255,255,255,.76); border: 1px solid var(--line); font-size: .94rem; }
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
.flow-item { counter-increment: step; background: var(--card); border: 1px solid rgba(255,255,255,.68); border-radius: 24px; padding: 22px 18px; box-shadow: var(--shadow-soft); }
.flow-item::before { content:"0" counter(step); display: inline-grid; place-items: center; width: 36px; height: 36px; margin-bottom: 12px; border-radius: 50%; color:#fff; background: var(--accent); font-weight:900; font-size:.86rem; }
.flow-item h3 { margin: 0 0 6px; font-size: 1rem; }
.flow-item p { margin: 0; font-size: .92rem; }
.menu-list { display: grid; gap: 14px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 20px; box-shadow: var(--shadow-soft); }
.menu-item h3 { margin: 0 0 6px; font-size: 1.08rem; }
.menu-item p { margin: 0; font-size: .94rem; }
.price { font-weight: 900; color: var(--accent-dark); white-space: nowrap; }
.profile-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.profile-photo { min-height: 420px; border-radius: 34px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.76); box-shadow: var(--shadow); overflow: hidden; padding: 14px; }
.profile-photo .profile-photo-main { width: 100%; height: 100%; min-height: 390px; object-fit: cover; border-radius: 24px; }
.profile-copy h2 { margin-top: 0; }
.profile-copy p { margin: 14px 0 0; }
.profile-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 20px; }
.profile-point { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 15px; color: var(--muted); }
.profile-point strong { color: var(--accent-dark); display: block; margin-bottom: 4px; }
.instagram-box, .cta-box, .line-qr-box { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.qr-card { width: 220px; padding: 15px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.qr-card img { width: 100%; height: auto; border-radius: 14px; }
.follow-line { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.inline-heart { display: inline-block; width: 1.05em; height: 1.05em; background: var(--accent); transform: rotate(-45deg); position: relative; margin-left: 4px; }
.inline-heart::before, .inline-heart::after { content:""; position: absolute; width: 1.05em; height: 1.05em; border-radius: 50%; background: var(--accent); }
.inline-heart::before { top: -.52em; left: 0; }
.inline-heart::after { left: .52em; top: 0; }
.footer { padding: 34px 0 42px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; font-size:.9rem; }
.mobile-sticky { display: none; }
@media (max-width: 980px) { .link-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .container { width: min(100% - 24px, var(--max)); }
  .header-inner { min-height: auto; padding: 12px 0 10px; align-items: stretch; flex-direction: column; gap: 10px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-message { align-items: flex-start; }
  .brand-message img { width: 48px; height: 48px; }
  .nav-button { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.72); color: var(--accent-dark); font-weight: 900; letter-spacing: .05em; }
  .nav-button::after { content:"＋"; margin-left: 10px; }
  .nav { display: none; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .nav-toggle:checked + .nav-button::after { content:"−"; }
  .nav-toggle:checked + .nav-button + .nav { display: grid; }
  .nav a { display:flex; align-items:center; justify-content:center; min-height:42px; font-size:.82rem; padding:8px; background:rgba(255,255,255,.88); border:1px solid var(--line); text-align:center; }
  .hero { padding: 38px 0 34px; }
  .hero-grid, .cards, .link-cards, .two-col, .flow, .band-inner, .profile-grid, .profile-points, .instagram-box, .cta-box, .line-qr-box { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 2.04rem; }
  
.brand-message {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 15px;
  border-radius: 22px;
  background: rgba(255, 252, 244, .78);
  border: 1px solid rgba(108, 91, 73, .16);
  box-shadow: var(--shadow-soft);
  color: var(--logo-charcoal);
  font-weight: 800;
  max-width: 38rem;
}
.brand-message img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
  flex: 0 0 auto;
}

.hero-card { border-radius: 28px; padding: 12px; }
  .hero-card > img.hero-main-photo { min-height: 248px; }
  .motif-chip { display: none; }
  section { padding: 38px 0; }
  .button, .hero-actions .button, .band-inner .button, .instagram-box .button, .cta-box .button, .line-qr-box .button { width: 100%; }
  .menu-item { grid-template-columns: 1fr; }
  .price { white-space: normal; }
  .profile-photo { min-height: auto; }
  .profile-photo .profile-photo-main { min-height: 280px; }
  .qr-card { width: min(220px, 72vw); justify-self: center; }
  body { padding-bottom: 78px; }
  .mobile-sticky { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70; }
  .mobile-sticky .button { width: 100%; box-shadow: 0 16px 34px rgba(169,48,106,.28); }
}
@media (max-width: 430px) {
  .hero h1, .page-hero h1 { font-size: 1.86rem; }
  .eyebrow { font-size: .77rem; }
  .card, .panel, .info-card, .menu-item { padding: 18px; }
  .nav a { font-size: .78rem; }
}

.cta-note { margin: 10px 0 0; color: var(--muted); font-size: .9rem; }

/* AMOR SUI final overrides */
.hero-card > img.hero-main-photo { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.motif-chip img, .icon-badge img { width: 22px; height: 22px; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 0; }
.icon-badge img { width: 34px; height: 34px; }
.line-qr-box { display: grid; grid-template-columns: 1fr 220px; gap: 22px; align-items: center; }
.qr-card { justify-self: center; width: 220px; padding: 16px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.qr-card img { width: 100%; height: auto; border-radius: 14px; }
.qr-link { display: block; line-height: 0; border-radius: 14px; transition: transform .16s ease, opacity .16s ease; }
.qr-link:hover, .qr-link:focus-visible { transform: translateY(-2px); opacity: .92; outline: 2px solid rgba(216,75,138,.28); outline-offset: 4px; }
.inline-heart { display: inline-block; width: 1.05em; height: 1.05em; margin-left: .25em; vertical-align: -0.12em; background: var(--accent); clip-path: path('M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'); transform: scale(.055); transform-origin: left top; }
@media (max-width: 900px) { .line-qr-box { grid-template-columns: 1fr; } .qr-card { width: min(220px, 72vw); } .motif-chip { display: none; } }

/* Body-change sections */
.result-banner {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,224,240,.9));
  border: 1px solid rgba(216,75,138,.22);
  box-shadow: var(--shadow-soft);
  max-width: 39rem;
}
.result-copy { color: var(--accent-dark); font-weight: 900; letter-spacing: .12em; font-size: .82rem; }
.result-main { margin-top: 4px; font-weight: 950; font-size: clamp(1.55rem, 3.2vw, 2.55rem); line-height: 1.15; color: var(--text); }
.result-main span { color: var(--accent); font-size: 1.28em; letter-spacing: .02em; }
.result-banner p { margin: 8px 0 0; color: var(--muted); font-weight: 800; }
.flyer-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,232,242,.88) 48%, rgba(255,244,211,.88));
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
}
.result-stamp {
  width: 190px;
  height: 190px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle at 30% 20%, #f8efff, #b253bc 72%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(169,48,106,.25);
  transform: rotate(-3deg);
}
.result-stamp span { font-weight: 900; font-size: .95rem; }
.result-stamp strong { display: block; font-size: 3.05rem; line-height: 1; letter-spacing: -.04em; }
.result-stamp small { display: block; font-weight: 900; line-height: 1.4; }
.mini-note { margin: 14px 0 0; color: var(--muted); font-size: .9rem; }
.effect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.effect-grid article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.effect-grid span { color: var(--accent); font-weight: 950; letter-spacing: .12em; font-size: .8rem; }
.effect-grid strong { display: block; margin-top: 6px; color: var(--accent-dark); font-size: 1.05rem; }
.effect-grid p { margin: 8px 0 0; color: var(--muted); font-size: .93rem; line-height: 1.7; }
.result-panel { margin-top: 0; }
.compact-effects { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) {
  .flyer-panel { grid-template-columns: 1fr; padding: 22px; }
  .result-stamp { width: 154px; height: 154px; justify-self: center; }
  .result-stamp strong { font-size: 2.45rem; }
  .effect-grid { grid-template-columns: 1fr; }
  .result-main { font-size: 1.55rem; }
}

/* Heart icon final fix */
.inline-heart {
  display: inline-block;
  width: .9em;
  height: .9em;
  margin-left: .35em;
  vertical-align: -0.08em;
  background: var(--accent);
  transform: rotate(-45deg);
  position: relative;
  clip-path: none;
}
.inline-heart::before,
.inline-heart::after {
  content: "";
  position: absolute;
  width: .9em;
  height: .9em;
  border-radius: 50%;
  background: var(--accent);
}
.inline-heart::before { top: -.45em; left: 0; }
.inline-heart::after { left: .45em; top: 0; }


/* Navigation and menu refinements */
.back-home-section { padding: 18px 0 46px; text-align: center; }
.back-home-section .button { min-width: 220px; }
.menu-item { grid-template-columns: 1fr; }
.menu-place-note { margin-top: 16px; }
.menu-list + .note { margin-top: 18px; }
@media (max-width: 900px) {
  .back-home-section { padding: 8px 0 32px; }
  .back-home-section .button { width: 100%; }
}


/* Area / place section */
.area-section { padding-top: 42px; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.area-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.area-card h3 { margin: 8px 0 8px; color: var(--accent-dark); font-size: 1.08rem; }
.area-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.75; }
.area-label {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,231,242,.96), rgba(255,244,215,.96));
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.area-panel .area-grid { margin-top: 18px; }
.area-grid-in-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-area { margin: 0 0 10px; color: var(--muted); line-height: 1.8; font-size: .9rem; }
@media (max-width: 900px) {
  .area-grid, .area-grid-in-panel { grid-template-columns: 1fr; }
}


/* Gut motif integration */
.hero-card {
  isolation: isolate;
}
.hero-gut-sticker {
  position: absolute;
  left: 18px;
  bottom: 74px;
  width: clamp(108px, 22vw, 168px);
  max-width: 38%;
  border-radius: 24px;
  filter: drop-shadow(0 18px 28px rgba(115, 83, 57, .18));
  z-index: 2;
  pointer-events: none;
}
.gut-cards {
  align-items: stretch;
}
.gut-card {
  display: flex;
  flex-direction: column;
}
.gut-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  margin-bottom: 10px;
}
.gut-visual img {
  width: min(100%, 178px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(110, 83, 56, .12));
}
.icon-badge.is-gut {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,250,245,.98), rgba(255,239,228,.94));
}
.icon-badge.is-gut img {
  width: 50px;
  height: 50px;
}
.gut-inline-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.gut-inline-item {
  margin: 0;
  text-align: center;
  padding: 14px 12px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(108, 91, 73, .12);
  box-shadow: var(--shadow-soft);
}
.gut-inline-item img {
  width: min(100%, 132px);
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
.gut-inline-item figcaption {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.55;
}
.gut-side-visual {
  display: flex;
  justify-content: center;
  margin: 2px 0 14px;
}
.gut-side-visual img {
  width: min(180px, 100%);
  height: auto;
  display: block;
}
.profile-photo {
  position: relative;
}
.profile-gut-sticker {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: clamp(110px, 26vw, 156px);
  max-width: 38%;
  border-radius: 22px;
  filter: drop-shadow(0 16px 26px rgba(115, 83, 57, .18));
}
.gut-anim-float {
  animation: gutFloat 5.2s ease-in-out infinite;
}
.gut-anim-drift {
  animation: gutDrift 6.4s ease-in-out infinite;
}
.gut-anim-glow {
  animation: gutGlow 4.6s ease-in-out infinite;
}
.gut-anim-bounce {
  animation: gutBounce 4s ease-in-out infinite;
}
@keyframes gutFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1.2deg); }
}
@keyframes gutDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  35% { transform: translate3d(-4px, -7px, 0); }
  70% { transform: translate3d(4px, 3px, 0); }
}
@keyframes gutGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 10px 18px rgba(110, 83, 56, .12)); }
  50% { transform: scale(1.035); filter: drop-shadow(0 16px 28px rgba(216, 75, 138, .18)); }
}
@keyframes gutBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-8px) scale(1.02); }
  60% { transform: translateY(-2px) scale(.995); }
}
@media (max-width: 900px) {
  .hero-gut-sticker {
    left: 14px;
    bottom: 46px;
    width: min(126px, 36vw);
  }
  .gut-inline-group {
    grid-template-columns: 1fr;
  }
  .gut-visual {
    min-height: 148px;
  }
  .gut-visual img {
    width: min(100%, 148px);
  }
  .icon-badge.is-gut {
    width: 62px;
    height: 62px;
  }
  .icon-badge.is-gut img {
    width: 46px;
    height: 46px;
  }
  .profile-gut-sticker {
    width: min(120px, 34vw);
    right: 10px;
    bottom: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gut-anim-float,
  .gut-anim-drift,
  .gut-anim-glow,
  .gut-anim-bounce,
  .motif-chip,
  body {
    animation: none !important;
  }
}


/* Semantic icon refinements */
.side-visual {
  display: flex;
  justify-content: center;
  margin: 2px 0 14px;
}
.side-visual img {
  width: min(176px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(110, 83, 56, .10));
}
.hero-gut-sticker { display: none; }
.profile-gut-sticker { display: none; }


/* Page and panel icon integration */
.page-hero-with-visual {
  grid-template-columns: 1fr minmax(140px, 220px);
  align-items: center;
  gap: 24px;
}
.page-hero-visual {
  justify-self: end;
}
.page-hero-visual img {
  width: min(100%, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(110, 83, 56, .12));
}
.section-head.has-visual {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 180px);
  align-items: center;
  gap: 18px;
}
.section-head.centered-head {
  text-align: center;
}
.section-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-visual-wrap.small {
  margin-bottom: 12px;
}
.section-visual {
  width: min(100%, 180px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(110, 83, 56, .1));
}
.band-copy {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 14px;
}
.mini-icon-badge {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--shadow-soft);
}
.mini-icon-badge img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.panel-visual-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.panel-visual-wrap.small-left {
  margin-bottom: 8px;
}
.panel-visual {
  width: min(170px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(110, 83, 56, .1));
}
@media (max-width: 900px) {
  .page-hero-with-visual,
  .section-head.has-visual,
  .band-copy {
    grid-template-columns: 1fr;
  }
  .page-hero-visual,
  .section-visual-wrap,
  .panel-visual-wrap {
    justify-self: center;
    justify-content: center;
  }
  .mini-icon-badge {
    margin: 0 auto;
  }
  .page-hero-visual img { width: min(190px, 52vw); }
  .section-visual { width: min(170px, 48vw); }
  .panel-visual { width: min(160px, 46vw); }
}


/* Profile hero photo replacement */
.page-hero-visual img.profile-hero-photo {
  width: 190px;
  height: 190px;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  padding: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .page-hero-visual img.profile-hero-photo {
    width: min(190px, 56vw);
    height: min(190px, 56vw);
  }
}


/* Diet course menu emphasis */
.menu-item-featured {
  border-color: rgba(198, 84, 177, .30);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,226,255,.88));
  box-shadow: 0 18px 34px rgba(123, 78, 163, .14);
}
.menu-item-featured h3::before {
  content: "おすすめ";
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c95cc0, #7b4ea3);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .08em;
  vertical-align: middle;
}


/* Safety / trust copy additions */
.hero-info-box {
  display: grid;
  gap: 3px;
  max-width: 42rem;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(116, 95, 155, .20);
  box-shadow: var(--shadow-soft);
}
.hero-info-box strong {
  color: var(--accent-dark);
  font-weight: 950;
  letter-spacing: .04em;
}
.hero-info-box span {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.65;
}
.price-note strong {
  color: var(--accent-dark);
}
@media (max-width: 900px) {
  .hero-info-box {
    margin-top: 16px;
    padding: 13px 14px;
  }
}

/* Google review section */
.review-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.review-qr-card {
  width: 190px;
}
.review-box .button-secondary {
  margin-top: 16px;
}
@media (max-width: 900px) {
  .review-box {
    grid-template-columns: 1fr;
  }
  .review-qr-card {
    width: min(190px, 70vw);
  }
}

/* FAQ section */
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list-compact {
  max-width: 920px;
}
.faq-item {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--accent-dark);
  font-weight: 900;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}
.faq-more {
  margin-top: 20px;
}
.faq-contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .faq-contact-panel {
    grid-template-columns: 1fr;
  }
  .faq-item summary {
    padding-right: 48px;
  }
}



/* Bright yellow theme final override */
body {
  background:
    radial-gradient(circle at 9% 3%, rgba(255, 230, 83, .68), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(255, 194, 78, .44), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(255, 248, 184, .72), transparent 26rem),
    linear-gradient(135deg, #fffde9 0%, #ffe75a 20%, #fff8b8 42%, #ffd774 62%, #fffdf0 80%, #ffda42 100%);
  background-size: 340% 340%;
}
body::before { background: rgba(255, 230, 83, .58); }
body::after { background: rgba(255, 184, 54, .40); }
.site-header { background: rgba(255, 253, 232, .92); }
.nav a { color: #7b570c; }
.nav .line-button,
.button-primary {
  background: linear-gradient(135deg, #ffbf22, #b87500);
  box-shadow: 0 12px 28px rgba(184,117,0,.24);
}
.nav .line-button:hover,
.nav .line-button:focus-visible {
  background: linear-gradient(135deg, #ffd447, var(--accent-dark));
}
.button-secondary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, .78);
  border-color: rgba(174, 132, 24, .24);
}
.soft-band {
  background: linear-gradient(90deg, rgba(255,244,150,.92), rgba(255,254,232,.92), rgba(255,225,102,.92));
}
.card, .panel, .info-card,
.link-card,
.area-card,
.faq-item,
.profile-point,
.menu-item {
  background: rgba(255,255,250,.92);
}
.result-stamp {
  background: radial-gradient(circle at 30% 20%, #fff7a8, #f4a800 72%);
  box-shadow: 0 16px 34px rgba(184,117,0,.24);
}
.flyer-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,248,178,.92) 48%, rgba(255,218,98,.88));
}
.area-label {
  background: linear-gradient(135deg, rgba(255,244,150,.98), rgba(255,254,232,.98));
}
.icon-badge,
.mini-icon-badge {
  background: linear-gradient(135deg, rgba(255,254,235,.98), rgba(255,237,142,.96));
}
.brand-message {
  background: rgba(255, 253, 232, .82);
  border-color: rgba(174, 132, 24, .20);
}
.label {
  background: rgba(255,255,255,.70);
  border-color: rgba(174,132,24,.22);
}
.inline-heart,
.inline-heart::before,
.inline-heart::after {
  background: #f4a800;
}
.section-kicker,
.link-card::after,
.breadcrumb a,
.card h3,
.info-card h3,
.link-card h3,
.area-card h3,
.profile-point strong,
.faq-item summary {
  color: var(--accent-dark);
}

/* Hero -10kg impact */
.hero-highlight-line {
  color: var(--accent-dark);
  font-size: 1.14em;
  letter-spacing: .01em;
  text-shadow: 0 10px 24px rgba(184,117,0,.16);
}
.hero-result-panel {
  display: grid;
  gap: 8px;
  max-width: 38rem;
  margin: 22px 0 0;
  padding: 18px 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.96), rgba(255,247,174,.92) 46%, rgba(255,216,77,.88) 100%);
  border: 1px solid rgba(174,132,24,.28);
  box-shadow: 0 18px 42px rgba(139,96,10,.18);
}
.hero-result-main {
  display: grid;
  gap: 2px;
}
.hero-result-label {
  color: var(--accent-dark);
  font-weight: 950;
  letter-spacing: .12em;
  font-size: .82rem;
}
.hero-result-main strong {
  color: var(--text);
  font-weight: 950;
  line-height: 1;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: -.04em;
}
.hero-result-main strong span {
  color: #d94b18;
  font-size: 1.12em;
}
.hero-result-main small {
  color: var(--accent-dark);
  font-weight: 900;
  font-size: .96rem;
}
.hero-result-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}
.label-strong {
  background: linear-gradient(135deg, #fff7a8, #ffd84d) !important;
  border-color: rgba(174,132,24,.36) !important;
  color: #8b5200 !important;
  box-shadow: 0 10px 22px rgba(139,96,10,.12);
}
@media (max-width: 900px) {
  .hero-result-panel {
    padding: 16px;
    border-radius: 24px;
  }
  .hero-result-main strong {
    font-size: clamp(2.05rem, 13vw, 3.3rem);
  }
}

/* Stronger -10kg hero */
.hero h1 {
  max-width: 780px;
}
.hero-highlight-line {
  display: inline-block;
  font-size: 1.34em;
  color: #d94b18;
  text-shadow: 0 12px 26px rgba(184,117,0,.22);
}
.hero-result-panel {
  max-width: 42rem;
  padding: 20px 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.98), rgba(255,246,124,.96) 42%, rgba(255,203,45,.94) 100%);
  border: 2px solid rgba(174,132,24,.34);
  box-shadow: 0 22px 52px rgba(139,96,10,.22);
}
.hero-result-label {
  font-size: .9rem;
  color: #8b5200;
}
.hero-result-main strong {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}
.hero-result-main strong span {
  color: #d94b18;
  text-shadow: 0 10px 26px rgba(217,75,24,.18);
}
.hero-result-main small {
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: #8b5200;
}
.hero-result-panel p {
  font-size: .74rem;
  opacity: .78;
}
.result-stamp strong {
  font-size: 3.35rem;
}
@media (max-width: 900px) {
  .hero-highlight-line {
    font-size: 1.22em;
  }
  .hero-result-panel {
    padding: 18px;
  }
  .hero-result-main strong {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }
}

/* -10kg watashi hero copy */
.hero-highlight-line {
  font-size: 1.42em;
  color: #d94b18;
  letter-spacing: -.02em;
}
.hero-result-main strong {
  letter-spacing: -.06em;
}
.hero-result-main strong span {
  font-size: 1.18em;
}
@media (max-width: 900px) {
  .hero-highlight-line {
    font-size: 1.28em;
  }
}

/* Maximum hero impact */
.hero {
  padding-top: clamp(36px, 6vw, 76px);
}
.hero-eyebrow-impact {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff28f, #ffbe26);
  border: 1px solid rgba(184,117,0,.26);
  box-shadow: 0 12px 26px rgba(184,117,0,.16);
  color: #8b5200;
}
.hero-impact-title {
  margin-top: 14px;
  line-height: .98;
}
.hero-impact-title .title-line {
  font-size: clamp(2.25rem, 7.2vw, 5.8rem);
}
.hero-highlight-line {
  display: inline-block;
  position: relative;
  width: fit-content;
  font-size: clamp(3.6rem, 11vw, 8.4rem) !important;
  line-height: .86;
  color: #d93414 !important;
  letter-spacing: -.07em;
  text-shadow:
    0 3px 0 rgba(255,255,255,.75),
    0 16px 34px rgba(217,52,20,.22);
}
.hero-highlight-line::after {
  content: "";
  position: absolute;
  left: .04em;
  right: .02em;
  bottom: .02em;
  height: .18em;
  background: rgba(255, 231, 54, .72);
  border-radius: 999px;
  z-index: -1;
}
.hero-campaign-copy {
  display: grid;
  gap: 3px;
  max-width: 42rem;
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(184,117,0,.20);
}
.hero-campaign-copy span {
  color: var(--accent-dark);
  font-weight: 900;
}
.hero-campaign-copy strong {
  color: #d93414;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  line-height: 1.35;
}
.hero-result-panel {
  max-width: 44rem;
  margin-top: 16px;
  padding: 22px 26px 16px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.98), rgba(255,242,91,.98) 39%, rgba(255,190,38,.96) 100%);
  border: 2px solid rgba(184,117,0,.38);
  box-shadow:
    0 28px 64px rgba(139,96,10,.24),
    inset 0 1px 0 rgba(255,255,255,.75);
}
.hero-result-label {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: #8b5200;
  font-weight: 950;
  font-size: .94rem;
}
.hero-result-main strong {
  font-size: clamp(3.3rem, 9vw, 7rem) !important;
  color: #2f240f;
  letter-spacing: -.08em;
  line-height: .86;
}
.hero-result-main strong span {
  color: #d93414;
  font-size: 1.12em;
}
.hero-result-main small {
  color: #8b5200;
  font-size: clamp(1.04rem, 2.4vw, 1.45rem);
  font-weight: 950;
}
.hero-small-note,
.hero-result-panel p {
  margin-top: 4px;
  font-size: .68rem !important;
  line-height: 1.45 !important;
  opacity: .62;
}
.hero-main-cta {
  font-size: 1.03rem;
  padding-inline: 24px;
  transform: translateY(0);
}
.hero-main-cta:hover,
.hero-main-cta:focus-visible {
  transform: translateY(-2px);
}
.label-strong {
  font-size: .98rem;
  font-weight: 950;
}
@media (max-width: 900px) {
  .hero-impact-title .title-line {
    font-size: clamp(2.05rem, 12vw, 3.7rem);
  }
  .hero-highlight-line {
    font-size: clamp(4.2rem, 22vw, 6.4rem) !important;
  }
  .hero-result-panel {
    padding: 18px 16px 14px;
    border-radius: 26px;
  }
  .hero-result-main strong {
    font-size: clamp(3.4rem, 18vw, 5.4rem) !important;
  }
}

/* Approved concept copy */
.hero-campaign-copy-concept {
  gap: 8px;
}
.hero-campaign-copy-concept span {
  font-size: clamp(1rem, 2vw, 1.24rem);
  color: var(--accent-dark);
  font-weight: 950;
}
.hero-campaign-copy-concept strong {
  font-size: clamp(1.36rem, 3vw, 2.15rem);
  line-height: 1.28;
  color: #d93414;
}
@media (max-width: 900px) {
  .hero-campaign-copy-concept strong {
    font-size: clamp(1.22rem, 5.8vw, 1.72rem);
  }
}


/* Visibility tuning on bright yellow theme */
:root {
  --text: #2f220f;
  --muted: #5d4a30;
  --line: rgba(138, 100, 18, .26);
}

body {
  color: var(--text);
}

.site-header {
  background: rgba(255, 252, 236, .96);
  box-shadow: 0 10px 26px rgba(120, 86, 18, .10);
}

.nav a,
.brand-sub,
.section-kicker,
.breadcrumb,
.breadcrumb a,
.footer-area,
.footer small {
  color: #6a4a0c;
}

.hero-impact-title,
.hero h1,
.page-hero h1,
h2,
h3,
.card h3,
.info-card h3,
.link-card h3,
.area-card h3,
.profile-point strong,
.faq-item summary {
  color: #2f220f;
}

.hero-impact-title .title-line,
.hero h1 .title-line {
  text-shadow: 0 2px 0 rgba(255,255,255,.55);
}

.hero-highlight-line {
  text-shadow:
    0 3px 0 rgba(255,255,255,.88),
    0 18px 34px rgba(217, 52, 20, .18);
}

.hero,
.page-hero {
  position: relative;
}

.hero-copy > p,
.page-lead,
.section-text,
.card p,
.info-card p,
.link-card p,
.area-card p,
.menu-item p,
.profile-copy p,
.faq-item p,
.panel p,
.hero-result-panel p,
.hero-campaign-copy span,
.hero-result-main small,
.brand-message,
.label,
.soft-band,
.review-box p,
.review-box h2 {
  color: var(--text);
}

.panel,
.card,
.info-card,
.link-card,
.area-card,
.menu-item,
.profile-point,
.faq-item,
.review-box,
.brand-message,
.hero-campaign-copy,
.hero-result-panel,
.area-label,
.label,
.flyer-panel,
.qr-card,
.contact-card,
.result-card {
  background: rgba(255, 255, 252, .92) !important;
  border-color: rgba(138, 100, 18, .22) !important;
  box-shadow: 0 12px 32px rgba(120, 86, 18, .10);
}

.hero-result-panel {
  background:
    radial-gradient(circle at 10% 8%, rgba(255,255,255,.99), rgba(255,244,158,.98) 42%, rgba(255,206,68,.96) 100%) !important;
  border: 2px solid rgba(138, 100, 18, .34) !important;
}

.hero-result-label,
.label,
.area-label,
.result-stamp span,
.result-stamp small {
  color: #734f06 !important;
}

.label,
.area-label {
  background: rgba(255,255,255,.84) !important;
}

.result-stamp {
  box-shadow: 0 18px 40px rgba(120, 86, 18, .18);
}

.result-stamp strong,
.hero-result-main strong,
.hero-campaign-copy strong {
  color: #c83d17;
}

.button-primary,
.nav .line-button,
.hero-main-cta {
  color: #fffdf8;
  box-shadow: 0 14px 28px rgba(120, 86, 18, .18);
}

.button-secondary {
  background: rgba(255,255,255,.88);
  color: #7a560d;
  border-color: rgba(138, 100, 18, .24);
}

.hero-small-note,
.hero-result-panel p,
.note,
small.note {
  color: #6b5739 !important;
  opacity: .88 !important;
}

.footer {
  background: rgba(255, 251, 235, .78);
  border-top: 1px solid rgba(138, 100, 18, .16);
}

.mobile-sticky {
  background: rgba(255, 252, 236, .86);
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(255, 252, 236, .98);
  }
  .hero-copy > p,
  .page-lead,
  .section-text,
  .card p,
  .info-card p,
  .link-card p,
  .area-card p,
  .menu-item p,
  .profile-copy p,
  .faq-item p,
  .panel p {
    color: #352712;
  }
}

/* Payment note */
.payment-note-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,252,.92);
  border: 1px solid rgba(138, 100, 18, .22);
  box-shadow: var(--shadow-soft);
}
.payment-note-box p {
  margin: 0;
}
.payment-note-box .section-kicker {
  margin-bottom: 8px;
}

/* Square payment link */
.payment-note-box a,
.faq-item a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* 20260601 menu and owner update */
.owner-preview-section,
.home-menu-update-section {
  padding: clamp(44px, 7vw, 86px) 0;
}
.owner-preview-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}
.owner-photo-card {
  padding: 12px;
  border-radius: 34px;
  background: rgba(255,255,252,.92);
  border: 1px solid rgba(138,100,18,.22);
  box-shadow: var(--shadow);
}
.owner-photo-card img {
  display: block;
  width: 100%;
  border-radius: 26px;
}
.owner-preview-copy .button { margin-top: 14px; }
.center-actions { text-align: center; margin-top: 28px; }
.price-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.compact-price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card {
  position: relative;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,252,.94);
  border: 1px solid rgba(138,100,18,.22);
  box-shadow: var(--shadow-soft);
}
.price-card.is-trial,
.price-card.is-premium {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,246,190,.96));
  border-color: rgba(184,117,0,.32);
}
.price-card h3 { margin: 0 0 8px; }
.price-menu-sub { margin: 0 0 8px; font-weight: 800; color: #6a4a0c; }
.price-line,
.trial-price,
.flora-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 12px;
  color: #a05212;
}
.price-line strong,
.trial-price strong,
.flora-price strong {
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: .95;
  letter-spacing: -.04em;
  color: #c65a18;
}
.price-line span,
.trial-price small,
.flora-price span,
.trial-price span {
  font-weight: 800;
  color: #5d4a30;
}
.price-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbe26, #f58a1f);
  color: #fff;
  font-weight: 900;
}
.price-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(255,238,170,.9);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.price-card-icon img { width: 42px; height: 42px; object-fit: contain; }
.trial-offer-panel {
  display: grid;
  grid-template-columns: 150px 1fr minmax(230px, 320px);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 40px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,242,170,.94));
  border: 1px solid rgba(184,117,0,.28);
  box-shadow: var(--shadow);
}
.trial-ribbon {
  width: 138px;
  height: 138px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #ffbe26, #f58a1f);
  color: #fff;
  font-weight: 950;
  line-height: 1.45;
  box-shadow: 0 16px 32px rgba(184,117,0,.22);
}
.trial-sub { font-weight: 950; color: #2f220f; font-size: clamp(1.1rem, 2vw, 1.35rem); margin: 0; }
.trial-points { display: grid; gap: 10px; }
.trial-points span {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(138,100,18,.18);
  font-weight: 800;
}
.flora-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 24px;
  padding: clamp(24px, 5vw, 40px);
  border-radius: 34px;
  background: rgba(255,255,252,.94);
  border: 1px solid rgba(138,100,18,.22);
  box-shadow: var(--shadow-soft);
}
.flora-list-box {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,247,198,.92), rgba(255,255,252,.92));
}
.flora-list-box ul { margin: 12px 0 0; padding-left: 1.2em; }
.flora-list-box li { margin: 6px 0; font-weight: 700; }
.course-consult-panel { text-align: center; }
.menu-payment-box { align-self: stretch; }
@media (max-width: 900px) {
  .owner-preview-grid,
  .trial-offer-panel,
  .flora-panel,
  .price-menu-grid,
  .compact-price-grid {
    grid-template-columns: 1fr;
  }
  .owner-photo-card { max-width: 320px; margin: 0 auto; }
  .trial-ribbon { width: 112px; height: 112px; }
  .price-card { padding: 18px; }
}


/* Owner photo placement tune */
.hero-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card > img.hero-owner-photo {
  display: block;
  width: min(72%, 360px);
  align-self: center;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(143,85,55,.16);
}
.hero-card > img.hero-main-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
}
@media (max-width: 900px) {
  .hero-card > img.hero-owner-photo {
    width: min(68vw, 320px);
  }
}


/* Menu page refinements */
.course-consult-panel {
  text-align: left;
  display: grid;
  gap: 10px;
}
.course-consult-panel h2 {
  margin: 0;
}
.course-consult-panel .section-text {
  margin: 0;
  max-width: 52rem;
}
.course-consult-panel .button {
  justify-self: start;
  margin-top: 6px;
}
.course-feature-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.course-feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}
.course-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 900;
}
.menu-consult-box {
  text-align: left;
}
.payment-note-box-compact {
  margin-top: 4px;
  padding: 16px 20px;
  border-radius: 20px;
}
.payment-note-box-compact h2,
.payment-note-box-compact .section-kicker {
  margin-bottom: 6px;
}
.payment-note-box-compact p {
  margin: 0;
}
@media (max-width: 900px) {
  .course-consult-panel .button {
    justify-self: stretch;
  }
}


/* Hero visual balance tune */
.hero-visual-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}
.hero-owner-card {
  justify-self: center;
  width: min(72%, 320px);
  padding: 12px;
  border-radius: 28px;
  background: rgba(255,255,252,.92);
  border: 1px solid rgba(138,100,18,.18);
  box-shadow: var(--shadow-soft);
}
.hero-owner-card .hero-owner-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 22px;
}
.hero-visual-stack .hero-card {
  display: block;
}
.hero-visual-stack .hero-card > img.hero-main-photo {
  width: 100%;
  height: auto;
  min-height: 0;
}
.menu-consult-box .side-visual {
  margin: 0 0 10px;
}
.menu-consult-box .side-visual img {
  width: min(140px, 100%);
}
@media (max-width: 900px) {
  .hero-owner-card {
    width: min(70vw, 320px);
  }
}


/* Global balance and spacing tune */
section {
  padding: 40px 0;
}
.section-head {
  margin-bottom: 18px;
}
.hero-grid {
  gap: 30px;
}
.hero-visual-stack {
  gap: 14px;
}
.soft-band {
  padding: 22px 0;
}
.cards,
.link-cards,
.price-menu-grid {
  gap: 14px;
}
.card, .panel, .info-card {
  padding: 20px;
}
.page-hero-with-visual {
  gap: 18px;
  grid-template-columns: 1fr minmax(128px, 200px);
}
.page-hero-visual {
  align-self: center;
}
.page-hero-visual img {
  width: min(100%, 190px);
}
.section-head.has-visual {
  gap: 14px;
  grid-template-columns: 1fr minmax(110px, 160px);
}
.section-visual-wrap.small {
  margin-bottom: 8px;
}
.section-visual {
  width: min(100%, 150px);
}
.band-copy {
  grid-template-columns: 72px 1fr;
  gap: 12px;
}
.mini-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}
.mini-icon-badge img {
  width: 56px;
  height: 56px;
}
.home-menu-update-section {
  padding: clamp(34px, 6vw, 58px) 0;
}
.price-card {
  padding: 18px;
}
.trial-offer-panel,
.flora-panel,
.menu-consult-box,
.course-consult-panel {
  gap: 16px;
}
.side-visual {
  justify-content: flex-start;
  margin: 0 0 10px;
}
.side-visual img {
  width: min(132px, 100%);
}
.menu-consult-box .side-visual {
  margin: 0 0 8px;
}
.menu-consult-box .side-visual img {
  width: min(116px, 100%);
}
.back-home-section {
  padding: 10px 0 28px;
}
@media (max-width: 900px) {
  section {
    padding: 34px 0;
  }
  .hero-grid, .page-hero-with-visual,
  .section-head.has-visual {
    gap: 16px;
  }
  .band-copy {
    grid-template-columns: 64px 1fr;
  }
  .mini-icon-badge {
    width: 64px;
    height: 64px;
  }
  .mini-icon-badge img {
    width: 48px;
    height: 48px;
  }
}


/* Hero salon placement refinement */
.hero-visual-stack {
  align-self: start;
}
.hero-access-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 300px);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}
.hero-info-box {
  margin: 0;
}
.hero-salon-card {
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,252,.92);
  border: 1px solid rgba(138,100,18,.18);
  box-shadow: var(--shadow-soft);
}
.hero-salon-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.hero-salon-card .photo-note {
  margin: 8px 4px 0;
  text-align: left;
  font-size: .78rem;
}
.hero-owner-card {
  width: min(76%, 340px);
}
.hero-result-panel {
  margin-top: 18px;
}
.label-row {
  margin-top: 18px;
}
.hero-actions {
  margin-top: 22px;
}
@media (max-width: 1100px) {
  .hero-access-row {
    grid-template-columns: 1fr 240px;
  }
}
@media (max-width: 900px) {
  .hero-access-row {
    grid-template-columns: 1fr;
  }
  .hero-salon-card {
    max-width: 340px;
  }
  .hero-owner-card {
    width: min(72vw, 340px);
  }
}


/* Hero responsive rebalance */
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .72fr);
  gap: 44px;
  align-items: start;
}
.hero-grid > :first-child {
  min-width: 0;
}
.hero-visual-stack {
  justify-self: end;
  width: 100%;
}
.hero-owner-card {
  width: min(100%, 340px);
  margin-top: 8px;
}
.hero-intro-row {
  display: block;
}
.hero-mobile-owner {
  display: none;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-intro-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 12px;
    align-items: start;
  }
  .hero-intro-row .eyebrow {
    margin-bottom: 0;
  }
  .hero-mobile-owner {
    display: block;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255,255,252,.96);
    border: 1px solid rgba(138,100,18,.18);
    box-shadow: var(--shadow-soft);
  }
  .hero-mobile-owner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
  }
  .hero h1,
  .hero-impact-title {
    margin-top: 8px;
  }
  .hero-visual-stack {
    display: none;
  }
}


/* Hero final tune for PC and mobile balance */
.hero > .container {
  width: min(100% - 40px, 1240px);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(250px, 0.78fr);
  gap: 34px;
  align-items: start;
}
.hero-visual-stack {
  justify-self: center;
  align-self: start;
}
.hero-owner-card {
  width: min(100%, 300px);
  margin-top: 4px;
}
.hero-result-panel,
.hero-campaign-copy,
.brand-message {
  max-width: 760px;
}
.hero-access-row {
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 290px);
  gap: 14px;
}
@media (max-width: 900px) {
  .hero > .container {
    width: min(100% - 22px, var(--max));
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-intro-row {
    position: relative;
    display: block;
    padding-right: 92px;
    min-height: 72px;
    margin-bottom: 2px;
  }
  .hero-mobile-owner {
    display: block;
    position: absolute;
    right: 0;
    top: -2px;
    width: 78px;
    padding: 4px;
    border-radius: 16px;
    background: rgba(255,255,252,.97);
    border: 1px solid rgba(138,100,18,.16);
    box-shadow: 0 10px 18px rgba(143,85,55,.12);
  }
  .hero-mobile-owner img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
  }
  .hero-intro-row .eyebrow {
    margin: 0;
  }
  .hero h1,
  .hero-impact-title {
    margin-top: 4px;
  }
  .hero-visual-stack {
    display: none;
  }
}


/* Additional hero balance correction */
.hero > .container {
  width: min(100% - 40px, 1320px);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 340px);
  gap: 38px;
}
.hero-campaign-copy,
.hero-result-panel,
.brand-message,
.hero-access-row,
.hero-actions,
.cta-note,
.label-row,
.hero-lead {
  max-width: none;
}
.hero-result-panel {
  width: 100%;
}
@media (max-width: 900px) {
  .hero > .container {
    width: min(100% - 22px, var(--max));
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-intro-row {
    padding-right: 84px;
    min-height: 0;
    margin-bottom: 0;
  }
  .hero-mobile-owner {
    width: 72px;
    top: 0;
    padding: 3px;
  }
  .hero-mobile-owner img {
    height: 88px;
  }
  .hero h1,
  .hero-impact-title {
    margin-top: 2px;
  }
  .hero-lead {
    margin-top: 12px;
  }
  .hero-campaign-copy {
    margin-top: 14px;
  }
  .hero-result-panel {
    margin-top: 14px;
  }
  .brand-message {
    margin-top: 14px;
  }
  .label-row {
    margin-top: 14px;
  }
  .hero-access-row {
    display: block !important;
    margin-top: 14px;
  }
  .hero-info-box {
    display: block;
    width: 100%;
    max-width: none;
    writing-mode: horizontal-tb;
  }
  .hero-info-box strong,
  .hero-info-box span {
    writing-mode: horizontal-tb;
    white-space: normal;
    word-break: keep-all;
  }
  .hero-salon-card {
    display: block;
    max-width: 320px;
    margin-top: 12px;
  }
  .hero-actions {
    margin-top: 18px;
  }
}


/* Top page slim and balance correction */
.hero {
  overflow: hidden;
}
.hero > .container {
  width: min(100% - 40px, 1280px);
}
.hero-grid {
  display: block;
  position: relative;
}
.hero-grid > :first-child {
  max-width: 980px;
  padding-right: 330px;
}
.hero-visual-stack {
  position: absolute;
  top: 6px;
  right: 0;
  width: 286px;
  justify-self: auto;
}
.hero-owner-card {
  width: 100%;
  margin-top: 0;
}
.hero-result-panel,
.hero-campaign-copy,
.brand-message,
.hero-access-row,
.hero-actions,
.cta-note,
.label-row,
.hero-lead {
  max-width: none;
}
.hero-result-panel {
  width: 100%;
}
.hero-campaign-copy {
  width: 100%;
}
.hero-access-row {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 16px;
}
.hero-info-box {
  margin: 0;
}
.home-menu-update-section {
  display: none !important;
}
.faq-top-link {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .hero > .container {
    width: min(100% - 22px, var(--max));
  }
  .hero-grid {
    display: block;
  }
  .hero-grid > :first-child {
    max-width: none;
    padding-right: 0;
  }
  .hero-visual-stack {
    display: none;
  }
  .hero-intro-row {
    position: relative;
    display: block;
    padding-right: 82px;
    min-height: 78px;
    margin-bottom: 2px;
  }
  .hero-intro-row .eyebrow {
    margin: 0;
  }
  .hero-mobile-owner {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 72px;
    padding: 3px;
    border-radius: 16px;
    background: rgba(255,255,252,.97);
    border: 1px solid rgba(138,100,18,.16);
    box-shadow: 0 10px 18px rgba(143,85,55,.12);
  }
  .hero-mobile-owner img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
  }
  .hero h1,
  .hero-impact-title {
    margin-top: 2px;
  }
  .hero-access-row {
    display: block !important;
    margin-top: 14px;
  }
  .hero-info-box {
    display: block;
    width: 100%;
    max-width: none;
    writing-mode: horizontal-tb;
  }
  .hero-info-box strong,
  .hero-info-box span {
    writing-mode: horizontal-tb;
    white-space: normal;
    word-break: normal;
  }
  .hero-salon-card {
    display: block;
    max-width: 320px;
    margin-top: 12px;
  }
}


/* Top hero rebalance v2 */
.hero { overflow: hidden; }
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 40px, 1280px);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
  }
  .hero-grid > :first-child {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.84fr);
    grid-template-areas:
      "intro intro"
      "title title"
      "lead lead"
      "concept result"
      "brand brand"
      "labels labels"
      "access access"
      "actions actions"
      "note note";
    gap: 16px 18px;
    max-width: none;
    padding-right: 0;
    min-width: 0;
  }
  .hero-intro-row { grid-area: intro; display: block; padding-right: 0; min-height: 0; margin: 0; }
  .hero-mobile-owner { display: none !important; }
  .hero-impact-title { grid-area: title; margin: 0; }
  .hero-lead { grid-area: lead; margin: 0; }
  .hero-campaign-copy { grid-area: concept; margin: 0; align-self: start; }
  .hero-result-panel { grid-area: result; margin: 0; width: 100%; align-self: start; }
  .brand-message { grid-area: brand; margin: 0; }
  .label-row { grid-area: labels; margin: 0; gap: 10px; }
  .hero .label-row .label:nth-child(n+4) { display: none; }
  .hero-access-row { grid-area: access; margin: 0; display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 16px; align-items: center; }
  .hero-actions { grid-area: actions; margin: 0; }
  .cta-note { grid-area: note; margin: 0; }
  .hero-visual-stack { position: static; width: 280px; justify-self: end; align-self: start; display: block; }
  .hero-owner-card { width: 100%; max-width: 280px; margin: 0; }
  .hero-owner-card .hero-owner-photo { aspect-ratio: auto; object-fit: contain; }
  .hero-campaign-copy strong { font-size: clamp(2rem, 3.6vw, 3rem); }
  .hero-result-main strong { font-size: clamp(3.1rem, 6vw, 5.8rem); line-height: .92; }
  .hero-salon-card { max-width: 290px; }
}
@media (max-width: 900px) {
  .hero-grid > :first-child { padding-right: 0; }
  .hero-intro-row { min-height: 72px; margin-bottom: 2px; }
  .hero h1, .hero-impact-title { margin-top: 0; }
  .hero-lead { margin-top: 8px; }
  .hero-campaign-copy, .hero-result-panel, .brand-message, .label-row, .hero-access-row, .hero-actions { margin-top: 12px; }
  .hero .label-row .label:nth-child(n+4) { display: none; }
}


/* Top hero definitive rebalance */
.hero { overflow: hidden; }
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 48px, 1280px) !important;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 292px !important;
    grid-template-areas:
      "intro photo"
      "title photo"
      "lead photo"
      "concept result"
      "brand brand"
      "labels labels"
      "info salon"
      "actions salon"
      "note salon";
    gap: 16px 28px !important;
    align-items: start !important;
  }
  .hero-grid > :first-child {
    display: contents !important;
    max-width: none !important;
    padding-right: 0 !important;
  }
  .hero-intro-row { grid-area: intro; display: block !important; padding-right: 0 !important; min-height: 0 !important; margin: 0 !important; }
  .hero-mobile-owner { display: none !important; }
  .hero-impact-title { grid-area: title; margin: 0 !important; max-width: 760px; }
  .hero-lead { grid-area: lead; margin: 0 !important; max-width: 760px; }
  .hero-campaign-copy { grid-area: concept; margin: 0 !important; max-width: none !important; min-height: 170px; }
  .hero-result-panel { grid-area: result; margin: 0 !important; width: 100% !important; max-width: none !important; min-height: 170px; }
  .brand-message { grid-area: brand; margin: 0 !important; max-width: none !important; }
  .label-row { grid-area: labels; margin: 0 !important; gap: 10px !important; }
  .hero .label-row .label:nth-child(n+4) { display: none !important; }
  .hero-access-row {
    display: contents !important;
    margin: 0 !important;
  }
  .hero-info-box { grid-area: info; margin: 0 !important; width: auto !important; max-width: none !important; }
  .hero-salon-card { grid-area: salon; margin: 0 !important; max-width: 292px !important; }
  .hero-actions { grid-area: actions; margin: 0 !important; display: flex !important; flex-wrap: wrap; gap: 12px; }
  .cta-note { grid-area: note; margin: 0 !important; }
  .hero-visual-stack {
    grid-area: photo;
    position: static !important;
    width: 292px !important;
    justify-self: end !important;
    align-self: start !important;
    display: block !important;
  }
  .hero-owner-card { width: 100% !important; max-width: 292px !important; margin: 0 !important; }
  .hero-owner-card .hero-owner-photo { width: 100% !important; height: auto !important; object-fit: contain !important; }
}
@media (max-width: 900px) {
  .hero > .container { width: min(100% - 22px, var(--max)) !important; }
  .hero-grid { display: block !important; }
  .hero-grid > :first-child { display: block !important; padding-right: 0 !important; max-width: none !important; }
  .hero-visual-stack { display: none !important; }
  .hero-intro-row { position: relative; display: block !important; padding-right: 80px !important; min-height: 72px !important; margin: 0 0 2px !important; }
  .hero-intro-row .eyebrow { margin: 0 !important; }
  .hero-mobile-owner {
    display: block !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px !important;
    padding: 3px !important;
    border-radius: 16px;
    background: rgba(255,255,252,.97);
    border: 1px solid rgba(138,100,18,.16);
    box-shadow: 0 10px 18px rgba(143,85,55,.12);
  }
  .hero-mobile-owner img { width: 100% !important; height: 84px !important; object-fit: cover; object-position: center top; border-radius: 12px; }
  .hero-impact-title, .hero h1 { margin-top: 0 !important; }
  .hero-lead { margin-top: 8px !important; }
  .hero-campaign-copy, .hero-result-panel, .brand-message, .label-row, .hero-access-row, .hero-actions { margin-top: 12px !important; }
  .hero .label-row .label:nth-child(n+4) { display: none !important; }
  .hero-access-row { display: block !important; }
  .hero-info-box { display: block !important; width: 100% !important; writing-mode: horizontal-tb !important; }
  .hero-info-box strong, .hero-info-box span { writing-mode: horizontal-tb !important; white-space: normal !important; }
  .hero-salon-card { max-width: 320px !important; margin-top: 12px !important; }
}


/* PC hero reorder and balance */
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 48px, 1280px) !important;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 28px !important;
    align-items: start !important;
  }
  .hero-grid > :first-child {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    max-width: none !important;
    padding-right: 0 !important;
    min-width: 0;
  }
  .hero-intro-row { order: 1; margin: 0 !important; padding-right: 0 !important; min-height: 0 !important; }
  .hero-impact-title { order: 2; margin: 0 !important; max-width: 760px; }
  .hero-lead { order: 3; margin: 0 !important; max-width: 760px; }
  .hero-campaign-copy {
    order: 4;
    margin: 0 !important;
    max-width: 420px !important;
    width: 100%;
    align-self: flex-start;
  }
  .brand-message {
    order: 5;
    margin: 0 !important;
    max-width: 560px !important;
    width: 100%;
    align-self: flex-start;
  }
  .hero-result-panel {
    order: 6;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    align-self: stretch;
  }
  .hero-result-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
  }
  .hero-result-label {
    flex-basis: 100%;
  }
  .hero-result-main strong {
    margin: 0;
    line-height: .9;
  }
  .hero-result-main small {
    flex: 1 1 260px;
    min-width: 260px;
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .hero-small-note {
    margin-top: 10px !important;
  }
  .label-row {
    order: 7;
    margin: 0 !important;
    gap: 10px !important;
  }
  .hero .label-row .label:nth-child(n+4) {
    display: none !important;
  }
  .hero-access-row {
    order: 8;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 16px !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .hero-actions {
    order: 9;
    margin: 0 !important;
  }
  .cta-note {
    order: 10;
    margin: 0 !important;
  }
  .hero-visual-stack {
    display: block !important;
    position: static !important;
    width: 300px !important;
    align-self: start !important;
    justify-self: end !important;
    margin-top: 18px;
  }
  .hero-owner-card {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 !important;
  }
  .hero-owner-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}


/* Mobile salon card centering */
@media (max-width: 900px) {
  .hero-salon-card {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* PC top hero balance v3 */
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 48px, 1280px) !important;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 28px !important;
    align-items: start !important;
  }
  .hero-visual-stack {
    display: block !important;
    position: static !important;
    width: 280px !important;
    margin-top: 12px !important;
    justify-self: end !important;
    align-self: start !important;
  }
  .hero-owner-card {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 !important;
  }
  .hero-owner-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .hero-grid > :first-child {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.82fr) minmax(380px, 1.18fr) !important;
    grid-template-areas:
      "intro intro"
      "title title"
      "lead lead"
      "concept result"
      "brand result"
      "labels labels"
      "access access"
      "actions actions"
      "note note";
    gap: 14px 18px !important;
    max-width: none !important;
    padding-right: 0 !important;
    min-width: 0 !important;
  }
  .hero-intro-row {
    grid-area: intro !important;
    display: block !important;
    margin: 0 !important;
    padding-right: 0 !important;
    min-height: 0 !important;
  }
  .hero-mobile-owner { display: none !important; }
  .hero-impact-title {
    grid-area: title !important;
    margin: 0 !important;
    max-width: 760px !important;
  }
  .hero-lead {
    grid-area: lead !important;
    margin: 0 !important;
    max-width: 760px !important;
  }
  .hero-campaign-copy {
    grid-area: concept !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    align-self: start !important;
  }
  .brand-message {
    grid-area: brand !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    align-self: start !important;
  }
  .hero-result-panel {
    grid-area: result !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    min-height: 220px !important;
    padding: 24px 26px !important;
  }
  .hero-result-main {
    display: block !important;
  }
  .hero-result-label {
    display: inline-block !important;
    margin-bottom: 10px !important;
  }
  .hero-result-main strong {
    display: block !important;
    margin: 0 !important;
    line-height: .9 !important;
    font-size: clamp(4rem, 7vw, 6rem) !important;
  }
  .hero-result-main small {
    display: block !important;
    margin-top: 12px !important;
    font-size: 1.45rem !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
  }
  .hero-small-note {
    margin-top: 10px !important;
  }
  .label-row {
    grid-area: labels !important;
    margin: 0 !important;
    gap: 10px !important;
  }
  .hero .label-row .label:nth-child(n+4) {
    display: none !important;
  }
  .hero-access-row {
    grid-area: access !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 16px !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .hero-salon-card {
    max-width: 280px !important;
    margin: 0 !important;
    justify-self: end !important;
  }
  .hero-info-box {
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
  }
  .hero-actions {
    grid-area: actions !important;
    margin: 0 !important;
  }
  .cta-note {
    grid-area: note !important;
    margin: 0 !important;
  }
}


/* Top hero final PC rebalance */
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 56px, 1360px) !important;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 270px !important;
    gap: 30px !important;
    align-items: start !important;
  }
  .hero-visual-stack {
    display: block !important;
    position: static !important;
    width: 270px !important;
    justify-self: end !important;
    align-self: start !important;
    margin-top: 6px !important;
  }
  .hero-owner-card {
    width: 100% !important;
    max-width: 270px !important;
    margin: 0 !important;
  }
  .hero-owner-card .hero-owner-photo,
  .hero-owner-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .hero-grid > :first-child {
    display: grid !important;
    grid-template-columns: 280px minmax(520px, 1fr) !important;
    grid-template-areas:
      "intro intro"
      "title title"
      "lead lead"
      "concept result"
      "brand result"
      "labels labels"
      "access access"
      "actions actions"
      "note note" !important;
    gap: 14px 20px !important;
    max-width: none !important;
    min-width: 0 !important;
    padding-right: 0 !important;
  }
  .hero-intro-row { grid-area: intro !important; display: block !important; margin: 0 !important; padding-right: 0 !important; min-height: 0 !important; }
  .hero-mobile-owner { display: none !important; }
  .hero-impact-title { grid-area: title !important; max-width: 760px !important; margin: 0 !important; }
  .hero-lead { grid-area: lead !important; max-width: 760px !important; margin: 0 !important; }
  .hero-campaign-copy {
    grid-area: concept !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: start !important;
  }
  .brand-message {
    grid-area: brand !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: start !important;
  }
  .hero-result-panel {
    grid-area: result !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    align-self: start !important;
    min-height: 0 !important;
    padding: 24px 26px !important;
  }
  .hero-result-main {
    display: block !important;
  }
  .hero-result-label {
    display: inline-block !important;
    margin-bottom: 10px !important;
  }
  .hero-result-main strong {
    display: block !important;
    margin: 0 !important;
    line-height: .9 !important;
  }
  .hero-result-main small {
    display: block !important;
    margin-top: 12px !important;
    font-size: 1.5rem !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
  }
  .hero-small-note { margin-top: 10px !important; }
  .label-row { grid-area: labels !important; margin: 0 !important; gap: 10px !important; }
  .hero .label-row .label:nth-child(n+4) { display: none !important; }
  .hero-access-row {
    grid-area: access !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 270px !important;
    gap: 16px !important;
    align-items: center !important;
    margin: 0 !important;
  }
  .hero-info-box { width: auto !important; max-width: none !important; margin: 0 !important; }
  .hero-salon-card {
    max-width: 270px !important;
    width: 100% !important;
    margin: 0 !important;
    justify-self: end !important;
  }
  .hero-actions { grid-area: actions !important; margin: 0 !important; }
  .cta-note { grid-area: note !important; margin: 0 !important; }
}


/* Final top hero structure reset */
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 56px, 1320px) !important;
  }
  .hero-grid {
    display: flex !important;
    align-items: flex-start !important;
    gap: 28px !important;
  }
  .hero-grid > :first-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(250px, 0.75fr) minmax(430px, 1.25fr) !important;
    grid-template-areas:
      "intro intro"
      "title title"
      "lead lead"
      "concept result"
      "brand result"
      "labels labels"
      "access access"
      "actions actions"
      "note note" !important;
    gap: 14px 20px !important;
    padding-right: 0 !important;
    max-width: none !important;
  }
  .hero-intro-row { grid-area: intro !important; display:block !important; margin:0 !important; padding-right:0 !important; min-height:0 !important; }
  .hero-mobile-owner { display:none !important; }
  .hero-impact-title { grid-area: title !important; margin:0 !important; max-width:780px !important; }
  .hero-lead { grid-area: lead !important; margin:0 !important; max-width:780px !important; }
  .hero-campaign-copy {
    grid-area: concept !important;
    margin:0 !important;
    width:100% !important;
    max-width:none !important;
    align-self:start !important;
  }
  .brand-message {
    grid-area: brand !important;
    margin:0 !important;
    width:100% !important;
    max-width:none !important;
    align-self:start !important;
  }
  .hero-result-panel {
    grid-area: result !important;
    margin:0 !important;
    width:100% !important;
    max-width:none !important;
    min-height:0 !important;
    align-self:start !important;
    padding:24px 26px !important;
  }
  .hero-result-main { display:block !important; }
  .hero-result-label { display:inline-block !important; margin-bottom:10px !important; }
  .hero-result-main strong { display:block !important; margin:0 !important; line-height:0.9 !important; }
  .hero-result-main small { display:block !important; margin-top:12px !important; font-size:1.5rem !important; line-height:1.45 !important; font-weight:700 !important; }
  .hero-small-note { margin-top:10px !important; }
  .label-row { grid-area: labels !important; margin:0 !important; gap:10px !important; }
  .hero .label-row .label:nth-child(n+4) { display:none !important; }
  .hero-access-row {
    grid-area: access !important;
    display:grid !important;
    grid-template-columns: minmax(0, 1fr) 250px !important;
    gap:16px !important;
    align-items:center !important;
    margin:0 !important;
  }
  .hero-info-box { margin:0 !important; width:auto !important; max-width:none !important; }
  .hero-salon-card {
    max-width:250px !important;
    width:100% !important;
    margin:0 !important;
    justify-self:end !important;
  }
  .hero-actions { grid-area: actions !important; margin:0 !important; }
  .cta-note { grid-area: note !important; margin:0 !important; }
  .hero-visual-stack {
    flex: 0 0 260px !important;
    width:260px !important;
    display:block !important;
    position:static !important;
    margin-top: 6px !important;
    align-self:start !important;
  }
  .hero-owner-card { width:100% !important; max-width:260px !important; margin:0 !important; }
  .hero-owner-card .hero-owner-photo,
  .hero-owner-photo { width:100% !important; height:auto !important; object-fit:contain !important; }
}


/* PC hero alignment fix */
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 48px, 1360px) !important;
  }
  .hero-grid {
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }
  .hero-grid > :first-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(280px, 0.92fr) minmax(470px, 1.08fr) !important;
    grid-template-areas:
      "intro intro"
      "title title"
      "lead lead"
      "concept result"
      "brand result"
      "labels labels"
      "access access"
      "actions actions"
      "note note" !important;
    gap: 14px 22px !important;
    padding-right: 0 !important;
    max-width: none !important;
  }
  .hero-impact-title {
    max-width: 860px !important;
  }
  .hero-lead {
    max-width: 860px !important;
  }
  .hero-visual-stack {
    flex: 0 0 300px !important;
    width: 300px !important;
    display: block !important;
    position: static !important;
    margin-top: 0 !important;
    align-self: start !important;
  }
  .hero-owner-card {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 !important;
  }
  .hero-owner-card .hero-owner-photo,
  .hero-owner-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  .hero-campaign-copy,
  .brand-message,
  .hero-result-panel {
    max-width: none !important;
    width: 100% !important;
  }
  .hero-result-panel {
    padding: 24px 28px !important;
  }
  .hero-access-row {
    grid-area: access !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 18px !important;
    align-items: stretch !important;
    margin: 0 !important;
  }
  .hero-info-box {
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    justify-self: start !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 22px 24px !important;
  }
  .hero-info-box strong,
  .hero-info-box span {
    display: block !important;
  }
  .hero-salon-card {
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 !important;
    justify-self: end !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
}


/* PC hero final request adjustment */
@media (min-width: 901px) {
  .hero > .container {
    width: min(100% - 48px, 1380px) !important;
  }

  .hero-grid {
    display: flex !important;
    align-items: flex-start !important;
    gap: 28px !important;
  }

  .hero-grid > :first-child {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 320px minmax(540px, 1fr) !important;
    grid-template-areas:
      "intro intro"
      "title title"
      "lead lead"
      "concept result"
      "brand result"
      "labels labels"
      "access access"
      "actions actions"
      "note note" !important;
    gap: 14px 24px !important;
    max-width: none !important;
    padding-right: 0 !important;
  }

  .hero-impact-title {
    grid-area: title !important;
    margin: 0 !important;
    max-width: 920px !important;
  }

  .hero-lead {
    grid-area: lead !important;
    max-width: 920px !important;
    margin: 0 !important;
  }

  .hero-campaign-copy {
    grid-area: concept !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    align-self: start !important;
  }

  .brand-message {
    grid-area: brand !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    align-self: start !important;
  }

  .hero-result-panel {
    grid-area: result !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 24px 28px !important;
    align-self: start !important;
  }

  .hero-result-main strong { line-height: 0.9 !important; }
  .hero-result-main small { margin-top: 12px !important; display: block !important; }

  .label-row {
    grid-area: labels !important;
    margin: 0 !important;
    gap: 10px !important;
  }

  .hero-access-row {
    grid-area: access !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    gap: 18px !important;
    align-items: stretch !important;
    margin: 0 !important;
  }

  .hero-info-box {
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    justify-self: start !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
    padding: 20px 24px !important;
    min-height: 100% !important;
  }

  .hero-salon-card {
    max-width: 320px !important;
    width: 100% !important;
    margin: 0 !important;
    justify-self: end !important;
    align-self: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .hero-visual-stack {
    flex: 0 0 320px !important;
    width: 320px !important;
    display: block !important;
    position: static !important;
    margin-top: 4px !important;
    align-self: start !important;
  }

  .hero-owner-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 !important;
  }

  .hero-owner-card .hero-owner-photo,
  .hero-owner-photo {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}


/* Clean rebuilt hero section */
.amor-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.amor-hero-top,
.amor-hero-middle,
.amor-hero-bottom {
  display: grid;
  gap: 16px;
}
.amor-hero-top {
  align-items: start;
}
.amor-hero-copy,
.amor-hero-left {
  min-width: 0;
}
.amor-hero-eyebrow {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent-dark);
}
.amor-hero-title {
  margin: 8px 0 0;
  font-size: clamp(2.6rem, 10vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.03em;
}
.amor-hero-title span {
  display: block;
}
.amor-hero-title .accent {
  color: var(--accent-dark);
}
.amor-hero-lead {
  margin: 14px 0 0;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}
.amor-hero-owner {
  margin: 0;
  justify-self: center;
  width: min(100%, 230px);
  padding: 10px;
  border-radius: 28px;
  background: rgba(255,255,252,.94);
  border: 1px solid rgba(138,100,18,.16);
  box-shadow: var(--shadow-soft);
}
.amor-hero-owner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.amor-hero-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.amor-hero-concept {
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(138,100,18,.12);
  box-shadow: var(--shadow-soft);
}
.amor-hero-concept p {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-weight: 700;
}
.amor-hero-concept h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4.2vw, 2.2rem);
  line-height: 1.25;
}
.amor-hero-brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
}
.amor-hero-brandline img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}
.amor-hero-brandline p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}
.amor-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.amor-hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(138,100,18,.14);
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}
.amor-hero-result {
  padding: 22px 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,249,219,.96), rgba(255,237,167,.92));
  border: 1px solid rgba(181,134,22,.20);
  box-shadow: 0 18px 36px rgba(143,85,55,.14);
}
.amor-hero-result-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
}
.amor-hero-result strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.7rem, 10vw, 5rem);
  line-height: .92;
}
.amor-hero-result strong span {
  color: var(--accent-dark);
}
.amor-hero-result-copy {
  margin: 12px 0 0;
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.45;
}
.amor-hero-result-note {
  margin: 10px 0 0;
  font-size: .84rem;
  line-height: 1.7;
  color: var(--muted);
}
.amor-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(138,100,18,.12);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.amor-hero-info strong {
  display: block;
  margin: 0 0 8px;
  font-size: 1.12rem;
}
.amor-hero-info p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}
.amor-hero-salon {
  margin: 0 auto;
  width: min(100%, 300px);
  padding: 10px;
  border-radius: 24px;
  background: rgba(255,255,252,.92);
  border: 1px solid rgba(138,100,18,.16);
  box-shadow: var(--shadow-soft);
}
.amor-hero-salon img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.amor-hero-salon figcaption {
  margin-top: 8px;
  font-size: .78rem;
  line-height: 1.6;
  color: var(--muted);
}
.amor-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.amor-hero-note {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}
@media (min-width: 901px) {
  .amor-hero-section > .container {
    width: min(100% - 48px, 1320px);
  }
  .amor-hero {
    gap: 22px;
  }
  .amor-hero-top {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }
  .amor-hero-owner {
    width: 100%;
    max-width: 320px;
    justify-self: end;
  }
  .amor-hero-middle {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }
  .amor-hero-bottom {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
    align-items: stretch;
  }
  .amor-hero-info {
    min-height: 100%;
  }
  .amor-hero-salon {
    width: 100%;
    max-width: 320px;
    margin: 0 0 0 auto;
  }
}


/* Hero layered refinement */
.amor-hero-section {
  padding-bottom: 34px;
}
.amor-hero {
  gap: 26px;
}
.amor-hero-top,
.amor-hero-middle,
.amor-hero-bottom {
  position: relative;
}
.amor-hero-top {
  padding-bottom: 8px;
}
.amor-hero-middle {
  padding: 22px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(138,100,18,.10);
  box-shadow: 0 14px 32px rgba(143,85,55,.08);
}
.amor-hero-bottom {
  padding-top: 4px;
}
.amor-hero-result {
  align-self: stretch;
}
.amor-hero-info {
  min-height: 100%;
}
.amor-hero-actions {
  padding-top: 2px;
}
@media (min-width: 901px) {
  .amor-hero-top {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
  }
  .amor-hero-owner {
    max-width: 340px;
  }
  .amor-hero-middle {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 24px;
  }
  .amor-hero-bottom {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
  }
  .amor-hero-salon {
    max-width: 340px;
  }
  .amor-hero-title {
    max-width: 980px;
  }
  .amor-hero-lead {
    max-width: 900px;
  }
}
@media (max-width: 900px) {
  .amor-hero-section {
    padding-bottom: 28px;
  }
  .amor-hero {
    gap: 20px;
  }
  .amor-hero-middle {
    padding: 16px;
    border-radius: 28px;
  }
  .amor-hero-owner {
    max-width: 180px;
  }
}


/* Hero title larger tuning */
.amor-hero-title {
  font-size: clamp(3rem, 11vw, 5rem);
}
@media (min-width: 901px) {
  .amor-hero-top {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }
  .amor-hero-owner {
    max-width: 320px;
  }
  .amor-hero-title {
    font-size: clamp(4.2rem, 7.8vw, 6.5rem);
    max-width: 1120px;
    line-height: .92;
  }
}


/* Stronger main title emphasis */
@media (min-width: 901px) {
  .amor-hero-top {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 28px !important;
  }
  .amor-hero-owner {
    max-width: 300px !important;
  }
  .amor-hero-title {
    font-size: clamp(5.2rem, 8.8vw, 7.6rem) !important;
    line-height: .88 !important;
    letter-spacing: -.055em !important;
    max-width: 100% !important;
  }
  .amor-hero-title .accent {
    font-size: 1.08em !important;
  }
  .amor-hero-lead {
    max-width: 980px !important;
  }
}
@media (max-width: 900px) {
  .amor-hero-title {
    font-size: clamp(3.2rem, 14vw, 4.6rem) !important;
    line-height: .9 !important;
  }
}


/* Hero title stagger fix */
@media (min-width: 901px) {
  .amor-hero-top {
    grid-template-columns: minmax(0, 1fr) 300px !important;
    gap: 34px !important;
  }
  .amor-hero-copy {
    padding-right: 10px;
  }
  .amor-hero-title {
    font-size: clamp(4.8rem, 8.2vw, 7rem) !important;
    line-height: .9 !important;
    letter-spacing: -.05em !important;
  }
  .amor-hero-title span {
    white-space: nowrap;
  }
  .amor-hero-title span:nth-child(2) {
    padding-left: .30em;
  }
  .amor-hero-title span:nth-child(3) {
    padding-left: .68em;
  }
}
@media (max-width: 900px) {
  .amor-hero-title span:nth-child(2) {
    padding-left: .10em;
  }
  .amor-hero-title span:nth-child(3) {
    padding-left: .24em;
  }
}


/* Hero title overlap fix */
@media (min-width: 901px) {
  .amor-hero-top {
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 40px !important;
    align-items: start !important;
  }
  .amor-hero-owner {
    max-width: 280px !important;
  }
  .amor-hero-copy {
    min-width: 0;
    padding-right: 6px;
  }
  .amor-hero-title {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.08em !important;
    font-size: clamp(4.6rem, 7.6vw, 6.6rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
    max-width: 100% !important;
  }
  .amor-hero-title span {
    display: block !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }
  .amor-hero-title span:nth-child(1) {
    padding-left: 0 !important;
  }
  .amor-hero-title span:nth-child(2) {
    padding-left: 0.16em !important;
  }
  .amor-hero-title span:nth-child(3) {
    padding-left: 0.42em !important;
  }
  .amor-hero-title .accent {
    font-size: 1em !important;
  }
  .amor-hero-lead {
    max-width: 58rem !important;
    margin-top: 16px !important;
  }
}
@media (max-width: 900px) {
  .amor-hero-title {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.02em !important;
    line-height: 0.96 !important;
    font-size: clamp(3rem, 12.8vw, 4.3rem) !important;
  }
  .amor-hero-title span:nth-child(1) {
    padding-left: 0 !important;
  }
  .amor-hero-title span:nth-child(2) {
    padding-left: 0.05em !important;
  }
  .amor-hero-title span:nth-child(3) {
    padding-left: 0.16em !important;
  }
}


/* Hero title line-height fix */
@media (min-width: 901px) {
  .amor-hero-title {
    line-height: 1.08 !important;
    gap: 0.10em !important;
    font-size: clamp(4.5rem, 7.2vw, 6.3rem) !important;
    letter-spacing: -0.04em !important;
  }
  .amor-hero-title span:nth-child(1) {
    padding-left: 0 !important;
  }
  .amor-hero-title span:nth-child(2) {
    padding-left: 0.16em !important;
  }
  .amor-hero-title span:nth-child(3) {
    padding-left: 0.36em !important;
  }
}
@media (max-width: 900px) {
  .amor-hero-title {
    line-height: 1.04 !important;
    gap: 0.06em !important;
    font-size: clamp(2.9rem, 12vw, 4.1rem) !important;
  }
}
