/* ============================================
   MamaのやさしいIT教室 - styles
   Palette: soft sakura pink + warm cream + ink
   ============================================ */

:root {
  --pink-50:  #fff5f7;
  --pink-100: #ffe6ec;
  --pink-200: #ffc8d4;
  --pink-300: #f7a8b8;
  --pink-400: #f08aa0;
  --pink-500: #e26b86;
  --pink-600: #c84d6a;

  --cream-50: #fffaf3;
  --cream-100: #fff7f0;
  --cream-200: #fdeede;

  --ink-900: #2d2326;
  --ink-700: #4b3f43;
  --ink-500: #7a6c70;
  --ink-300: #b6a9ad;

  --green-500: #76b390;
  --yellow-500: #f3c06b;

  --shadow-sm: 0 2px 6px rgba(180, 110, 130, 0.08);
  --shadow-md: 0 8px 24px rgba(180, 110, 130, 0.10);
  --shadow-lg: 0 18px 48px rgba(180, 110, 130, 0.14);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1140px;

  --font-head: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.sm-only { display: none; }
@media (max-width: 640px) {
  .sm-only { display: inline; }
}

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 168, 184, 0.15);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.25;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--pink-50);
  border-radius: 50%;
}
.logo-jp { font-size: 14px; }
@media (min-width: 800px) {
  .logo-jp { font-size: 16px; }
}

.nav-desktop { display: none; }
@media (min-width: 1000px) {
  .nav-desktop { display: block; }
  .nav-desktop ul {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .nav-desktop a {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink-700);
    transition: background 0.2s, color 0.2s;
  }
  .nav-desktop a:hover { color: var(--pink-500); background: var(--pink-50); }
  .nav-desktop a.nav-cta {
    margin-left: 12px;
    background: var(--pink-400);
    color: #fff;
    padding: 12px 22px;
    box-shadow: 0 4px 12px rgba(240, 138, 160, 0.35);
  }
  .nav-desktop a.nav-cta:hover { background: var(--pink-500); color: #fff; }
}

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--pink-50);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1000px) { .hamburger { display: none; } }

.nav-mobile {
  position: fixed;
  inset: 78px 0 auto 0;
  background: var(--cream-50);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-bottom: 1px solid rgba(247, 168, 184, 0.2);
}
.nav-mobile.open { max-height: 500px; }
.nav-mobile ul {
  padding: 12px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink-700);
}
.nav-mobile a:hover { background: var(--pink-50); color: var(--pink-500); }
@media (min-width: 1000px) { .nav-mobile { display: none; } }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--pink-400);
  color: #fff;
  box-shadow: 0 8px 24px rgba(240, 138, 160, 0.4);
}
.btn-primary:hover {
  background: var(--pink-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(240, 138, 160, 0.5);
}
.btn-ghost {
  background: #fff;
  color: var(--ink-900);
  border: 2px solid var(--pink-200);
}
.btn-ghost:hover {
  border-color: var(--pink-400);
  color: var(--pink-500);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }
.btn-icon { color: var(--pink-500); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background:
    radial-gradient(800px 400px at 80% -10%, var(--pink-100), transparent 70%),
    radial-gradient(600px 300px at 0% 30%, #fff1d6, transparent 70%),
    var(--cream-50);
  padding: 60px 0 120px;
  overflow: hidden;
}

.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, var(--pink-200) 4px, transparent 5px),
    radial-gradient(circle at 88% 14%, var(--pink-300) 3px, transparent 4px),
    radial-gradient(circle at 30% 80%, var(--pink-200) 3px, transparent 4px),
    radial-gradient(circle at 70% 60%, var(--pink-300) 2px, transparent 3px),
    radial-gradient(circle at 50% 30%, var(--pink-200) 2px, transparent 3px);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 16px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  color: var(--pink-500);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow span::before {
  content: "🌸 ";
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  color: var(--ink-900);
}
.hero-accent {
  background: linear-gradient(transparent 65%, var(--pink-100) 65%);
  padding: 0 6px;
  color: var(--pink-600);
}

.hero-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  margin: 0 0 24px;
  color: var(--ink-700);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 36px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 999px;
  border: 2px dashed var(--pink-200);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-700);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green-500);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-quote {
  margin: 0;
  font-style: italic;
  color: var(--ink-500);
  font-size: 14px;
}

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.hero-photo {
  position: absolute;
  inset: 6% 6% 6% 6%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--pink-100);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bubble {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.bubble-emoji { font-size: 26px; }
.bubble-1 { top: 6%; left: -4%; animation-delay: 0s; }
.bubble-2 { bottom: 18%; right: -6%; animation-delay: 1.2s; }
.bubble-3 { bottom: -4%; left: 18%; animation-delay: 2.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================
   Section base
   ============================================ */
.section {
  padding: 100px 0;
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--pink-500);
  text-transform: uppercase;
  position: relative;
  padding: 0 28px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--pink-300);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  color: var(--ink-900);
}
.section-title-left {
  text-align: left;
}

.section-sub {
  margin: 0;
  color: var(--ink-500);
  font-size: 15px;
}

/* ============================================
   Concerns
   ============================================ */
.concerns {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
}
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.concern-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(247, 168, 184, 0.18);
  transition: transform 0.25s, box-shadow 0.25s;
}
.concern-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.concern-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.concern-card p {
  margin: 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.7;
}
.concern-card-cta {
  background: var(--pink-50);
  border: 2px dashed var(--pink-300);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.concern-cta-text {
  margin: 0 !important;
  font-family: var(--font-head);
  font-size: 16px !important;
  color: var(--ink-900) !important;
}
.concern-cta-text strong {
  color: var(--pink-600);
  font-size: 18px;
}
.concern-cta-link {
  font-weight: 700;
  color: var(--pink-500);
  font-size: 14px;
}
.concern-cta-link:hover { color: var(--pink-600); }

/* ============================================
   Services
   ============================================ */
.services {
  background:
    radial-gradient(600px 400px at 100% 0%, var(--pink-50), transparent 70%),
    var(--cream-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-300), var(--yellow-500));
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pink-500);
  margin-bottom: 10px;
}
.service-image {
  height: 140px;
  background: var(--pink-50);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-image img {
  max-width: 60%;
  max-height: 100%;
}
.service-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.service-text {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.85;
}

/* ============================================
   Price
   ============================================ */
.price {
  background: var(--cream-100);
}
.price-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .price-wrap { grid-template-columns: 1.4fr 1fr; align-items: stretch; }
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-tag {
  align-self: flex-start;
  background: var(--pink-100);
  color: var(--pink-600);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-tag-sub {
  background: #fff4dd;
  color: #b67d28;
}
.price-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 24px;
}
.price-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  flex: 1;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  gap: 12px;
  flex-wrap: wrap;
}
.price-time {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-700);
  font-size: 16px;
}
.price-amount {
  font-family: var(--font-head);
  color: var(--ink-900);
}
.price-amount strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--pink-600);
  margin-right: 2px;
}
.price-amount small {
  font-size: 12px;
  color: var(--ink-500);
  margin-left: 4px;
}
.price-flat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  padding: 22px 16px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  flex: 1;
}
.price-flat-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-700);
}
.price-flat-amount {
  font-family: var(--font-head);
}
.price-flat-amount strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--pink-600);
}
.price-note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500);
}

/* ============================================
   Message
   ============================================ */
.message {
  background:
    radial-gradient(600px 300px at 50% 100%, var(--pink-100), transparent 70%),
    var(--cream-50);
}
.message-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 32px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.message-mark {
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: serif;
  font-size: 90px;
  color: var(--pink-200);
  line-height: 1;
}
.message-line {
  font-family: var(--font-head);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink-900);
}
.message-line-1 { font-size: clamp(22px, 3vw, 30px); color: var(--pink-600); }
.message-line-2 { font-size: clamp(18px, 2.5vw, 24px); }
.message-line-3 { font-size: clamp(16px, 2vw, 20px); margin-bottom: 0; color: var(--ink-700); }

/* ============================================
   About
   ============================================ */
.about {
  background: var(--cream-50);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
}

.about-photo {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--pink-100);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-name-tag {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-head);
}
.about-name-jp {
  font-weight: 800;
  font-size: 22px;
  color: var(--pink-600);
}
.about-name-role {
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.1em;
}
.about-greeting {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 22px;
  color: var(--ink-900);
}
.about-greeting strong {
  color: var(--pink-600);
}
.about-body {
  margin: 0 0 18px;
  font-size: 15.5px;
  color: var(--ink-700);
  line-height: 2;
}

/* ============================================
   Voice
   ============================================ */
.voice {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  position: relative;
  border: 1px solid rgba(247, 168, 184, 0.15);
}
.voice-card::before {
  content: "”";
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: serif;
  font-size: 64px;
  color: var(--pink-200);
  line-height: 1;
}
.voice-card blockquote {
  margin: 18px 0 24px;
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.95;
  quotes: none;
  position: relative;
}
.voice-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--pink-100);
  padding-top: 16px;
}
.voice-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--pink-50);
  border-radius: 50%;
  font-size: 24px;
}
.voice-meta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background:
    radial-gradient(800px 400px at 50% 0%, var(--pink-50), transparent 70%),
    var(--cream-50);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .contact-wrap { grid-template-columns: 0.8fr 1fr; gap: 40px; align-items: start; }
}

.contact-tel {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--pink-100);
}
.contact-label {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--pink-500);
  letter-spacing: 0.1em;
}
.contact-tel-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--ink-900);
  margin-bottom: 12px;
}
.tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--pink-400);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
}
.contact-hours {
  margin: 0;
  font-size: 14px;
  color: var(--ink-500);
}

.contact-form {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.req {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--pink-400);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--cream-50);
  color: var(--ink-900);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink-400);
  background: #fff;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-status {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--green-500);
  font-weight: 700;
  min-height: 20px;
}
.form-status.error {
  color: var(--pink-600);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #fff7f1;
  border-top: 1px solid rgba(247, 168, 184, 0.2);
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
}
.footer-brand .logo-mark {
  background: #fff;
  margin-bottom: 12px;
}
.footer-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--ink-900);
}
.footer-tag {
  margin: 0;
  font-size: 13px;
  color: var(--ink-500);
}
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--ink-700);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--pink-500); }
.footer-contact p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--ink-700);
}
.footer-contact a {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--pink-600);
}
.copy {
  text-align: center;
  margin: 36px 0 0;
  font-size: 12px;
  color: var(--ink-500);
}

/* ============================================
   Floating CTA (mobile only)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--pink-400);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(240, 138, 160, 0.5);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-cta:hover {
  background: var(--pink-500);
}
@media (min-width: 1000px) {
  .floating-cta { display: none; }
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bubble { animation: none; }
  html { scroll-behavior: auto; }
}
