/* =========================================================
   Dr. Lilyの婚活クリニック — Elegant Marriage-Agency Design
   ========================================================= */

:root {
  --wine: #a14e5d;
  --wine-dark: #843e4b;
  --wine-soft: #c98a96;
  --gold: #b08d4e;
  --gold-soft: #c9ac74;
  --line-green: #6f9a63;
  --line-green-dark: #5d8553;

  --cream: #faf6f0;
  --cream-2: #f4ebe0;
  --cream-3: #efe3d4;
  --ink: #4a3f3a;
  --ink-soft: #6f615a;
  --mute: #9a8a80;
  --line: #e9ddcf;
  --white: #ffffff;

  --ff-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ff-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;

  --w-max: 1180px;
  --pad-x: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,.84,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--ff-sans); font-weight: 400; color: var(--ink); background: var(--cream); line-height: 1.9; letter-spacing: .03em; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.5; }
p { margin: 0; }
address { font-style: normal; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 30px; border-radius: 6px; font-family: var(--ff-sans); font-weight: 700; font-size: 15px; letter-spacing: .05em; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s, background .25s; border: 0; white-space: nowrap; line-height: 1.3; }
.btn small { display: block; font-size: 11px; font-weight: 500; opacity: .85; margin-top: 2px; }
.btn-col { flex-direction: column; gap: 1px; }
.btn:hover { transform: translateY(-2px); }
.btn-wine { background: var(--wine); color: #fff; box-shadow: 0 8px 22px rgba(161,78,93,.28); }
.btn-wine:hover { background: var(--wine-dark); box-shadow: 0 12px 28px rgba(161,78,93,.36); }
.btn-line { background: var(--line-green); color: #fff; box-shadow: 0 8px 22px rgba(111,154,99,.26); }
.btn-line:hover { background: var(--line-green-dark); }
.btn-outline { background: transparent; color: var(--wine); border: 1.5px solid var(--wine); padding: 10px 22px; font-size: 13px; box-shadow: none; }
.btn-outline:hover { background: var(--wine); color: #fff; }
.btn-arrow { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.22); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-icon { width: 22px; height: 22px; border-radius: 5px; background: rgba(255,255,255,.95); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-icon svg { color: var(--line-green); }

/* ---- Header ---- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250,246,240,.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(233,221,207,.7); transition: padding .35s var(--ease); }
.header.is-scrolled { box-shadow: 0 4px 20px rgba(74,63,58,.06); }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 14px var(--pad-x); display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: baseline; gap: 4px; flex-shrink: 0; }
.brand .b-dr { font-family: var(--ff-serif); font-size: 24px; font-weight: 600; color: var(--wine); letter-spacing: .01em; }
.brand .b-rest { font-family: var(--ff-serif); font-size: 16px; font-weight: 500; color: var(--ink); }
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 26px; }
.nav-list a { font-size: 14px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-list a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px; background: var(--wine); transition: right .3s var(--ease); }
.nav-list a:hover { color: var(--wine); }
.nav-list a:hover::after, .nav-list a.is-active::after { right: 0; }
.nav-list a.is-active { color: var(--wine); }
.header-cta { padding: 11px 24px; font-size: 14px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--wine); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer { position: fixed; inset: 0; z-index: 99; visibility: hidden; background: rgba(74,63,58,.4); transition: visibility .35s; }
.drawer.is-open { visibility: visible; }
.drawer-inner { position: absolute; right: 0; top: 0; bottom: 0; width: min(300px, 86vw); background: var(--cream); padding: 88px 28px 40px; display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .35s var(--ease-out); }
.drawer.is-open .drawer-inner { transform: translateX(0); }
.drawer-list a { display: block; padding: 14px 4px; color: var(--ink); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--line); }
.drawer-cta { margin-top: 20px; }

/* ---- Hero ---- */
.hero { position: relative; padding: 150px var(--pad-x) 90px; overflow: hidden; background:
  radial-gradient(ellipse 70% 80% at 88% 18%, rgba(201,138,150,.22), transparent 60%),
  radial-gradient(ellipse 60% 70% at 10% 90%, rgba(176,141,78,.12), transparent 60%),
  linear-gradient(160deg, #fbf7f2 0%, #f6ede2 100%); }
.hero-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .12em; color: var(--wine); margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--ff-serif); font-size: clamp(36px, 5.6vw, 60px); font-weight: 600; line-height: 1.32; color: var(--ink); letter-spacing: .02em; margin-bottom: 26px; }
.hero-title em { font-style: normal; color: var(--wine); }
.hero-sub { font-size: 16px; line-height: 2; color: var(--ink-soft); margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-photo { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3.4; background:
  radial-gradient(ellipse 80% 70% at 70% 30%, rgba(201,138,150,.34), transparent 65%),
  linear-gradient(150deg, #efd9cf 0%, #e6c7bd 45%, #d9b3ac 100%);
  box-shadow: 0 26px 60px rgba(132,62,75,.18); display: flex; align-items: center; justify-content: center; }
.hero-photo .hp-art { width: 70%; color: rgba(255,255,255,.62); }
.hero-badge { position: absolute; bottom: -22px; left: -22px; background: var(--white); border-radius: 12px; padding: 18px 22px; box-shadow: 0 16px 40px rgba(74,63,58,.14); display: flex; align-items: center; gap: 14px; }
.hero-badge .hb-num { font-family: var(--ff-serif); font-size: 30px; font-weight: 600; color: var(--wine); line-height: 1; }
.hero-badge .hb-num small { font-size: 13px; }
.hero-badge .hb-label { font-size: 12px; color: var(--ink-soft); line-height: 1.5; }
.hero-petal { position: absolute; color: var(--wine-soft); opacity: .5; pointer-events: none; }
.hero-petal.p1 { top: 14%; right: 4%; width: 60px; animation: floaty 8s ease-in-out infinite; }
.hero-petal.p2 { bottom: 8%; left: 2%; width: 40px; opacity: .35; animation: floaty 10s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(10deg); } }

/* ---- Stats bar ---- */
.stats { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-inner { max-width: var(--w-max); margin: 0 auto; padding: 34px var(--pad-x); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; align-items: center; gap: 16px; padding: 6px 22px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-ico { width: 46px; height: 46px; flex-shrink: 0; color: var(--wine); }
.stat-label { font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.stat-num { font-family: var(--ff-serif); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1.1; }
.stat-num small { font-size: 14px; font-weight: 500; margin-left: 2px; }
.stat-note { font-size: 10px; color: var(--mute); }
.stat-text { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.stat-text small { display: block; font-size: 11px; font-weight: 400; color: var(--ink-soft); margin-top: 2px; }

/* ---- Section base ---- */
.section { padding: 96px var(--pad-x); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 58px; }
.sec-en { display: block; font-family: var(--ff-serif); font-size: 12px; font-weight: 500; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-family: var(--ff-serif); font-size: clamp(25px, 3.6vw, 36px); font-weight: 600; color: var(--ink); letter-spacing: .03em; }
.sec-title .accent { color: var(--wine); }
.sec-deco { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; color: var(--gold-soft); }
.sec-deco::before, .sec-deco::after { content: ''; width: 40px; height: 1px; background: var(--gold-soft); }
.sec-sub { font-size: 15px; color: var(--ink-soft); margin-top: 18px; }

/* ---- Worries ---- */
.worries { background: var(--cream-2); }
.worries-wrap { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: center; }
.worries-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.worry { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); padding: 6px 0; }
.worry-check { width: 22px; height: 22px; border-radius: 50%; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.worries-msg { background: var(--white); border-radius: 14px; padding: 36px 32px; box-shadow: 0 14px 38px rgba(74,63,58,.07); border: 1px solid var(--line); text-align: center; position: relative; }
.worries-msg .wm-mark { color: var(--wine-soft); margin: 0 auto 14px; }
.worries-msg p { font-family: var(--ff-serif); font-size: 17px; line-height: 2; color: var(--ink); }

/* ---- Services ---- */
.services { background: var(--cream); }
.svc-grid { max-width: var(--w-max); margin: 0 auto 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(74,63,58,.1); }
.svc-photo { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; position: relative; }
.svc-photo.v1 { background: linear-gradient(150deg, #f0dcd2, #e3bdb3); }
.svc-photo.v2 { background: linear-gradient(150deg, #ecd9d0, #d8b3aa); }
.svc-photo.v3 { background: linear-gradient(150deg, #efe0cf, #ddc4a6); }
.svc-photo svg { width: 56px; color: rgba(255,255,255,.78); }
.svc-icon { position: absolute; bottom: -26px; left: 28px; width: 52px; height: 52px; border-radius: 50%; background: var(--white); box-shadow: 0 8px 20px rgba(74,63,58,.12); display: flex; align-items: center; justify-content: center; color: var(--wine); }
.svc-body { padding: 40px 28px 30px; flex: 1; }
.svc-body h3 { font-family: var(--ff-serif); font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.svc-body p { font-size: 14px; line-height: 1.95; color: var(--ink-soft); }
.svc-subs { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-sub { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; display: flex; align-items: center; gap: 18px; }
.svc-sub-ico { width: 46px; height: 46px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.svc-sub h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.svc-sub p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; }

/* ---- Flow ---- */
.flow { background: var(--cream-2); }
.flow-steps { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.flow-steps::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 1px; background: repeating-linear-gradient(to right, var(--gold-soft) 0 6px, transparent 6px 12px); z-index: 0; }
.flow-step { text-align: center; position: relative; z-index: 1; }
.flow-ico { width: 78px; height: 78px; border-radius: 50%; background: var(--white); border: 1px solid var(--line); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: var(--wine); position: relative; transition: transform .3s var(--ease); }
.flow-step:hover .flow-ico { transform: translateY(-4px); }
.flow-num { position: absolute; top: -8px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--wine); color: #fff; font-family: var(--ff-serif); font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.flow-step h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.flow-step p { font-size: 12px; line-height: 1.7; color: var(--ink-soft); }

/* ---- Pricing ---- */
.pricing { background: var(--cream); }
.price-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: .8fr 1fr 1fr 1fr; gap: 18px; align-items: stretch; }
.award-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 30px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.award-card .ac-title { font-family: var(--ff-serif); font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.6; margin-bottom: 20px; }
.award-badges { display: flex; gap: 12px; justify-content: center; margin-bottom: 20px; }
.award-badges img { width: 62px; height: auto; }
.award-card .ac-note { font-size: 12px; color: var(--ink-soft); line-height: 1.8; margin-top: auto; }
.plan { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 32px 26px; display: flex; flex-direction: column; position: relative; transition: transform .3s var(--ease), box-shadow .3s; }
.plan:hover { transform: translateY(-5px); box-shadow: 0 20px 46px rgba(74,63,58,.1); }
.plan.is-popular { border: 2px solid var(--wine); box-shadow: 0 18px 44px rgba(161,78,93,.16); }
.plan-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--wine); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em; padding: 5px 18px; border-radius: 20px; white-space: nowrap; }
.plan-name { font-family: var(--ff-serif); font-size: 21px; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 6px; }
.plan-for { font-size: 12px; color: var(--ink-soft); text-align: center; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--line); }
.plan-price { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.plan-price .pp-row { display: flex; align-items: baseline; justify-content: space-between; }
.plan-price .pp-key { font-size: 13px; color: var(--ink-soft); }
.plan-price .pp-val { font-family: var(--ff-serif); font-size: 26px; font-weight: 600; color: var(--wine); }
.plan-price .pp-val small { font-size: 12px; color: var(--ink-soft); font-family: var(--ff-sans); margin-left: 2px; }
.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--ink); line-height: 1.6; }
.plan-feats svg { color: var(--wine); flex-shrink: 0; margin-top: 4px; }
.plan .btn { width: 100%; }
.plan-light .btn { background: var(--cream-2); color: var(--wine); box-shadow: none; }
.plan-light .btn:hover { background: var(--cream-3); }
.price-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 26px; }

/* ---- Trust band (仲人/voice/media) ---- */
.trust { background: var(--cream-2); }
.trust-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 22px; align-items: start; }
.tcol { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 28px 26px; }
.tcol-head { font-family: var(--ff-serif); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 20px; text-align: center; position: relative; padding-bottom: 14px; }
.tcol-head::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: var(--gold-soft); }
/* counselor */
.counselor { text-align: center; }
.counselor img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 4px solid var(--cream); box-shadow: 0 8px 22px rgba(74,63,58,.12); }
.counselor .c-role { font-size: 11px; letter-spacing: .1em; color: var(--gold); font-weight: 600; }
.counselor .c-name { font-family: var(--ff-serif); font-size: 22px; font-weight: 600; color: var(--ink); margin: 4px 0 14px; }
.counselor p { font-size: 13px; line-height: 1.9; color: var(--ink-soft); text-align: left; margin-bottom: 18px; }
/* voices */
.voices { display: flex; flex-direction: column; gap: 14px; }
.voice { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: 10px; background: var(--cream); }
.voice-av { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; }
.voice-av.a1 { background: linear-gradient(140deg, #d7a7af, #c2848f); }
.voice-av.a2 { background: linear-gradient(140deg, #c9aa86, #b58e63); }
.voice-av.a3 { background: linear-gradient(140deg, #cf9aa2, #b97a85); }
.voice-meta { font-size: 12px; color: var(--wine); font-weight: 700; margin-bottom: 5px; }
.voice p { font-size: 13px; line-height: 1.75; color: var(--ink); }
.voices-more { text-align: center; margin-top: 4px; }
.voices-more a { font-size: 13px; color: var(--wine); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
/* media */
.media-logos { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center; margin-bottom: 8px; }
.media-logos span { font-family: var(--ff-serif); font-size: 17px; font-weight: 600; color: var(--ink-soft); font-style: italic; }
.media-note { text-align: center; font-size: 12px; color: var(--ink-soft); margin-bottom: 22px; }
.media-awards { text-align: center; padding-top: 20px; border-top: 1px solid var(--line); }
.media-awards .ma-title { font-family: var(--ff-serif); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.media-awards-imgs { display: flex; gap: 14px; justify-content: center; }
.media-awards-imgs img { width: 64px; height: auto; }

/* ---- FAQ ---- */
.faq { background: var(--cream); }
.faq-grid { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px; padding: 20px 4px; font-size: 15px; font-weight: 500; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { width: 24px; height: 24px; border-radius: 50%; background: var(--wine); color: #fff; font-family: var(--ff-serif); font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-item summary .faq-chev { margin-left: auto; color: var(--wine); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq-item[open] summary .faq-chev { transform: rotate(180deg); }
.faq-a { display: flex; gap: 12px; padding: 0 4px 22px 36px; font-size: 14px; line-height: 1.9; color: var(--ink-soft); }

/* ---- CTA ---- */
.cta { position: relative; overflow: hidden; padding: 80px var(--pad-x); text-align: center; background:
  radial-gradient(ellipse 60% 90% at 10% 100%, rgba(201,138,150,.4), transparent 60%),
  radial-gradient(ellipse 60% 90% at 92% 0%, rgba(201,138,150,.36), transparent 60%),
  linear-gradient(120deg, #f5e6dc, #efd9cf); }
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta h2 { font-family: var(--ff-serif); font-size: clamp(22px, 3.4vw, 32px); font-weight: 600; color: var(--ink); margin-bottom: 30px; line-height: 1.6; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-rose { position: absolute; bottom: -10px; width: 150px; color: rgba(255,255,255,.5); z-index: 0; }
.cta-rose.left { left: -10px; }
.cta-rose.right { right: -10px; transform: scaleX(-1); }

/* ---- Footer ---- */
.footer { background: #3f3631; color: rgba(255,255,255,.62); padding: 60px var(--pad-x) 26px; }
.footer-inner { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .fb-name { font-family: var(--ff-serif); font-size: 22px; color: #fff; margin-bottom: 12px; }
.footer-brand .fb-name .fb-dr { color: var(--wine-soft); }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-bottom: 16px; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.footer-tags span { font-size: 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 3px 10px; color: rgba(255,255,255,.7); }
.footer-sns { display: flex; gap: 12px; }
.footer-sns a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: background .2s, color .2s; }
.footer-sns a:hover { background: var(--wine); color: #fff; border-color: var(--wine); }
.footer-col h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: #fff; }
.footer-access { background: rgba(255,255,255,.05); border-radius: 10px; padding: 18px 20px; min-width: 200px; }
.footer-access h4 { font-size: 13px; color: #fff; margin-bottom: 8px; }
.footer-access p { font-size: 12px; line-height: 1.7; }
.footer-access .fa-tag { display: inline-block; margin-top: 8px; font-size: 11px; color: var(--wine-soft); }
.footer-bottom { max-width: var(--w-max); margin: 0 auto; padding-top: 22px; text-align: center; }
.footer-bottom small { font-size: 12px; color: rgba(255,255,255,.4); }

/* ---- Float CTA (mobile) ---- */
.float-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; grid-template-columns: 1fr 1fr; box-shadow: 0 -4px 20px rgba(74,63,58,.14); }
.float-cta a { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 15px; font-size: 14px; font-weight: 700; color: #fff; }
.float-cta .f-resv { background: var(--wine); }
.float-cta .f-line { background: var(--line-green); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .nav-list { gap: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .worries-wrap { grid-template-columns: 1fr; gap: 28px; }
  .svc-grid { grid-template-columns: 1fr; max-width: 440px; }
  .svc-subs { grid-template-columns: 1fr; max-width: 440px; }
  .flow-steps { grid-template-columns: 1fr 1fr 1fr; gap: 28px 12px; }
  .flow-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 68px var(--pad-x); }
  .hero { padding-top: 120px; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .float-cta { display: grid; }
  body { padding-bottom: 54px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-access { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .stats-inner { grid-template-columns: 1fr; gap: 14px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); padding-top: 16px; }
  .worries-list { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
}
