:root {
  --ichigo: #ea4d4d;
  --ichigo-deep: #d33c3c;
  --ichigo-soft: #f6a3a3;
  --ichigo-pale: #fde4e4;
  --orange: #f08a3c;
  --orange-soft: #fde6d3;
  --leaf: #5fa84f;
  --leaf-deep: #2f7a3a;
  --leaf-soft: #d8ecc7;
  --cream: #fff8f0;
  --cream-2: #fff3e6;
  --paper: #fffaf5;
  --ink: #3a2820;
  --ink-soft: #6b5046;
  --ink-mute: #9a8278;
  --line: #f0d9c8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #f1e9df;
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.page {
  max-width: 100%;
  margin: 0 auto;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 720px;
  background: linear-gradient(180deg, #fff6ee 0%, #ffe9d8 100%);
  overflow: hidden;
}
/* FV: 写真背景 + 左側にコピー */
.hero.hero--fv {
  min-height: 760px;
  background: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg image-slot,
.hero-bg image-slot > * {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.hero--fv .hero-bg-img {
  object-fit: cover;
  object-position: right center;
}
.hero--fv .hero-scrim {
  background:
    linear-gradient(90deg, rgba(255,251,244,0.9) 0%, rgba(255,251,244,0.85) 30%, rgba(255,251,244,0.6) 50%, rgba(255,251,244,0.2) 65%, rgba(255,251,244,0) 78%);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,248,238,0.92) 0%, rgba(255,248,238,0.72) 28%, rgba(255,248,238,0.18) 52%, rgba(255,248,238,0) 70%),
    linear-gradient(180deg, rgba(255,248,238,0.35) 0%, rgba(255,248,238,0) 30%, rgba(255,248,238,0) 70%, rgba(255,248,238,0.45) 100%);
  pointer-events: none;
}
.hero-leaves-top {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none;
}
.hero-strawberry-left {
  position: absolute;
  top: 100px;
  left: -10px;
  width: 130px;
  height: 240px;
  z-index: 3;
  pointer-events: none;
}
.hero-logo {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--cream);
  padding: 18px 56px 22px 28px;
  border-radius: 0 0 60px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.hero-logo .brand-jp {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.hero-logo .logo-berry {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.hero-logo .brand-en {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-mute);
  margin-top: 5px;
}
.hero-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background: var(--ichigo);
  border: none;
  color: white;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.2s;
}
.hero-menu:hover { background: var(--ichigo-deep); }
.hero-menu .bars { display: flex; flex-direction: column; gap: 4px; }
.hero-menu .bars span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
}
.hero-menu .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 140px 0 0 56px;
  max-width: 560px;
}
.hero--fv .hero-content {
  padding: 140px 0 60px 64px;
  max-width: 640px;
}
.hero-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 1.05;
  color: var(--ichigo);
  letter-spacing: 0.01em;
  margin: 0 0 28px;
  text-shadow: 0 2px 0 #fff, 0 4px 16px rgba(255,255,255,0.6);
}
.hero--fv .hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 64px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  text-shadow: 0 2px 0 #fff, 0 4px 18px rgba(255,255,255,0.7);
}
.hero--fv .hero-title .line {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  white-space: nowrap;
}
.hero--fv .hero-title .line-1 {
  color: #3a2820;
  font-size: 44px;
}
.hero--fv .hero-title .line-2,
.hero--fv .hero-title .line-3 {
  color: var(--ichigo);
  font-size: 64px;
}
.hero--fv .hero-title .berry-inline {
  display: inline-block;
  margin-left: 4px;
  transform: translateY(-4px) rotate(-8deg);
}
.hero--fv .hero-title .berry-inline svg { width: 36px; height: 42px; }
.hero--fv .hero-title .berry-inline--big {
  transform: translateY(0) rotate(8deg);
}
.hero--fv .hero-title .berry-inline--big svg { width: 46px; height: 54px; }
.hero-divider {
  display: none;
}
.hero--fv .hero-divider {
  display: block;
  width: 64px;
  height: 0;
  margin: 8px 0 16px;
  border-top: 2px dashed rgba(234, 77, 77, 0.55);
}
.hero-sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 18px;
}
.hero--fv .hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: #3a2820;
  line-height: 1.7;
  margin: 0 0 28px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 36px;
}
.hero-tag .clock {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ichigo);
  position: relative;
}
.hero-tag .clock::before, .hero-tag .clock::after {
  content: ""; position: absolute; background: var(--ichigo);
  left: 50%; top: 50%;
}
.hero-tag .clock::before { width: 2px; height: 6px; transform: translate(-50%, -100%); }
.hero-tag .clock::after { width: 5px; height: 2px; transform: translate(-10%, -50%); }

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #ee5757 0%, #e04545 100%);
  color: white;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding: 22px 64px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(234, 77, 77, 0.35), inset 0 -3px 0 rgba(0,0,0,0.08);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  min-width: 460px;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(234, 77, 77, 0.45); }
.cta-primary:active { transform: translateY(0); }
.cta-primary .arr {
  position: absolute;
  right: 24px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid; place-items: center;
}
.hero--fv .cta-primary {
  font-size: 20px;
  padding: 20px 56px;
  min-width: 420px;
}

.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 130px;
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.hero-badge strong { color: var(--ichigo); font-size: 22px; font-weight: 900; }
.hero-badge .berry-mini { position: absolute; bottom: -6px; right: -4px; }

/* いちご型バッジ (FV) */
.hero-badge--berry {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  width: 200px;
  height: 220px;
  right: 6%;
  bottom: 14%;
  filter: drop-shadow(0 8px 18px rgba(120, 30, 30, 0.18));
}
.hero-badge--berry .badge-berry {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-badge--berry .badge-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.45;
  text-shadow:
    0 1px 0 rgba(120, 30, 30, 0.9),
    0 0 6px rgba(120, 30, 30, 0.8),
    0 0 10px rgba(120, 30, 30, 0.6);
  transform: translateY(-4%) rotate(-4deg);
}
.hero-badge--berry .badge-text strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  margin: 2px 0;
  text-shadow:
    0 1px 0 rgba(120, 30, 30, 0.9),
    0 0 6px rgba(120, 30, 30, 0.8);
}
.hero-badge--berry .badge-text .small { font-size: 11.5px; opacity: 1; }

/* ============ SECTION TITLE ============ */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
}
.sec-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--ink);
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.sec-title .leaf-deco {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}
.title-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}
.title-decor .dash {
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--ichigo-soft);
}
.title-decor .title-berry {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

section { padding: 64px 40px; }
.section-wrap { max-width: 940px; margin: 0 auto; }

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feat-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(120,60,40,0.06);
  display: flex;
  flex-direction: column;
}
.feat-card .ph {
  width: 100%;
  height: 150px;
}
.feat-card image-slot {
  display: block;
  width: 100%;
  height: 150px;
}
.feat-card image-slot .ph { height: 100%; }
.feat-card .body {
  padding: 18px 14px 22px;
  text-align: center;
}
.feat-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ichigo);
  margin: 0 0 8px;
}
.feat-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============ PLANS ============ */
.plans-section {
  background: linear-gradient(180deg, #fff8ee 0%, #ffeed8 100%);
}
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plan-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  box-shadow: 0 4px 14px rgba(120,60,40,0.08);
  position: relative;
}
.plan-card.plan-card--noimg {
  grid-template-columns: 1fr;
  padding: 40px 28px 28px;
}
.plan-card .ph { width: 100%; height: 100%; min-height: 240px; }
.plan-card .ribbon {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ichigo);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}
.plan-card.alt .ribbon { background: var(--orange); }
.plan-card--noimg .plan-body { padding: 0; }

/* ─ no-image plan card ─ */
.plan-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ichigo);
  color: white;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 22px 8px 22px;
  border-radius: 20px 0 16px 0;
  z-index: 2;
  white-space: nowrap;
}
.plan-card.alt .plan-badge { background: var(--orange); }
.plan-badge::before { content: none; }

.plan-tagline {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  background: var(--orange);
  padding: 8px 22px;
  border-radius: 20px 0 16px 0;
  white-space: nowrap;
  z-index: 2;
}
.plan-tagline::before { content: none; }

.plan-icon {
  display: flex;
  justify-content: center;
  color: var(--ichigo);
  margin-bottom: 6px;
}
.plan-icon img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.plan-card.alt .plan-icon img {
  width: 80px;
  height: 80px;
}
.plan-card.alt .plan-icon { color: var(--orange); }

.plan-label {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 6px;
  background: var(--ichigo-pale);
  color: var(--ichigo-deep);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 auto 16px;
}
.plan-card.alt .plan-label {
  background: #fbe7d1;
  color: #b25e1a;
}
.plan-body { padding: 18px 20px 18px; display: flex; flex-direction: column; }
.plan-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-align: center;
  margin: 0 0 4px;
}
.plan-sub { font-size: 12px; color: var(--ink-mute); text-align: center; margin-bottom: 14px; }
.plan-table { font-size: 13px; }
.plan-table .row {
  display: flex; justify-content: space-between;
  padding: 6px 4px;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.plan-table .row:last-child { border: none; }
.plan-table .price { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; color: var(--ichigo); font-size: 16px; white-space: nowrap; }
.plan-card.alt .plan-table .price { color: var(--orange); }
.plan-table .free { color: var(--leaf-deep); font-weight: 700; }
.plan-cta {
  margin-top: 14px;
  background: var(--ichigo);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 11px 0;
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.plan-cta:hover { background: var(--ichigo-deep); }
.plan-card.alt .plan-cta { background: var(--orange); }
.plan-card.alt .plan-cta:hover { background: #db7a2d; }
.plans-banner-wrap { margin-top: 32px; }

/* ============ GROUP CTA BANNER ============ */
.group-banner {
  background: #cfe5d6;
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-height: 170px;
}
.group-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.group-banner-bg image-slot {
  display: block;
  width: 100%;
  height: 100%;
}
.group-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,248,238,0.6) 0%, rgba(255,248,238,0.4) 40%, rgba(255,248,238,0.15) 65%, rgba(255,248,238,0) 90%);
  pointer-events: none;
}
.group-banner > *:not(.group-banner-bg) { position: relative; z-index: 2; }
.group-banner h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 6px;
}
.group-banner p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.group-banner .more {
  position: absolute;
  right: 24px;
  bottom: 20px;
  background: white;
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px rgba(60, 40, 30, 0.12);
  z-index: 2;
  transition: background 0.15s, transform 0.15s;
}
.group-banner .more:hover { background: var(--cream); transform: translateY(-1px); }

/* ============ FLOW ============ */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.flow.flow--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
.flow.flow--vertical .flow-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 28px;
  align-items: center;
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(120,60,40,0.06);
  text-align: left;
  overflow: hidden;
}
.flow.flow--vertical .flow-body { order: 0; }
.flow.flow--vertical .flow-card image-slot {
  order: 1;
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}
.flow.flow--vertical .flow-card image-slot .ph { height: 100%; border-radius: 0; }
.flow.flow--vertical .flow-body {
  position: relative;
  padding: 8px 8px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.step-pill {
  background: var(--ichigo);
  color: white;
  font-family: "DM Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  line-height: 1;
}
.step-divider {
  width: 80px;
  height: 0;
  border-top: 2px dotted var(--ichigo-soft);
  margin: -2px 0 0;
}
.step-divider { display: none; }
.flow.flow--vertical .flow-card h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--ichigo);
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.01em;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 8px;
  border-bottom: 2px dotted var(--ichigo-soft);
  white-space: nowrap;
}
.flow.flow--vertical .flow-card p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.flow-arrow {
  display: flex;
  justify-content: center;
  color: var(--ichigo-soft);
  margin: 6px 0;
}
.flow-card { text-align: center; position: relative; }
.flow-num {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  background: var(--ichigo);
  color: white;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-weight: 700;
  font-size: 14px;
  display: grid; place-items: center;
  z-index: 2;
  border: 3px solid var(--cream);
  box-shadow: 0 2px 6px rgba(234,77,77,0.3);
}
.flow-card .ph { width: 100%; height: 150px; border-radius: 14px; overflow: hidden; }
.flow-card image-slot { display: block; width: 100%; height: 150px; border-radius: 14px; overflow: hidden; }
.flow-card image-slot .ph { height: 100%; border-radius: 0; }
.flow-card h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ichigo);
  margin: 18px 0 8px;
}
.flow-card p { margin: 0; font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; }

/* ============ SAFETY ============ */
.safety-section { background: var(--cream-2); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.safety-cell {
  background: white;
  border: 1.5px dashed var(--leaf);
  border-radius: 18px;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-height: 220px;
}
.safety-cell .safety-check {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.safety-cell .safety-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.safety-cell .safety-icon {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-top: auto;
}
.safety-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 32px 0 0;
}
.safety-footer .deco {
  width: 90px;
  height: auto;
  object-fit: contain;
}
.safety-footer .deco.left { justify-self: end; }
.safety-footer .deco.right { justify-self: start; }
.safety-footer .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.safety-footer .footer-line {
  width: 110px;
  height: auto;
  object-fit: contain;
}
.safety-footer .center p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  text-align: center;
  line-height: 1.7;
  white-space: nowrap;
}
.safety-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 8px 0 0;
}

/* ============ SMILES ============ */
/* ============ SMILES / INSTAGRAM ============ */
.insta-section { background: #fff; }

.insta-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid #e8e3da;
  border-radius: 14px 14px 0 0;
  background: white;
  border-bottom: none;
}
.insta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 40%, #6228d7);
  flex-shrink: 0;
}
.insta-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
  padding: 4px;
  object-fit: contain;
  display: block;
}
.insta-account { flex: 1; min-width: 0; }
.acct-name {
  font-family: "DM Mono", monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.acct-name .verified { display: inline-flex; }
.acct-handle {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 3px;
}
.insta-follow {
  background: #3897f0;
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s;
}
.insta-follow:hover { background: #2378c2; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid #e8e3da;
  border-radius: 0 0 14px 14px;
  background: var(--paper);
}
.insta-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(60, 40, 30, 0.06);
  display: flex;
  flex-direction: column;
}
.insta-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f1e9df;
  overflow: hidden;
}
.insta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.insta-card:hover .insta-img img { transform: scale(1.03); }

.insta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 4px;
  color: var(--ink);
}
.insta-actions .ic-btn {
  display: inline-flex;
  cursor: pointer;
  transition: color 0.15s;
}
.insta-actions .ic-btn:hover { color: var(--ichigo); }
.insta-actions .ic-btn.save { margin-left: auto; }

.insta-meta {
  padding: 4px 12px 12px;
  font-size: 12.5px;
  color: var(--ink);
  line-height: 1.55;
}
.insta-meta .likes {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.insta-meta .caption {
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insta-meta .caption strong {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  margin-right: 4px;
}
.insta-meta .comments {
  font-size: 11.5px;
  color: var(--ink-mute);
  cursor: pointer;
}
.insta-meta .comments:hover { color: var(--ink-soft); }

.insta-cta {
  text-align: center;
  margin-top: 22px;
}
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 50%, #6228d7);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(238, 42, 123, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.insta-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(238, 42, 123, 0.36); }
.insta-hash {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ichigo);
  margin: 12px 0 0;
}

/* ============ FAQ ============ */
.faq-section { background: var(--cream-2); position: relative; }
.faq-deco {
  position: absolute; right: -40px; top: 30px; bottom: 30px;
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-block {
  background: white;
  border-radius: 14px;
  border: 1px solid transparent;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-block:hover { border-color: var(--ichigo-soft); }
.faq-block.open { border-color: var(--ichigo); }
.faq-item {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.faq-item .q-row { display: flex; align-items: center; gap: 12px; flex: 1; }
.faq-item .q-mark {
  width: 26px; height: 26px;
  background: var(--leaf);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-item .q-text { font-size: 14px; font-weight: 600; color: var(--ink); }
.faq-item .chev {
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-block.open .chev { transform: rotate(-135deg); margin-top: 4px; }

/* もっと見るで現れる追加項目のスムーズアニメーション */
.faq-extra {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: -12px; /* 親 flex の gap 12px を打ち消して、閉じてる時に空間を作らない */
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-extra.open {
  grid-template-rows: 1fr;
  margin-top: 0;
}
.faq-extra-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-block.open .faq-answer-wrap {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-answer {
  padding: 16px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  border-top: 1px dashed var(--line);
  margin: 0 18px;
  padding-left: 0;
  padding-right: 0;
}
.faq-answer .a-mark {
  width: 26px; height: 26px;
  background: var(--ichigo);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-answer .a-text { flex: 1; padding-bottom: 4px; }
.faq-more {
  display: block;
  margin: 22px auto 0;
  background: var(--leaf);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 38px;
  font-weight: 700;
  font-size: 13.5px;
}
.faq-more:hover { background: var(--leaf-deep); }

/* ============ ACCESS ============ */
.access { padding-bottom: 96px; }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 32px;
  align-items: center;
}
.access-info { font-size: 14px; color: var(--ink); }
.access-info .row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); align-items: flex-start; }
.access-info .row:last-child { border: none; }
.access-info .ico {
  width: 40px; height: 40px;
  background: var(--ichigo);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.access-info .ico svg { width: 18px; height: 18px; }
.access-info b {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.access-info span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.75; }
.map-frame, .farm-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(60, 40, 30, 0.1);
}
.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ FOOTER ============ */
.footer-cta {
  background: var(--ichigo);
  margin: 32px 40px;
  border-radius: 20px;
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  color: white;
}
.footer-cta::before,
.footer-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.footer-cta::before {
  width: 260px; height: 260px;
  top: -90px; left: -60px;
}
.footer-cta::after {
  width: 320px; height: 320px;
  bottom: -140px; right: -60px;
}
.cta-deco {
  position: absolute;
  width: 110px;
  height: auto;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}
.cta-deco-left {
  left: 8px;
  bottom: 16px;
  transform: rotate(-10deg);
}
.cta-deco-right {
  right: 8px;
  top: 16px;
  transform: rotate(8deg);
}
.cta-text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
  padding-left: 124px;
}
.cta-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: white;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
  display: inline-block;
}
.cta-sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-pill {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--ichigo);
  border: none;
  border-radius: 100vh;
  padding: 16px 32px 16px 36px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
  margin-right: 20px;
}
.cta-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); }
.cta-pill:active { transform: translateY(0); }
.cta-pill-icon {
  display: inline-flex;
  color: var(--ichigo);
}
.cta-pill-arrow {
  width: 30px; height: 30px;
  background: var(--ichigo);
  color: white;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}
.footer {
  background: white;
  padding: 22px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.footer-cta-old-orphan-removed {
  background: white;
  padding: 22px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-mute);
  font-family: "DM Mono", monospace;
  letter-spacing: 0.06em;
}

/* ============ MENU DRAWER ============ */
.drawer-back {
  position: fixed; inset: 0;
  background: rgba(40,20,15,0.6);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.drawer-back.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 360px;
  background: var(--cream);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 32px;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  background: var(--ichigo);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  margin-bottom: 28px;
}
.drawer h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ichigo);
  margin: 0 0 18px;
}
.drawer nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 15px;
}
.drawer nav a:hover { color: var(--ichigo); }

/* ============ MODAL ============ */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(40,20,15,0.65);
  z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  border-radius: 22px;
  padding: 32px 32px 28px;
  max-width: 440px;
  width: 100%;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s;
}
.modal-back.open .modal { transform: translateY(0) scale(1); }
.modal h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--ichigo);
  margin: 0 0 6px;
  text-align: center;
}
.modal .lead { text-align: center; font-size: 13px; color: var(--ink-soft); margin: 0 0 22px; }
.modal label { display: block; font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.modal .field { margin-bottom: 14px; }
.modal input, .modal select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: white;
  color: var(--ink);
}
.modal input:focus, .modal select:focus { outline: 2px solid var(--ichigo-soft); border-color: var(--ichigo); }
.modal .actions { display: flex; gap: 12px; margin-top: 8px; }
.modal .actions button { flex: 1; padding: 13px; border-radius: 999px; border: none; font-weight: 700; font-size: 14px; }
.modal .actions .cancel { background: white; color: var(--ink-soft); border: 1.5px solid var(--line); }
.modal .actions .submit { background: var(--ichigo); color: white; }
.modal .actions .submit:hover { background: var(--ichigo-deep); }

.toast {
  position: fixed; left: 50%; bottom: 36px;
  transform: translate(-50%, 60px);
  background: var(--ink);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 300;
  opacity: 0;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* page edge berries */
.edge-berry {
  position: absolute;
  width: 18px; height: 22px;
}

/* image-slot reset */
image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}
/* stagger within grids */
.plans .plan-card:nth-child(2),
.safety-grid .safety-cell:nth-child(2) { transition-delay: 80ms; }
.safety-grid .safety-cell:nth-child(3) { transition-delay: 160ms; }
.safety-grid .safety-cell:nth-child(4) { transition-delay: 240ms; }
.safety-grid .safety-cell:nth-child(5) { transition-delay: 320ms; }

/* flow cards: stagger by sibling order (separators between cards mean :nth-of-type would mis-fire) */
.flow.flow--vertical .flow-card { transition-delay: 0ms; }
.flow.flow--vertical > :nth-child(3) .flow-card { transition-delay: 60ms; }
.flow.flow--vertical > :nth-child(5) .flow-card { transition-delay: 120ms; }
.flow.flow--vertical > :nth-child(7) .flow-card { transition-delay: 180ms; }

/* FV: page-load fade-in */
.hero.hero--fv {
  animation: heroFade 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero.hero--fv { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  section { padding: 48px 24px; }
  .section-wrap { max-width: 100%; }
  .sec-title { font-size: 28px; }

  /* hero */
  .hero { min-height: auto; }
  .hero.hero--fv { min-height: 580px; }
  .hero-content,
  .hero--fv .hero-content {
    padding: 120px 32px 48px;
    max-width: 100%;
  }
  .hero-title { font-size: 60px; }
  .hero--fv .hero-title { font-size: 48px; }
  .hero--fv .hero-title .line-1 { font-size: 32px; }
  .hero--fv .hero-title .line-2,
  .hero--fv .hero-title .line-3 { font-size: 48px; }
  .hero--fv .hero-sub { font-size: 16px; }
  .hero-logo { padding: 14px 36px 18px 20px; }
  .hero-logo .brand-jp { font-size: 18px; }
  .hero-menu { width: 72px; height: 72px; }
  .cta-primary { min-width: 0; width: 100%; max-width: 420px; font-size: 18px; padding: 18px 36px; }
  .hero--fv .cta-primary { min-width: 0; }
  .cta-primary .arr { right: 16px; }

  /* features */
  .features { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* plans */
  .plans { grid-template-columns: 1fr; gap: 16px; }
  .plan-card.plan-card--noimg { padding: 44px 24px 24px; }

  /* group banner */
  .group-banner { min-height: 160px; padding: 24px; }
  .group-banner h3 { font-size: 18px; }

  /* flow */
  .flow.flow--vertical { max-width: 100%; }
  .flow.flow--vertical .flow-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .flow.flow--vertical .flow-body { order: 1; padding: 4px; }
  .flow.flow--vertical .flow-card image-slot { height: 220px; order: 0; }
  .flow.flow--vertical .flow-card h4 { font-size: 24px; white-space: normal; }
  .flow.flow--vertical .flow-card p { font-size: 13.5px; }

  /* safety */
  .safety-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .safety-cell { min-height: 200px; padding: 12px 12px 14px; }
  .safety-cell .safety-check { width: 54px; height: 54px; }
  .safety-cell .safety-icon { width: 108px; height: 108px; }
  .safety-footer { gap: 14px; }
  .safety-footer .deco { width: 70px; }
  .safety-footer .footer-line { width: 90px; }
  .safety-footer .center p { font-size: 13px; }

  /* smiles */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 14px; }
  .insta-header { padding: 12px 14px; gap: 10px; }
  .insta-avatar { width: 38px; height: 38px; }
  .acct-name { font-size: 13.5px; }
  .acct-handle { font-size: 11px; }
  .insta-follow { font-size: 11.5px; padding: 6px 14px; }

  /* faq */
  .faq-grid { max-width: 100%; }

  /* access */
  .access-grid { grid-template-columns: 1fr; }
}

/* Mobile ≤ 600px */
@media (max-width: 600px) {
  section { padding: 40px 18px; }
  .sec-title { font-size: 22px; gap: 10px; }

  /* hero */
  .hero.hero--fv { min-height: 500px; }
  .hero-content,
  .hero--fv .hero-content {
    padding: 110px 20px 36px;
  }
  .hero--fv .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255,251,244,0.85) 0%, rgba(255,251,244,0.6) 40%, rgba(255,251,244,0.15) 70%, rgba(255,251,244,0) 100%);
  }
  .hero-title { font-size: 44px; }
  .hero--fv .hero-title { font-size: 36px; gap: 4px; margin-bottom: 14px; }
  .hero--fv .hero-title .line { white-space: normal; }
  .hero--fv .hero-title .line-1 { font-size: 22px; }
  .hero--fv .hero-title .line-2,
  .hero--fv .hero-title .line-3 { font-size: 32px; }
  .hero--fv .hero-sub { font-size: 14px; line-height: 1.65; margin-bottom: 22px; }
  .hero-logo { padding: 12px 28px 14px 16px; gap: 8px; }
  .hero-logo .brand-jp { font-size: 15px; }
  .hero-logo .brand-en { font-size: 9px; }
  .hero-logo svg { width: 28px; height: 28px; }
  .hero-menu { width: 60px; height: 60px; }
  .hero-menu .bars span { width: 20px; }
  .hero-menu .label { font-size: 9px; }
  .cta-primary { font-size: 16px; padding: 16px 28px; }
  .cta-primary svg:first-of-type { width: 18px; height: 18px; }

  /* features */
  .features { grid-template-columns: 1fr; }
  .feat-card { display: grid; grid-template-columns: 120px 1fr; align-items: center; }
  .feat-card image-slot { height: 100%; min-height: 110px; }
  .feat-card .body { padding: 12px 14px; }
  .feat-card .body h3 { font-size: 15px; }
  .feat-card .body p { font-size: 12.5px; }

  /* plans */
  .plan-card.plan-card--noimg { padding: 40px 18px 20px; }
  .plan-name { font-size: 19px; }
  .plan-label { font-size: 12px; padding: 5px 12px; }
  .plan-icon img { width: 80px; height: 80px; }
  .plan-card.alt .plan-icon img { width: 64px; height: 64px; }
  .plan-table { font-size: 12.5px; }
  .plan-table .price { font-size: 14.5px; }
  .plan-cta { font-size: 12.5px; padding: 10px 0; }
  .plan-badge { font-size: 11px; padding: 6px 14px 6px 16px; border-radius: 18px 0 12px 0; }
  .plan-tagline { font-size: 11px; padding: 6px 14px 6px 16px; border-radius: 18px 0 12px 0; }

  /* group banner */
  .group-banner { min-height: 200px; padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .group-banner h3 { font-size: 16px; }
  .group-banner p { font-size: 12px; }
  .group-banner .more {
    position: relative;
    right: auto; bottom: auto;
    align-self: flex-start;
    margin-top: 4px;
    padding: 9px 18px;
    font-size: 12px;
  }

  /* flow */
  .flow.flow--vertical .flow-card { padding: 14px; gap: 12px; }
  .flow.flow--vertical .flow-card image-slot { height: 180px; }
  .flow.flow--vertical .flow-card h4 { font-size: 22px; }
  .flow.flow--vertical .flow-card p { font-size: 13px; }
  .flow-arrow svg { width: 32px; height: 26px; }

  /* safety */
  .safety-section { padding-bottom: 40px; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .safety-cell { padding: 12px 10px 14px; min-height: 180px; gap: 6px; }
  .safety-cell .safety-check { width: 46px; height: 46px; }
  .safety-cell .safety-title { font-size: 13px; line-height: 1.45; }
  .safety-cell .safety-icon { width: 94px; height: 94px; }
  .safety-note { font-size: 12px; }
  .safety-footer { grid-template-columns: 50px auto 50px; gap: 8px; margin-top: 22px; }
  .safety-footer .deco { width: 100%; }
  .safety-footer .footer-line { width: 80px; }
  .safety-footer .center p { font-size: 11.5px; white-space: normal; }

  /* smiles */
  .insta-grid { gap: 8px; padding: 10px; }
  .insta-meta { font-size: 11.5px; padding: 4px 10px 10px; }
  .insta-meta .likes { font-size: 11.5px; }
  .insta-meta .caption { -webkit-line-clamp: 1; }
  .insta-meta .comments { font-size: 10.5px; }
  .insta-actions { padding: 8px 10px 2px; gap: 8px; }
  .insta-btn { font-size: 13px; padding: 10px 22px; }

  /* footer cta */
  .footer-cta { margin: 24px 18px; padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta-text { padding-left: 0; }
  .cta-title { font-size: 22px; }
  .cta-sub { font-size: 12.5px; }
  .cta-pill { font-size: 17px; padding: 14px 18px 14px 22px; }
  .cta-deco { width: 80px; }
  .cta-deco-left { left: 4px; bottom: 12px; }
  .cta-deco-right { right: 4px; top: -10px; }

  /* modal */
  .modal { padding: 24px 20px; max-width: calc(100vw - 32px); }
  .modal h3 { font-size: 18px; }

  /* drawer */
  .drawer { width: min(280px, 80vw); }
}
