/* ============================================
   ASHGRACE — Coworking Space Landing Page
   Font: Zen Maru Gothic (rounded gothic)
   ============================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  /* core */
  --txt: #534e4a;
  --txt-mute: #8b847f;
  --txt-faint: #b9b3ad;
  --line: #ece6dc;

  /* surface */
  --bg: #fffbf7;
  --bg-cream: #f9f5ea;
  --bg-soft:  #f9f8f6;
  --bg-mint:  #ebf9f3;
  --bg-grey:  #efeae3; /* amenity bg */

  /* accents */
  --yellow:   #fce6aa;
  --yellow-2: #fff2c2;
  --yellow-3: #fdf3d4;
  --peach:    #ffdab4;
  --peach-2:  #ffe2d6;
  --coral:    #ff9264;
  --pink:     #ef858c;
  --mint:     #cfeede;
  --mint-2:   #d4f1e0;
  --green:    #41e383;
  --gold:     #c99058;
  --orange:   #f66e35;
  --tan:      #d1a87f;

  --maru: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN", "Hiragino Sans", sans-serif;
  --en:   "Sorts Mill Goudy", "Zen Maru Gothic", serif;

  --easing: cubic-bezier(.2,.7,.2,1);
  --maxw: 1100px;
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--maru);
  font-size: 1.5rem;
  line-height: 1.95;
  letter-spacing: 0.06em;
  font-weight: 500;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--easing), opacity .3s var(--easing);
}
a:hover { color: var(--coral); }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
em { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.sp-only { display: none; }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Section heads ---------- */
.sec-head { margin-bottom: 64px; }
.sec-head.center { text-align: center; }

.sec-en {
  display: inline-block;
  font-family: var(--en);
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  color: var(--tan);
  margin-bottom: 16px;
  position: relative;
  padding-left: 30px;
  text-transform: lowercase;
}
.sec-en::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 1px;
  background: var(--tan);
}
.sec-head.center .sec-en { padding-left: 0; }
.sec-head.center .sec-en::before { display: none; }

.sec-title {
  font-family: var(--maru);
  font-weight: 700;
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: var(--txt);
}
.sec-title em {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 .08em;
}

.sec-lead {
  margin-top: 22px;
  color: var(--txt-mute);
  font-size: 1.5rem;
  line-height: 2.05;
  max-width: 640px;
  font-weight: 500;
}
.sec-head.center .sec-lead { margin-left: auto; margin-right: auto; }

/* ============================================
   Buttons
   ============================================ */
.btn-pill {
  --pill-bg: var(--yellow);
  --pill-color: var(--txt);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px 18px 26px;
  background: var(--pill-bg);
  color: var(--pill-color);
  border-radius: 999px;
  font-family: var(--maru);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform .35s var(--easing), box-shadow .35s var(--easing), background .35s var(--easing);
}
.btn-pill .circle {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  transition: transform .4s var(--easing), background .35s var(--easing);
  flex: 0 0 auto;
}
.btn-pill .txt { position: relative; z-index: 1; }
.btn-pill .arrow {
  position: relative;
  width: 18px; height: 1px;
  background: currentColor;
  margin-left: 4px;
  transition: width .35s var(--easing);
}
.btn-pill .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(81, 51, 30, 0.25);
}
.btn-pill:hover .circle { transform: scale(1.4); background: var(--orange); }
.btn-pill:hover .arrow { width: 26px; }

.btn-pill-yellow { --pill-bg: var(--yellow); --pill-color: var(--txt); }
.btn-pill-yellow:hover { background: var(--yellow-2); }

.btn-pill-outline {
  --pill-bg: #fff;
  --pill-color: var(--txt);
  border-color: var(--line);
}
.btn-pill-outline:hover { background: var(--bg-cream); }

.btn-large { padding: 22px 36px 22px 32px; font-size: 1.5rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--easing), padding .35s var(--easing), box-shadow .35s var(--easing);
}
.site-header.scrolled {
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(83, 78, 74, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--txt);
}
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}
.site-header.scrolled .logo-img { height: 34px; transition: height .3s var(--easing); }

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.global-nav ul {
  display: flex;
  gap: 24px;
  font-family: var(--en);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
.global-nav ul a {
  position: relative;
  padding: 6px 0;
  color: var(--txt);
}
.global-nav ul a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 2px;
  background: var(--coral);
  transform: translateX(-50%);
  transition: width .3s var(--easing);
}
.global-nav ul a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--maru);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--yellow);
  color: var(--txt) !important;
  padding: 11px 22px;
  border-radius: 999px;
  position: relative;
  transition: background .3s var(--easing), transform .3s var(--easing);
}
.nav-cta:hover { background: var(--yellow-2); transform: translateY(-1px); }

.hamburger {
  display: none;
  position: relative;
  width: 30px; height: 22px;
}
.hamburger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--txt); border-radius: 2px;
  transition: transform .3s var(--easing), opacity .3s var(--easing);
}
.hamburger span:nth-child(1) { top: 3px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 3px; }
.hamburger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ============================================
   1. Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 120px;
  background: var(--bg-cream);
  overflow: hidden;
}

/* Image-only hero (image contains baked-in copy) */
.hero.hero-image-only {
  min-height: auto;
  padding: 80px 0 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero.hero-image-only + .pains { padding-top: 60px; }
.hero.hero-image-only .hero-photo {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 640px;
  margin: 0 auto -8px;
}
.hero.hero-image-only .hero-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero.hero-image-only .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}
.hero.hero-image-only .hero-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 560px;
}
.hero.hero-image-only .hero-lead {
  margin: 0;
  font-size: 1.5rem;
  line-height: 2.0;
  color: var(--txt);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.hero.hero-image-only .hero-scroll {
  position: static;
  transform: none;
  margin: 28px auto 0;
  display: flex;
}

/* Hero photo (full coverage, focal point right) */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

/* Cream gradient overlay so left-side text is legible */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--bg-cream) 0%,
      rgba(249, 245, 234, 0.96) 28%,
      rgba(249, 245, 234, 0.65) 48%,
      rgba(249, 245, 234, 0.10) 70%,
      transparent 100%
    );
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  mix-blend-mode: multiply;
  animation: floatBlob 12s ease-in-out infinite;
}
.blob-yellow { width: 520px; height: 520px; background: var(--yellow-3); top: -120px; left: -100px; }
.blob-peach  { width: 480px; height: 480px; background: var(--peach-2); top: 30%; right: -120px; animation-delay: -4s; }
.blob-mint   { width: 420px; height: 420px; background: var(--mint);    bottom: -150px; left: 25%; animation-delay: -8s; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-20px) scale(1.06); }
}

.hero-bg-text {
  position: absolute;
  left: 0; right: 0;
  bottom: 90px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0.10;
}
.bg-text-row {
  display: flex;
  white-space: nowrap;
  font-family: var(--en);
  font-size: clamp(60px, 14vw, 200px);
  line-height: 1;
  color: var(--coral);
  letter-spacing: 0.04em;
}
.row-1 span { animation: marqueeL 40s linear infinite; }
.row-2 span { animation: marqueeR 50s linear infinite; color: var(--gold); }
.bg-text-row span { display: inline-block; }

@keyframes marqueeL {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-inner > * { max-width: 560px; }
.hero-title { text-shadow: 0 1px 0 rgba(255, 251, 247, 0.6); }

.hero-en {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--en);
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  color: var(--tan);
  margin-bottom: 32px;
}
.hero-en::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--tan);
  display: inline-block;
}

.hero-title {
  font-family: var(--maru);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--txt);
  margin-bottom: 32px;
}
.hero-title .line { display: block; }
.hero-title em {
  position: relative;
  background: linear-gradient(transparent 65%, var(--yellow) 65%);
  padding: 0 .1em;
}

.hero-lead {
  font-size: 1.5rem;
  line-height: 2.1;
  color: var(--txt-mute);
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(83, 78, 74, 0.12);
  max-width: 620px;
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .m-label {
  font-family: var(--en);
  font-size: 1rem;
  letter-spacing: 0.24em;
  color: var(--tan);
}
.hero-meta .m-value {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--txt);
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  color: var(--txt-mute);
}
.hero-scroll .bar {
  position: relative;
  width: 1px; height: 64px;
  background: rgba(83, 78, 74, 0.15);
  overflow: hidden;
}
.hero-scroll .bar::after {
  content: "";
  position: absolute;
  top: -32px; left: 0;
  width: 100%; height: 32px;
  background: var(--coral);
  animation: scrollBar 2.6s var(--easing) infinite;
}
@keyframes scrollBar {
  0%   { top: -32px; }
  60%  { top: 64px; }
  100% { top: 64px; }
}

/* ============================================
   2. Pain Points
   ============================================ */
.pains {
  position: relative;
  padding: 140px 0 120px;
  background: var(--bg);
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pain-list-5 {
  grid-template-columns: repeat(3, 1fr);
}
.pain-list-5 > .pain-card:nth-child(4) { grid-column: 1 / span 1; }
.pain-list-5 > .pain-card:nth-child(5) { grid-column: 2 / span 2; }

.pain-list-4 {
  grid-template-columns: repeat(2, 1fr);
}
.pain-card {
  position: relative;
  padding: 56px 40px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform .4s var(--easing), box-shadow .4s var(--easing);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -28px rgba(83, 78, 74, 0.18);
}
.pain-num {
  position: absolute;
  top: -16px; left: 36px;
  background: var(--yellow);
  color: var(--txt);
  font-family: var(--en);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 400;
}
.pain-illust {
  width: 80px; height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center; justify-content: center;
}
.pain-illust.illust-photo {
  width: 100%;
  height: 200px;
  margin: -20px -8px 28px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-cream);
  position: relative;
}
.pain-illust.illust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--easing);
}
.pain-card:hover .pain-illust.illust-photo img { transform: scale(1.05); }
.pain-card h3 {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--txt);
  margin-bottom: 14px;
}
.pain-card p {
  color: var(--txt-mute);
  font-size: 1.4rem;
  line-height: 2.0;
  font-weight: 500;
}

.pain-fix {
  margin-top: 22px;
  padding: 16px 18px;
  background: var(--bg-cream);
  border-radius: 14px;
  position: relative;
}
.pain-fix .fix-label {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.pain-fix p {
  font-size: 1.35rem;
  line-height: 1.85;
  color: var(--txt);
  font-weight: 500;
}
.pain-fix p strong {
  color: var(--coral);
  font-weight: 700;
}

/* ============================================
   3. Value
   ============================================ */
.value {
  position: relative;
  padding: 140px 0 130px;
  background:
    radial-gradient(800px 360px at 80% 10%, rgba(255, 218, 180, 0.35), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(252, 230, 170, 0.30), transparent 60%),
    var(--bg-cream);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.value-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-grid-4 .value-card { padding: 44px 28px 36px; }
.value-grid-4 .value-icon { width: 80px; height: 80px; margin-bottom: 22px; }
.value-grid-4 .value-title { font-size: 1.75rem; }
.value-grid-4 .value-icon.value-icon-photo {
  width: 100%; height: 180px; margin: -20px -8px 24px;
  border-radius: 18px;
}

.value-card {
  position: relative;
  padding: 56px 36px 44px;
  background: #fff;
  border-radius: 28px;
  text-align: left;
  transition: transform .4s var(--easing), box-shadow .4s var(--easing);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(81, 50, 30, 0.20);
}

.value-num {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--en);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  color: var(--tan);
}
.value-icon {
  width: 96px; height: 96px;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 28px;
  overflow: hidden;
}
.icon-yellow { background: var(--yellow-3); }
.icon-peach  { background: var(--peach-2); }
.icon-mint   { background: var(--mint-2); }

/* Photo-based value icon (rectangular, matches pain card image) */
.value-icon-photo {
  width: 100%;
  height: 180px;
  margin: -20px -8px 28px;
  border-radius: 18px;
  background: var(--bg-cream);
  box-shadow: 0 6px 20px -14px rgba(83, 78, 74, 0.25);
  overflow: hidden;
}
.value-icon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--easing);
}
/* per-card framing tweaks (shift focus down to keep subject visible) */
.value-card:nth-child(1) .value-icon-photo img { object-position: center top; }
.value-card:nth-child(3) .value-icon-photo img { object-position: center top; }
.value-card:hover .value-icon-photo img { transform: scale(1.05); }

.value-title {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--txt);
}
.value-card p {
  color: var(--txt-mute);
  font-size: 1.4rem;
  line-height: 2.0;
  font-weight: 500;
}

/* ============================================
   4. Office Tour (photo marquee + amenities)
   ============================================ */
.space {
  position: relative;
  padding: 0 0 120px;
  background: var(--bg);
  overflow: hidden;
}
.space-marquee {
  padding: 36px 0 28px;
  background: var(--bg);
  overflow: hidden;
}
.marquee-row {
  display: flex;
  white-space: nowrap;
  font-family: var(--en);
  font-size: clamp(40px, 8vw, 120px);
  line-height: 1;
  color: var(--peach);
  letter-spacing: 0.04em;
}
.marquee-row span {
  display: inline-block;
  animation: marqueeL 30s linear infinite;
}
.marquee-row span:nth-child(2) { animation-delay: -15s; }

.space-head {
  margin-top: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.space-bubble {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 28px;
  font-size: 1.4rem;
  color: var(--txt-mute);
  line-height: 1.9;
  max-width: 360px;
  font-weight: 500;
}
.space-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 40px;
  width: 22px; height: 22px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: rotate(45deg);
}

/* ===== Photo Marquee (right -> left) ===== */
.photo-marquee {
  position: relative;
  margin: 0 0 100px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.photo-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: photoScroll 50s linear infinite;
}
.photo-marquee:hover .photo-track { animation-play-state: paused; }

@keyframes photoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.photo-card {
  flex: 0 0 auto;
  width: 360px;
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 30px -22px rgba(83, 78, 74, 0.25);
  background: var(--bg-cream);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(83, 78, 74, 0.55);
  font-family: var(--en);
  letter-spacing: 0.18em;
  position: relative;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(83, 78, 74, 0.25);
  border-radius: 14px;
}
.photo-placeholder .ph-label { font-size: 1.4rem; font-weight: 400; }
.photo-placeholder .ph-sub {
  font-family: var(--maru);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--txt);
  letter-spacing: 0.06em;
}
/* gradient placeholders to differentiate */
.ph-1 { background: linear-gradient(135deg, var(--yellow-3) 0%, var(--peach-2) 100%); }
.ph-2 { background: linear-gradient(135deg, var(--peach-2) 0%, var(--peach) 100%); }
.ph-3 { background: linear-gradient(135deg, var(--mint-2) 0%, var(--mint) 100%); }
.ph-4 { background: linear-gradient(135deg, var(--yellow-2) 0%, var(--yellow) 100%); }
.ph-5 { background: linear-gradient(135deg, var(--bg-cream) 0%, #e9e0cf 100%); }
.ph-6 { background: linear-gradient(135deg, var(--mint) 0%, var(--mint-2) 100%); }

/* ===== Amenities ===== */
.amenities-wrap { padding-top: 30px; }
.amenities {
  background: var(--bg-grey);
  border-radius: 28px;
  padding: 60px 48px 48px;
}
.amenities-head {
  text-align: center;
  margin-bottom: 44px;
}
.amenities-title {
  font-family: var(--maru);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: #2f8f6c;
  margin-bottom: 18px;
}
.amenities-lead {
  font-size: 1.4rem;
  color: var(--txt);
  line-height: 2.0;
  font-weight: 500;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 8px;
  max-width: 720px;
  margin: 0 auto;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.amenity-icon {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 rgba(83, 78, 74, 0.05);
}
.amenity-icon svg {
  width: 70px;
  height: 70px;
  fill: var(--txt);
}
.amenity-name {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--txt);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============================================
   6. Pricing
   ============================================ */
.pricing {
  position: relative;
  padding: 140px 0 130px;
  background: var(--bg-cream);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan {
  position: relative;
  padding: 48px 36px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: transform .4s var(--easing), box-shadow .4s var(--easing);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(83, 78, 74, 0.20);
}

.plan-yellow .plan-tag { background: var(--yellow); }
.plan-peach  .plan-tag { background: var(--peach); }
.plan-mint   .plan-tag { background: var(--mint); }

.plan-featured {
  background: linear-gradient(180deg, var(--mint-2) 0%, #fff 35%);
  border-color: var(--mint);
}
.plan-mint.plan-featured {
  background: linear-gradient(180deg, var(--mint-2) 0%, #fff 35%);
  border-color: var(--mint);
}

.plan-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-family: var(--maru);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  padding: 8px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -10px rgba(255, 146, 100, 0.5);
}

.plan-tag {
  display: inline-block;
  font-family: var(--maru);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--txt);
  margin-bottom: 16px;
}
.plan-name {
  font-family: var(--maru);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--txt);
  margin-bottom: 6px;
  line-height: 1.4;
}
.plan-sub {
  color: var(--txt-mute);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.7;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.plan-price .amount {
  font-family: var(--maru);
  font-weight: 900;
  font-size: 3.6rem;
  color: var(--txt);
  letter-spacing: 0.02em;
}
.plan-price .unit {
  color: var(--txt-mute);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.plan-fee {
  margin: 16px 0 24px;
  font-size: 1.35rem;
  color: var(--txt);
  background: var(--bg-cream);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}
.plan-fee strong {
  color: var(--coral);
  font-weight: 900;
  font-size: 1.5rem;
}
.plan-feats {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.4rem;
  color: var(--txt);
  line-height: 1.7;
  font-weight: 500;
}
.plan-feats li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 5px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9 L8 12 L13 6' stroke='%23534e4a' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 18px 18px;
  background-repeat: no-repeat;
}
.plan .btn-pill { width: 100%; justify-content: center; }

/* ============================================
   7. Voice
   ============================================ */
.voice {
  position: relative;
  padding: 140px 0 130px;
  background: var(--bg);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.voice-card {
  position: relative;
  background: var(--bg-cream);
  border-radius: 28px;
  padding: 52px 32px 36px;
  transition: transform .4s var(--easing), box-shadow .4s var(--easing);
}
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(83, 78, 74, 0.20);
}
.voice-card::before {
  content: "“";
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--en);
  font-size: 9rem;
  line-height: 1;
  color: var(--peach);
  opacity: 0.7;
}
.voice-avatar {
  position: absolute;
  top: -28px; right: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 6px 14px -8px rgba(83, 78, 74, 0.25);
}

.voice-card blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--maru);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--txt);
  margin: 24px 0 28px;
}
.voice-card figcaption {
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.voice-card .who {
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--txt);
}
.voice-card .meta {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--txt-mute);
  font-weight: 500;
}

/* ============================================
   8. FAQ
   ============================================ */
.faq {
  padding: 140px 0 130px;
  background: var(--bg-mint);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .35s var(--easing), box-shadow .35s var(--easing);
}
.faq-item:hover { border-color: var(--peach); }

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  font-family: var(--maru);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--txt);
  transition: color .3s var(--easing);
}
.q-mark {
  font-family: var(--en);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--coral);
  font-weight: 400;
}
.q-text { line-height: 1.7; }
.q-icon {
  position: relative;
  width: 28px; height: 28px;
  background: var(--yellow);
  border-radius: 50%;
}
.q-icon::before,
.q-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .35s var(--easing);
}
.q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-q[aria-expanded="true"] .q-icon { background: var(--peach); }
.faq-q[aria-expanded="true"] .q-icon::after { transform: translate(-50%, -50%) rotate(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--easing);
}
.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 800px;
}
.faq-a-inner {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 4px 28px 24px;
  border-top: 1px dashed var(--line);
}
.a-mark {
  font-family: var(--en);
  font-size: 2rem;
  color: var(--peach);
  padding-top: 18px;
  font-weight: 400;
}
.faq-a p {
  color: var(--txt-mute);
  font-size: 1.4rem;
  line-height: 2.0;
  padding-top: 20px;
  font-weight: 500;
}

/* ============================================
   9. Final CTA
   ============================================ */
.cta {
  position: relative;
  padding: 140px 0 140px;
  text-align: center;
  background: linear-gradient(5deg, var(--bg-cream) 0%, var(--bg-soft) 45.18%, var(--bg-mint) 100%);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.cta-bg .blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; mix-blend-mode: multiply;
  animation: floatBlob 14s ease-in-out infinite;
}
.cta-bg .blob-yellow { width: 460px; height: 460px; background: var(--yellow-3); top: -140px; left: 10%; }
.cta-bg .blob-peach  { width: 420px; height: 420px; background: var(--peach-2); bottom: -160px; right: 10%; animation-delay: -6s; }

.cta-inner { position: relative; z-index: 1; }
.cta-inner .sec-en { color: var(--tan); padding-left: 0; }
.cta-inner .sec-en::before { display: none; }

.cta-title {
  font-family: var(--maru);
  font-weight: 900;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--txt);
  margin: 12px 0 24px;
}
.cta-title em {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 .1em;
}
.cta-lead {
  color: var(--txt-mute);
  margin-bottom: 40px;
  font-size: 1.5rem;
  line-height: 2.05;
  font-weight: 500;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-points {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.3rem;
  color: var(--txt-mute);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.cta-points li {
  white-space: nowrap;
  position: relative;
  padding-left: 22px;
}
.cta-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 70px 0 0;
}
.footer-inner {
  padding-bottom: 50px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 540px;
}
.footer-logo-img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-tag {
  font-family: var(--en);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--tan);
}
.footer-addr {
  margin-top: 22px;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.95;
  color: var(--txt-mute);
  font-weight: 500;
  text-align: center;
}
.footer-actions {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  position: relative;
  font-family: var(--maru);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--txt);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--easing), border-color .3s var(--easing);
}
.footer-link:hover { color: var(--coral); border-color: var(--coral); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  font-family: var(--en);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--txt-faint);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .pain-list   { grid-template-columns: 1fr; }
  .pain-list-4 { grid-template-columns: 1fr; }
  .pain-list-5 { grid-template-columns: 1fr; }
  .pain-list-5 > .pain-card:nth-child(4),
  .pain-list-5 > .pain-card:nth-child(5) { grid-column: auto; }
  .value-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .value-grid  { grid-template-columns: 1fr; gap: 24px; }
  .plan-grid   { grid-template-columns: 1fr; gap: 32px; }
  .voice-grid  { grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; gap: 48px; }

  .space-head { grid-template-columns: 1fr; }
  .space-bubble { max-width: 100%; }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities { padding: 48px 32px 36px; }

  .global-nav ul { gap: 14px; font-size: 1.2rem; }
}

@media (max-width: 720px) {
  body { font-size: 1.4rem; }
  .container, .header-inner { padding: 0 20px; }
  .sp-only { display: inline; }

  .global-nav { display: none; }
  .global-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255, 251, 247, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 20px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .global-nav.is-open ul {
    flex-direction: column;
    gap: 10px;
  }
  .global-nav.is-open .nav-cta { width: 100%; text-align: center; }
  .hamburger { display: block; }

  /* ===== Hero (mobile): photo on top, headline overlay at chest, body below ===== */
  .hero {
    padding: 70px 0 60px;
    min-height: auto;
    display: block;
    background: var(--bg-cream);
  }
  /* Photo takes top portion as a flow element */
  .hero-photo {
    position: relative;
    inset: auto;
    height: 60vh;
    min-height: 460px;
  }
  .hero-photo img { object-position: 60% center; }
  /* Overlay constrained to photo area, fades only at the bottom */
  .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    bottom: auto;
    height: 60vh;
    min-height: 460px;
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 40%,
      rgba(249, 245, 234, 0.20) 58%,
      rgba(249, 245, 234, 0.78) 82%,
      rgba(249, 245, 234, 0.96) 94%,
      var(--bg-cream) 100%
    );
  }
  .hero-bg-text { display: none; }
  /* Hero inner flows in normal layout below photo */
  .hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 22px;
  }
  .hero-inner > * { max-width: 100%; }
  /* Headline lifts onto bottom of photo (chest area) */
  .hero-headline {
    margin-top: -150px;
    text-align: left;
  }
  .hero-headline .hero-en { margin-bottom: 14px; }
  .hero-headline .hero-title {
    font-size: clamp(2.6rem, 8vw, 3.8rem);
    line-height: 1.45;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(255, 251, 247, 0.7);
  }
  .hero-body { padding-top: 28px; }
  .hero-lead { margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-pill { justify-content: center; }
  /* SCROLL indicator: place in flow below the CTA button */
  .hero-scroll {
    position: static;
    transform: none;
    margin: 32px auto 0;
    display: flex;
  }

  .pains, .value, .pricing, .voice, .faq, .cta {
    padding-top: 90px; padding-bottom: 80px;
  }
  .space { padding-bottom: 80px; }
  .sec-head { margin-bottom: 48px; }

  .pain-card { padding: 48px 28px 36px; }
  .pain-illust.illust-photo { height: 170px; margin: -16px -4px 22px; }
  .value-card, .voice-card, .plan { padding: 40px 26px 32px; }

  .photo-card { width: 260px; height: 180px; }
  .photo-marquee { margin-bottom: 64px; }

  /* Amenities: 3 columns on mobile, larger icons via tighter horizontal gap */
  .amenities { padding: 36px 12px 28px; border-radius: 22px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 4px; max-width: 100%; }
  .amenity-icon { width: 92px; height: 92px; }
  .amenity-icon svg { width: 56px; height: 56px; }
  .amenity-name { font-size: 1.2rem; letter-spacing: 0.03em; line-height: 1.4; }
  .amenities-title { font-size: 1.8rem; }
  .amenities-lead { font-size: 1.3rem; }

  .plan-name { font-size: 2rem; }
  .plan-price .amount { font-size: 3rem; }

  .faq-q { grid-template-columns: 36px 1fr 24px; gap: 12px; padding: 20px; font-size: 1.45rem; }
  .faq-a-inner { grid-template-columns: 36px 1fr; gap: 12px; padding: 4px 20px 20px; }
  .q-icon { width: 24px; height: 24px; }
  .a-mark { padding-top: 14px; font-size: 1.6rem; }
  .q-mark { font-size: 1.6rem; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn-pill { width: 100%; justify-content: center; }
  .cta-points { gap: 12px; flex-direction: column; align-items: center; }
}

/* ============================================
   Floating CTA Button
   ============================================ */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px 16px 20px;
  background: linear-gradient(135deg, #ffd76a 0%, #fce6aa 60%, #ffe8a8 100%);
  color: var(--txt) !important;
  border: 2px solid #fff;
  border-radius: 999px;
  font-family: var(--maru);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow:
    0 0 0 3px rgba(252, 230, 170, 0.45),
    0 0 18px rgba(255, 215, 106, 0.65),
    0 0 36px rgba(255, 146, 100, 0.35),
    0 14px 28px -6px rgba(83, 78, 74, 0.20);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .35s var(--easing), transform .35s var(--easing), visibility .35s var(--easing), box-shadow .3s var(--easing), filter .3s var(--easing);
}
.float-cta.is-visible { animation: floatCtaPulse 2.6s ease-in-out infinite; }
@keyframes floatCtaPulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(252, 230, 170, 0.45),
      0 0 18px rgba(255, 215, 106, 0.65),
      0 0 36px rgba(255, 146, 100, 0.35),
      0 14px 28px -6px rgba(83, 78, 74, 0.20);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(252, 230, 170, 0.55),
      0 0 26px rgba(255, 215, 106, 0.95),
      0 0 52px rgba(255, 146, 100, 0.55),
      0 14px 28px -6px rgba(83, 78, 74, 0.22);
  }
}
.float-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 22px 38px -10px rgba(255, 146, 100, 0.55),
    0 8px 18px -4px rgba(83, 78, 74, 0.22);
}
.float-cta.is-visible { transform: translateY(0); }
.float-cta .fc-circle {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex: 0 0 auto;
  transition: transform .35s var(--easing), background .3s var(--easing);
}
.float-cta:hover .fc-circle { transform: scale(1.4); background: var(--orange); }
.float-cta .fc-arrow {
  position: relative;
  width: 16px; height: 1px;
  background: currentColor;
  transition: width .3s var(--easing);
}
.float-cta .fc-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.float-cta:hover .fc-arrow { width: 22px; }

/* Desktop: hide floating CTA (mobile-only) */
@media (min-width: 721px) {
  .float-cta { display: none !important; }
}

@media (max-width: 720px) {
  .float-cta {
    right: 14px;
    left: auto;
    bottom: 14px;
    padding: 14px 20px 14px 18px;
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-cta {
    transition: opacity .15s linear, visibility .15s linear;
    transform: none;
  }
  .float-cta.is-visible { transform: none; }
}
                                             height: 1px;
  background: currentColor;
  transition: width .3s var(--easing);
}
.float-cta .fc-arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.float-cta:hover .fc-arrow { width: 22px; }

/* Desktop: hide floating CTA (mobile-only) */
@media (min-width: 721px) {
  .float-cta { display: none !important; }
}

@media (max-width: 720px) {
  .float-cta {
    right: 14px;
    left: auto;
    bottom: 14px;
    padding: 14px 20px 14px 18px;
    font-size: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-cta {
    transition: opacity .15s linear, visibility .15s linear;
    animation: none !important;
    transform: none;
  }
  .float-cta.is-visible { transform: none; }
}
ity .15s linear;
    animation: none !important;
    transform: none;
  }
  .float-cta.is-visible { transform: none; }
}
