/* ============================================================
   GLOWME — Design System
   Brand tokens (confirmed July 2026):
   INK #2A2420 / TERRA #D4714A / SAGE #A8C47A / CREAM #F9F7F4
   LINE #E5DDD6 / SALMON #F5DDD4 / SAGE_LT #EDF4E2 / MUTED #8A7E78
   ============================================================ */

:root {
  --ink: #2A2420;
  --terra: #D4714A;
  --terra-dark: #B85C38;
  --sage: #A8C47A;
  --cream: #F9F7F4;
  --line: #E5DDD6;
  --salmon: #F5DDD4;
  --sage-lt: #EDF4E2;
  --muted: #8A7E78;
  --white: #FFFFFF;
  --font-body: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic Pro", sans-serif;
  --font-serif: "Fraunces", "Georgia", serif;
  --maxw: 1120px;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--terra); text-decoration: none; }
a:hover { opacity: .8; }

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

/* ---------- Typography ---------- */

h1, h2, h3 { line-height: 1.5; font-weight: 700; }

.eyebrow {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

.section-title { font-size: clamp(24px, 3.6vw, 34px); margin-bottom: 18px; }
.section-lead { color: var(--ink); max-width: 720px; }

.sparkle { color: var(--terra); font-style: normal; }
.sparkle::before { content: "✦"; margin: 0 .35em 0 .1em; font-size: .85em; }

.muted { color: var(--muted); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  transition: all .2s ease;
  border: 1.5px solid var(--terra);
  cursor: pointer;
}
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-dark); border-color: var(--terra-dark); opacity: 1; }
.btn-outline { background: transparent; color: var(--terra); }
.btn-outline:hover { background: var(--terra); color: #fff; opacity: 1; }
.btn-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ink:hover { background: var(--ink); color: var(--cream); opacity: 1; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249, 247, 244, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo img { height: 34px; width: auto; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--ink); font-family: var(--font-serif);
  font-weight: 600; font-size: 16.5px; letter-spacing: .05em;
}
.nav a:hover { color: var(--terra); opacity: 1; }
.nav .btn {
  padding: 9px 22px; font-size: 13.5px;
  font-family: var(--font-body); font-weight: 700; letter-spacing: .04em;
}

.dropdown { position: relative; }
.dropdown > button {
  background: none; border: none; font-family: var(--font-serif);
  font-weight: 600; font-size: 16.5px; letter-spacing: .05em;
  color: var(--ink); cursor: pointer; display: flex; align-items: center; gap: 5px;
}
.dropdown > button::after { content: "▾"; font-size: 11px; color: var(--muted); }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -12px; min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(42,36,32,.09);
  padding: 10px; display: none;
}
/* ボタンとメニューの間の12px の隙間でホバーが切れないよう、透明のブリッジを敷く */
.dropdown-menu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.dropdown.open .dropdown-menu, .dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 11px 14px; border-radius: 8px; color: var(--ink);
}
.dropdown-menu a:hover { background: var(--cream); color: var(--terra); opacity: 1; }
.dropdown-menu a small { display: block; color: var(--muted); font-size: 12px; line-height: 1.5; }
.dropdown-menu .dd-en { font-family: var(--font-serif); letter-spacing: .06em; font-size: 15.5px; font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--ink); line-height: 1;
}

@media (max-width: 900px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 18px 24px 26px; gap: 14px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown-menu {
    position: static; display: block; box-shadow: none; border: none;
    background: transparent; padding: 0 0 0 14px; min-width: 0;
  }
}

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; }
.hero-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 70px 24px 60px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero h1 { font-size: clamp(28px, 4.4vw, 46px); line-height: 1.55; margin-bottom: 22px; letter-spacing: .01em; }
.hero-lead { font-size: 16px; max-width: 520px; margin-bottom: 32px; }
.hero-img { border-radius: var(--radius); overflow: hidden; }
.hero-img img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 2;              /* 横長写真向けの標準フレーム */
  object-fit: cover;
  display: block;
}
/* 縦位置写真用（トップページのヒーロー等） */
.hero-img.portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 18%;      /* 顔が上1/3にあるため上寄りで表示 */
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-img.portrait img { aspect-ratio: 4 / 3; object-position: center 10%; }
}

/* ---------- Marquee strip ---------- */

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; padding: 14px 0; background: var(--cream);
}
.marquee-inner {
  display: inline-block; animation: marquee 30s linear infinite;
  font-family: var(--font-serif); font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .08em; color: var(--ink);
}
.marquee-inner .sparkle::before { margin: 0 .8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */

.section { padding: 78px 0; }
.section-alt { background: var(--white); }
.section-head { margin-bottom: 44px; }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

/* ---------- Empathy (pain points) ---------- */

.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 34px; }
.pain-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px 20px 52px; font-size: 14.5px; position: relative;
}
.pain-item::before {
  content: "“"; position: absolute; left: 18px; top: 8px;
  font-family: var(--font-serif); font-size: 38px; color: var(--terra); opacity: .75;
}
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }

.pivot-note {
  margin-top: 38px; max-width: 760px;
  font-size: 16.5px; line-height: 2;
  border-left: 4px solid var(--sage); padding-left: 22px;
}
.pivot-note strong { color: var(--terra-dark); }

/* ---------- Program cards (4分類) ---------- */

.program-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
}
.program-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  color: var(--ink);
}
.program-card::before {
  content: ""; display: block; height: 5px; background: var(--terra);
}
.program-card:nth-child(even)::before { background: var(--sage); }
.program-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(42,36,32,.10); }
.program-card img { height: 200px; width: 100%; object-fit: cover; }
.program-card .pc-body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.pc-en {
  font-family: var(--font-serif); font-size: 21px; letter-spacing: .07em; font-weight: 600;
  color: var(--ink);
}
.pc-ja { font-size: 15px; color: var(--terra); font-weight: 700; margin: 2px 0 12px; }
.pc-desc { font-size: 14.5px; flex: 1; }
.pc-badge {
  position: absolute; top: 18px; right: 16px; background: rgba(255,255,255,.92);
  border: 1px solid var(--line); border-radius: 30px; font-size: 12px;
  padding: 4px 13px; font-weight: 700; color: var(--muted);
}
.pc-link { margin-top: 18px; font-weight: 700; font-size: 14.5px; }
.pc-link::after { content: " ↗︎"; }

@media (max-width: 820px) { .program-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 46px; }
.video-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-inline: auto; }
@media (max-width: 820px) { .video-grid.two { grid-template-columns: 1fr; } }
.video-frame {
  position: relative; padding-top: 56.25%; border-radius: var(--radius);
  overflow: hidden; background: var(--salmon); border: 1px solid var(--line);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; color: var(--terra-dark);
  font-weight: 700; font-size: 14px; text-align: center; padding: 0 14px;
}
@media (max-width: 820px) { .video-grid { grid-template-columns: 1fr; } }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative;
}
.quote-card::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--terra); border-radius: var(--radius) 0 0 var(--radius);
}
.quote-card:nth-child(even)::before { background: var(--sage); }
.quote-card p { font-size: 14.5px; margin-bottom: 16px; }
.quote-card cite { font-style: normal; color: var(--muted); font-size: 13px; }
@media (max-width: 820px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- Events (Luma) ---------- */

.luma-embed {
  width: 100%; height: 460px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--white);
}

/* ---------- Press / media ---------- */

.press-list { list-style: none; max-width: 820px; }
.press-list li { margin-bottom: 14px; }
.press-list a {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease; position: relative;
  padding-right: 44px;
}
.press-list a::after {
  content: "↗"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--terra); font-weight: 700;
}
.press-list a:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(42,36,32,.09); opacity: 1; }
.press-list .pr-source {
  font-family: var(--font-serif); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 4px;
}
.press-list .pr-title { font-size: 15px; font-weight: 700; line-height: 1.7; }

/* ---------- Profile ---------- */

.profile-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center;
}
.profile-grid img { border-radius: var(--radius); width: 100%; height: 440px; object-fit: cover; }
.profile-grid h2 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 20px; }
.profile-strong { font-weight: 700; margin-top: 18px; }
@media (max-width: 820px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-grid img { height: 340px; }
}

/* ---------- Social ---------- */

.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 50px; }
.social-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(42,36,32,.09); }
.social-card .sc-icon { font-size: 30px; margin-bottom: 12px; }
.social-card .sc-icon img { width: 34px; height: 34px; margin: 0 auto; display: block; }
.social-card h3 { font-family: var(--font-serif); font-size: 20px; letter-spacing: .06em; }
.social-card p { font-size: 13.5px; color: var(--muted); margin: 8px 0 16px; }
.ig-embeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; justify-items: center; }
@media (max-width: 900px) { .social-cards, .ig-embeds { grid-template-columns: 1fr; } }

/* note latest posts preview */
.note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 46px; }
.note-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.note-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(42,36,32,.09); }
.note-card img { height: 160px; width: 100%; object-fit: cover; background: var(--salmon); }
.note-card .nc-body { padding: 18px 20px 22px; }
.note-card h3 { font-size: 15px; line-height: 1.6; color: var(--ink); }
.note-card .nc-date { font-size: 12px; color: var(--muted); margin-top: 8px; }
/* Instagram auto feed (Behold) */
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.insta-item {
  position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line); background: var(--salmon);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.insta-item:hover img { transform: scale(1.05); }
.insta-play {
  position: absolute; top: 8px; right: 10px; color: #fff; font-size: 13px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

.sns-sub {
  font-family: var(--font-serif); font-size: 17px; letter-spacing: .1em;
  color: var(--ink); margin: 40px 0 18px; font-weight: 600;
}
@media (max-width: 900px) { .note-grid { grid-template-columns: 1fr; } }

/* ---------- Freebie / newsletter ---------- */

.freebie { background: var(--sage-lt); }
.freebie-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.freebie-grid img { border-radius: var(--radius); height: 330px; width: 100%; object-fit: cover; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; max-width: 440px; }
.newsletter-form .row2 { display: flex; gap: 12px; }
.newsletter-form input {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; color: var(--ink);
}
.newsletter-form input:focus { outline: 2px solid var(--terra); border-color: transparent; }
.form-note { font-size: 12px; color: var(--muted); }
@media (max-width: 820px) { .freebie-grid { grid-template-columns: 1fr; } }

/* ---------- About hero (full-bleed photo) ---------- */

.about-hero {
  position: relative;
  min-height: 72vh;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
}
.about-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,36,32,.62) 0%, rgba(42,36,32,.18) 45%, rgba(42,36,32,0) 70%);
}
.about-hero .container { position: relative; z-index: 1; width: 100%; padding-bottom: 64px; }
.about-hero .eyebrow { color: var(--salmon); }
.about-hero h1 {
  color: #fff; font-size: clamp(28px, 4.6vw, 48px); line-height: 1.5;
  text-shadow: 0 2px 18px rgba(42,36,32,.45);
}
.about-hero .hero-caption {
  color: rgba(255,255,255,.85); font-size: 13.5px; margin-top: 14px;
  letter-spacing: .06em;
}
@media (max-width: 700px) { .about-hero { min-height: 56vh; } }

/* ---------- Page hero (sub pages) ---------- */

.page-hero { padding: 66px 0 52px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { font-size: 16px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.page-hero .page-sub { max-width: 700px; font-size: 16.5px; }
.page-hero .btn { margin-top: 26px; }

/* ---------- Content blocks ---------- */

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
}
.card-topbar { border-top: 4px solid var(--terra); }
.card-topbar:nth-child(even) { border-top-color: var(--sage); }
.card h3 { font-size: 17px; margin-bottom: 10px; }
.card p { font-size: 14.5px; }
@media (max-width: 820px) { .cards-3 { grid-template-columns: 1fr; } }

.check-list { list-style: none; max-width: 760px; }
.check-list li {
  padding: 16px 0 16px 36px; border-bottom: 1px solid var(--line); position: relative;
}
.check-list li::before {
  content: "✦"; position: absolute; left: 6px; color: var(--terra); font-size: 14px;
}

.step-list { list-style: none; counter-reset: step; max-width: 820px; }
.step-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px 20px 78px; margin-bottom: 14px; position: relative; counter-increment: step;
}
.step-list li::before {
  content: "0" counter(step); position: absolute; left: 24px; top: 20px;
  font-family: var(--font-serif); font-size: 24px; color: var(--terra); font-weight: 600;
}
.step-list li:nth-child(even)::before { color: var(--sage); }
.step-list li strong { display: block; margin-bottom: 2px; }
.step-list li span { font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { max-width: 820px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 24px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none; position: relative;
  padding-right: 30px;
}
.faq summary::after { content: "＋"; position: absolute; right: 2px; color: var(--terra); }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 20px; font-size: 14.5px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; text-align: center;
}
.price-card .plan { font-weight: 700; color: var(--muted); font-size: 14px; }
.price-card .price {
  font-family: var(--font-serif); font-size: 40px; margin: 8px 0 18px; letter-spacing: .02em;
}
@media (max-width: 700px) { .price-grid { grid-template-columns: 1fr; } }

/* Info icons row */
.info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-align: center; font-size: 14.5px;
}
.info-item .ii-icon { font-size: 26px; margin-bottom: 8px; }
@media (max-width: 820px) { .info-row { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { background: var(--salmon); text-align: center; }
.cta-band h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px; }
.cta-band p { max-width: 640px; margin: 0 auto 26px; }

/* Course cards on self-study */
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 820px) { .course-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { font-weight: 700; font-size: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; background: #fff; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--terra); border-color: transparent; }

/* Legal pages */
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 19px; margin: 34px 0 10px; }
.legal-body p, .legal-body li { font-size: 14.5px; }
.legal-body ul { padding-left: 22px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 56px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 42px;
}
.site-footer h4 {
  font-family: var(--font-serif); font-size: 15px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--ink); font-size: 14px; }
.site-footer a:hover { color: var(--terra); opacity: 1; }
.footer-logo img { height: 30px; margin-bottom: 14px; }
.footer-tagline { font-size: 13.5px; color: var(--muted); max-width: 260px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 22px; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--muted);
}
.footer-bottom a { color: var(--muted); font-size: 12.5px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Newsletter popup ---------- */

.popup-overlay {
  position: fixed; inset: 0; background: rgba(42,36,32,.45); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.popup-overlay.show { display: flex; }
.popup {
  background: var(--cream); border-radius: 14px; max-width: 480px; width: 100%;
  padding: 40px 38px; position: relative; box-shadow: 0 24px 60px rgba(42,36,32,.25);
}
.popup::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--terra); border-radius: 14px 14px 0 0;
}
.popup-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  font-size: 22px; color: var(--muted); cursor: pointer;
}
.popup .eyebrow { margin-bottom: 8px; }
.popup h3 { font-size: 20px; margin-bottom: 10px; }
.popup p { font-size: 14px; margin-bottom: 18px; }
