:root {
  --bg: #fdfbff;
  --lavender: #f3edfa;
  --lavender-2: #ece3f7;
  --pink-soft: #fdeef4;
  --white: #ffffff;
  --ink: #5a4a6e;
  --purple: #7d6a9e;
  --gray: #a394b8;
  --line: #ece2f4;
  --accent: #ef9db8;
  --accent-dark: #e27d9f;
  --pink: #e87c95;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(150, 120, 180, 0.10);
  --shadow-hover: 0 12px 36px rgba(150, 120, 180, 0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo { font-weight: 900; font-size: 18px; letter-spacing: 0.06em; text-decoration: none; color: var(--purple); white-space: nowrap; margin-right: 16px; }
.logo span { color: var(--accent-dark); }
nav ul { display: flex; gap: 24px; list-style: none; }
nav a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--purple);
  opacity: 0.85; transition: opacity 0.2s, color 0.2s;
}
nav a:hover { opacity: 1; color: var(--accent-dark); }
nav a.active { opacity: 1; color: var(--accent-dark); font-weight: 700; }
@media (max-width: 760px) {
  nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  nav ul { gap: 14px; white-space: nowrap; }
  nav a { font-size: 12px; }
  .logo { font-size: 15px; }
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(ellipse 800px 400px at 75% -10%, rgba(239, 157, 184, 0.22), transparent 60%),
    radial-gradient(ellipse 600px 500px at 5% 110%, rgba(236, 227, 247, 0.9), transparent 65%),
    linear-gradient(160deg, #fbf8ff 0%, var(--lavender-2) 100%);
  color: var(--ink);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-label {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.65);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--purple);
}
.hero h1 .accent { color: var(--accent-dark); }
.hero-name {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.hero-name small { font-size: 14px; font-weight: 500; color: var(--gray); letter-spacing: 0.1em; }
.hero-desc {
  max-width: 640px;
  font-size: 15px;
  color: #6f5f86;
  margin-bottom: 36px;
}
.hero-desc span { display: inline-block; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(239, 157, 184, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-ghost:hover { background: #fff; }

/* ===== サブページ用ヒーロー ===== */
.page-hero {
  background:
    radial-gradient(ellipse 800px 400px at 75% -10%, rgba(239, 157, 184, 0.22), transparent 60%),
    linear-gradient(160deg, #fbf8ff 0%, var(--lavender-2) 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero .en {
  color: var(--accent-dark);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.page-hero h1 {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 10px;
}
.page-hero p { color: var(--gray); font-size: 14px; }

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .en {
  color: var(--accent-dark);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.section-head h2 {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: var(--purple);
}
.section-head p.lead { color: var(--gray); font-size: 14px; margin-top: 14px; }

/* ===== Profile ===== */
#profile { background: var(--white); }
.profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), #f9d9e6);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-family: 'Zen Old Mincho', serif;
  font-size: 64px; font-weight: 900;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 280px; width: 100%;
  overflow: hidden;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-body h3 {
  font-size: 22px; font-weight: 900; margin-bottom: 4px;
}
.profile-body .romaji { color: var(--gray); font-size: 13px; letter-spacing: 0.1em; margin-bottom: 20px; }
.profile-body p { margin-bottom: 16px; font-size: 15px; }
.story-steps {
  display: flex; gap: 0; margin: 28px 0 8px; flex-wrap: wrap;
}
.story-step {
  flex: 1; min-width: 150px;
  background: var(--lavender);
  border: 1px solid var(--line);
  padding: 18px 16px;
  text-align: center;
  position: relative;
}
.story-step:first-child { border-radius: 12px 0 0 12px; }
.story-step:last-child { border-radius: 0 12px 12px 0; background: var(--pink-soft); border-color: #f6d5e2; }
.story-step .num { font-size: 11px; font-weight: 700; color: var(--accent-dark); letter-spacing: 0.15em; display: block; margin-bottom: 4px; }
.story-step .txt { font-size: 13.5px; font-weight: 700; line-height: 1.5; }
@media (max-width: 640px) {
  .story-steps { flex-direction: column; }
  .story-step:first-child { border-radius: 12px 12px 0 0; }
  .story-step:last-child { border-radius: 0 0 12px 12px; }
}
.profile-quals {
  margin-top: 20px;
  background: var(--lavender);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}
.profile-quals h4 { font-size: 14px; font-weight: 900; margin-bottom: 10px; color: var(--purple); }
.profile-quals ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 8px; }
.profile-quals ul li { font-size: 13.5px; padding-left: 20px; position: relative; }
.profile-quals ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 900; }
.profile-quals .quals-note { font-size: 12px; color: var(--gray); }

/* ===== Portfolio ===== */
#portfolio { background: var(--lavender); }
.filter-bar {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 13.5px; font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-thumb {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-size: 46px;
  position: relative;
}
.card-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.badge-live { background: #74c493; color: #fff; }
.badge-dev { background: rgba(255,255,255,0.95); color: var(--purple); border: 1px solid var(--line); }
.badge-skill { left: auto; right: 12px; background: var(--lavender-2); color: var(--purple); }
.card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; }
.card-body p { font-size: 13.5px; color: var(--gray); flex: 1; margin-bottom: 18px; }
.card-actions { display: flex; align-items: center; gap: 10px; }
.card-link {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  transition: opacity 0.2s;
}
.card-link:hover { opacity: 0.88; }
.card-link.secondary {
  background: var(--lavender); color: var(--purple);
  border: 1.5px solid var(--line);
  font-weight: 700;
}
.like-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 13.5px; font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.like-btn .heart { font-size: 15px; transition: transform 0.2s; }
.like-btn:hover { border-color: var(--pink); color: var(--pink); }
.like-btn.liked {
  background: #fdeef1; border-color: var(--pink); color: var(--pink);
}
.like-btn.liked .heart { transform: scale(1.2); }
.like-btn:active .heart { transform: scale(1.5); }
.dev-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--gray);
  background: var(--white);
  border: 1px dashed #f0c3d5;
  border-radius: 12px;
  padding: 16px 20px;
}
.dev-note strong { color: var(--pink); }

/* ===== Skills ===== */
#skills { background: var(--white); }
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.skill-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.skill-card .icon { font-size: 36px; margin-bottom: 14px; }
.skill-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 6px; }
.skill-card .tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px; font-weight: 700;
  color: var(--accent-dark);
  background: var(--pink-soft);
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.skill-card p { font-size: 13.5px; color: var(--gray); margin-bottom: 14px; }
.skill-card ul {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
.skill-card ul li {
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.skill-card ul li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}
.skill-card .tag.tag-cc {
  background: var(--lavender-2);
  color: var(--purple);
}
.skill-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.skill-actions .card-link { flex: 1; white-space: nowrap; }
.skill-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--gray);
  background: var(--lavender);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.skill-note strong { color: var(--pink); }

/* ===== Radio ===== */
#radio { background: var(--lavender); }
.radio-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 760px) { .radio-box { grid-template-columns: 1fr; } }
.radio-main, .recruit-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.radio-emoji { font-size: 48px; margin-bottom: 16px; }
.radio-main h3 span, .radio-main p span { display: inline-block; }
.radio-main h3, .recruit-box h4 { font-size: 19px; font-weight: 900; margin-bottom: 10px; }
.radio-main p, .recruit-box p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }
.radio-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px; font-weight: 700;
  color: var(--accent-dark);
  background: var(--pink-soft);
  padding: 3px 12px; border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.recruit-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 3px 14px; border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.15em;
}
.recruit-box ul { list-style: none; margin-bottom: 22px; flex: 1; }
.recruit-box ul li {
  font-size: 13.5px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
}
.recruit-box ul li::before {
  content: "🎙️";
  position: absolute; left: 0;
  font-size: 12px;
}

/* ===== Art ===== */
#art { background: var(--white); }
.art-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
/* アート作品カードは写真全体が見えるよう、他のカードより背高にする */
#art .card-thumb { height: 260px; }
.art-price { font-size: 15px; font-weight: 900; color: var(--accent-dark); margin-bottom: 12px; }

.art-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.4); color: #fff; font-size: 16px; line-height: 1;
  cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.art-nav-btn:hover { background: rgba(0,0,0,0.6); }
.art-nav-prev { left: 8px; }
.art-nav-next { right: 8px; }
.art-nav-count {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  background: rgba(0,0,0,0.5); color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
}

/* ===== カート ===== */
.cart-fab {
  position: relative;
  background: none; border: none; cursor: pointer;
  font-size: 20px; padding: 6px;
  margin-left: 12px;
}
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent-dark); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 999px;
  align-items: center; justify-content: center;
  line-height: 1;
}
.add-to-cart-btn {
  border: none; cursor: pointer; font-family: inherit;
  font: inherit;
}
.add-to-cart-btn:disabled {
  opacity: 0.6; cursor: default;
}
#cart-items { margin-bottom: 16px; }
.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.cart-item-title { flex: 1; }
.cart-item-price { color: var(--accent-dark); font-weight: 700; white-space: nowrap; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--gray); font-size: 14px; padding: 4px;
}
.cart-item-remove:hover { color: var(--pink); }
.cart-total {
  text-align: right; font-weight: 900; font-size: 15px;
  color: var(--purple); margin-bottom: 18px;
}
#cart-checkout:disabled { opacity: 0.5; cursor: default; }

/* ===== Courses ===== */
#courses { background: var(--pink-soft); }

/* ===== Requests ===== */
#requests { background: var(--lavender); }
.req-form {
  max-width: 720px;
  margin: 0 auto 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.req-form textarea {
  width: 100%;
  min-height: 90px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
  margin-bottom: 14px;
  background: var(--bg);
}
.req-form textarea:focus, .req-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.req-form-row { display: flex; gap: 12px; flex-wrap: wrap; }
.req-form-row input {
  flex: 1;
  min-width: 180px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
}
.req-msg { font-size: 13px; color: var(--accent-dark); margin-top: 10px; min-height: 1.5em; }
.req-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.req-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(150, 120, 180, 0.08);
  padding: 18px 22px;
  display: flex; gap: 16px; align-items: center;
}
.req-item .req-body { flex: 1; }
.req-item .req-text { font-size: 14.5px; margin-bottom: 4px; word-break: break-word; }
.req-item .req-meta { font-size: 12px; color: var(--gray); }
.req-empty {
  text-align: center;
  font-size: 13.5px;
  color: var(--gray);
  padding: 24px;
}

/* ===== News ===== */
#news { background: var(--white); }
.news-list { max-width: 720px; margin: 0 auto; }
.news-item {
  display: flex; gap: 20px; align-items: baseline;
  padding: 20px 8px;
  border-bottom: 1px solid #e0d3ee;
  text-decoration: none;
  transition: background 0.2s;
}
.news-item:hover { background: var(--lavender); }
.news-date { font-size: 13px; color: var(--gray); white-space: nowrap; font-weight: 500; }
.news-tag {
  font-size: 11px; font-weight: 700;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  padding: 2px 10px; border-radius: 999px;
  white-space: nowrap;
}
.news-title { font-size: 14.5px; font-weight: 500; }
@media (max-width: 560px) {
  .news-item { flex-wrap: wrap; gap: 8px 12px; }
}

/* ===== Contact / SNS ===== */
#contact {
  background:
    radial-gradient(ellipse 700px 350px at 30% 120%, rgba(239, 157, 184, 0.20), transparent 60%),
    linear-gradient(160deg, var(--lavender-2) 0%, var(--pink-soft) 100%);
  color: var(--ink);
}
.sns-grid {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.sns-link {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 120px; padding: 22px 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(150, 120, 180, 0.06);
}
.sns-link:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }
.sns-link .icon { width: 34px; height: 34px; }
.sns-link .name { font-size: 13px; font-weight: 700; color: var(--purple); }
.contact-note { text-align: center; font-size: 14px; color: #6f5f86; }

footer {
  background: #f0e8f8;
  color: #a08fb8;
  text-align: center;
  font-size: 12.5px;
  padding: 28px 20px;
  border-top: 1px solid #e5d8f0;
}
footer a { color: var(--purple); text-decoration: none; font-weight: 700; }
footer a:hover { color: var(--accent-dark); }
footer .footer-links { margin-bottom: 8px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== お問い合わせモーダル ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(60, 45, 85, 0.55);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 30px 28px;
  position: relative;
  box-shadow: 0 20px 60px rgba(60, 45, 85, 0.35);
}
.modal h3 {
  font-family: 'Zen Old Mincho', serif;
  font-size: 21px; font-weight: 900;
  color: var(--purple);
  text-align: center;
  margin-bottom: 6px;
}
.modal .modal-lead { font-size: 13px; color: var(--gray); text-align: center; margin-bottom: 22px; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 22px; color: var(--gray);
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}
.modal-close:hover { color: var(--pink); }
.modal label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.modal label .req-mark { color: var(--pink); font-size: 11px; margin-left: 4px; }
.modal input, .modal textarea, .modal select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
  margin-bottom: 16px;
}
.modal textarea { min-height: 110px; resize: vertical; }
.modal input:focus, .modal textarea:focus, .modal select:focus { outline: none; border-color: var(--accent); }
.modal .btn { width: 100%; }
