:root{
  --bg:#0b0c0f;
  --text:#e9e7df;
  --muted:#b8b3a5;

  --gold:#c8a45b;
  --gold2:#f0d08a;
  --black:#07080a;

  --serif:"Zen Old Mincho", serif;
  --sans:"Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:16px;
  --container:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ overflow-x:hidden; }
body{
  margin:0;
  color:var(--text);
  font-family:var(--sans);
  background: radial-gradient(1200px 700px at 20% 0%, #161a24 0%, var(--bg) 60%);
  line-height:1.85;
  letter-spacing:.02em;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ padding:0; margin:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font:inherit; }

p,li,a{
  overflow-wrap:anywhere;
  word-break:break-word;
}

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

/* a11y */
.skip-link{
  position:absolute; left:-999px; top:10px;
  background:#fff; color:#000;
  padding:10px 12px; border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(7,8,10,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  gap:16px;
}
.brand{ display:flex; align-items:center; min-width:180px; }
.brand-text{
  font-family:var(--serif);
  letter-spacing:.10em;
  font-weight:600;
  font-size:16px;
  text-transform:lowercase;
}

.nav-list{ display:flex; align-items:center; gap:18px; }
.nav-link{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}
.nav-cta{
  color:var(--black);
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding:10px 14px;
  font-weight:900;
}
.nav-cta:hover{
  background:linear-gradient(135deg, var(--gold2) 0%, var(--gold) 100%);
}

/* Hamburger */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(10,11,14,.28);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.burger-line{
  display:block;
  width:18px; height:2px;
  background: rgba(233,231,223,.88);
  margin:5px auto;
  border-radius:2px;
}
.burger:hover{
  background: rgba(10,11,14,.38);
  border-color: rgba(240,208,138,.28);
  transform: translateY(-1px);
}
.burger:active{ transform: translateY(0); }

/* Drawer */
.drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(420px, 86vw);
  background: rgba(10,11,14,.92);
  backdrop-filter: blur(14px);
  border-left:1px solid rgba(255,255,255,.08);
  transform:translateX(110%);
  transition:transform .28s ease;
  z-index:300;
}
.drawer.is-open{ transform:translateX(0); }
.drawer-inner{
  padding:18px 18px 24px;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:12px;
}
.drawer-brand{
  font-family:var(--serif);
  letter-spacing:.10em;
}
.drawer-close{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color:rgba(255,255,255,.92);
  cursor:pointer;
}
.drawer-list{ display:flex; flex-direction:column; gap:8px; padding-top:8px; }
.drawer-link{
  padding:12px 12px;
  border-radius:14px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.drawer-cta{
  color:var(--black);
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  font-weight:900;
  border:none;
}
.drawer-note{
  margin-top:auto;
  color:rgba(233,231,223,.65);
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:14px;
}
.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:250;
}
.drawer-backdrop.is-open{ opacity:1; pointer-events:auto; }

/* Hero */
.hero{
  position:relative;
  min-height:82vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(200,164,91,.12), transparent 60%),
    linear-gradient(to bottom, rgba(7,8,10,.35), rgba(7,8,10,.88)),
    url("img/hero.png") center/cover no-repeat;
  filter:contrast(1.05) saturate(.95);
  transform:scale(1.02);
}
.hero-inner{
  position:relative;
  padding:88px 0 72px;
}
.hero-inner.hero-center{
  min-height:82vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:24px;
}
.hero-copy{
  width:100%;
  max-width:860px;
  margin:0 auto;
  font-family:var(--serif);
  letter-spacing:.06em;
  font-weight:600;
  font-size:clamp(30px, 4vw, 54px);
  line-height:1.28;
}
.hero-copy-shadow{
  text-shadow:
    0 2px 14px rgba(0,0,0,.55),
    0 1px 2px rgba(0,0,0,.55);
}
.fade-lines .line{
  display:block;
  width:100%;
  text-align:center;
  opacity:0;
  transform:translateY(12px);
  transition: opacity .85s ease, transform .85s ease;
}
.fade-lines.is-active .line{
  opacity:1;
  transform:translateY(0);
}
.fade-lines.is-active .line:nth-child(1){ transition-delay:.08s; }
.fade-lines.is-active .line:nth-child(2){ transition-delay:.24s; }
.fade-lines .line + .line{ margin-top: 12px; }

.hero-sub{
  font-family:var(--sans);
  font-size:0.72em;
  letter-spacing:.10em;
  opacity:.86;
}

.hero-actions{
  width:100%;
  display:flex;
  justify-content:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:900;
  transition: transform .18s ease, background .18s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn:active{ transform:translateY(0); }

.btn-primary{
  color:var(--black);
  border:none;
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  box-shadow:0 10px 22px rgba(200,164,91,.18);
}
.btn-primary:hover{
  background:linear-gradient(135deg, var(--gold2) 0%, var(--gold) 100%);
}
.btn-lg{ padding:14px 18px; }

/* Sections */
.section{ padding:92px 0; }
.section-soft{
  background:linear-gradient(to bottom, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:34px;
}
.section-eyebrow{
  letter-spacing:.18em;
  text-transform: uppercase;
  font-size:12px;
  color: rgba(233,231,223,.65);
}
.section-title{
  font-family:var(--serif);
  font-weight:600;
  letter-spacing:.08em;
  font-size:clamp(22px, 2.2vw, 30px);
}
.section-sub{
  color:rgba(233,231,223,.76);
  font-size:14px;
}

.grid{ display:grid; gap:18px; }
.cols-3{ grid-template-columns:repeat(3, 1fr); }

.card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  border-radius:var(--radius);
  padding:22px;
}
.card-title{
  font-family:var(--serif);
  letter-spacing:.06em;
  font-size:18px;
  margin-bottom:6px;
}
.card-text{ color:rgba(233,231,223,.76); font-size:14px; }

.steps{ margin:0; padding:0; display:grid; gap:12px; }
.step{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid rgba(255,255,255,.07);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  padding:18px;
}
.step-no{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background:rgba(200,164,91,.12);
  border:1px solid rgba(200,164,91,.25);
  color:rgba(240,208,138,.95);
  font-weight:900;
}
.step-title{
  font-family:var(--serif);
  letter-spacing:.06em;
  margin-bottom:4px;
}
.step-text{ color:rgba(233,231,223,.76); font-size:14px; }

.media-card{
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.02);
}
.media-thumb{ aspect-ratio: 16 / 10; background:rgba(255,255,255,.03); }
.media-thumb img{ width:100%; height:100%; object-fit:cover; }
.media-body{ padding:22px; }
.media-title{ font-family:var(--serif); letter-spacing:.06em; margin-bottom:6px; }
.media-text{ color:rgba(233,231,223,.76); font-size:14px; }

/* PLAN */
.plan-main{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 32px;
}
.plan-top{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.plan-kicker{
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(240,208,138,.85);
  margin-bottom: 8px;
}
.plan-name{
  font-family: var(--serif);
  letter-spacing: .06em;
  font-size: 22px;
  margin-bottom: 8px;
}
.plan-price{
  font-weight: 900;
  font-size: 28px;
  color: rgba(240,208,138,.95);
}
.plan-price span{
  font-size: 12px;
  opacity: .75;
  margin-left: 4px;
}
.plan-lead{
  color: rgba(233,231,223,.84);
  font-size: 14px;
  margin-bottom: 12px;
}
.plan-paragraph{
  color: rgba(233,231,223,.74);
  font-size: 14px;
  margin-bottom: 14px;
}
.plan-list{
  display: grid;
  gap: 10px;
  padding-left: 16px;
  list-style: disc;
  color: rgba(233,231,223,.76);
  font-size: 14px;
}
.plan-note{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(233,231,223,.65);
  font-size: 12px;
  line-height: 1.7;
}
.plan-note strong{ color: rgba(233,231,223,.90); font-weight: 900; }
.plan-cta{ margin-top: 16px; }

.plan-group{ margin-top: 40px; }
.plan-group-head{ margin: 10px 0 18px; }
.group-title{
  font-family: var(--serif);
  letter-spacing: .06em;
  font-size: 18px;
  margin-top: 6px;
}
.group-sub{ color: rgba(233,231,223,.70); font-size: 13px; margin-top: 6px; }

.option-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.option-card{
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding: 22px;
}
.card-eyebrow{
  font-size: 12px;
  letter-spacing: .16em;
  color: rgba(240,208,138,.80);
  margin-bottom: 8px;
}
.option-title{
  font-family: var(--serif);
  letter-spacing: .06em;
  font-size: 18px;
  margin-bottom: 6px;
}
.option-price{
  color: rgba(240,208,138,.95);
  font-weight: 900;
  margin-bottom: 10px;
}
.option-price span{
  color: rgba(233,231,223,.60);
  font-weight: 600;
  margin-left: 4px;
  font-size: 12px;
}
.option-text{
  color: rgba(233,231,223,.74);
  font-size: 14px;
  margin-bottom: 10px;
}

.plain-list{
  display:grid;
  gap: 10px;
  color: rgba(233,231,223,.76);
  font-size: 14px;
  padding-left: 0;
}
.plain-list li{
  border-top: 1px dashed rgba(255,255,255,.10);
  padding-top: 10px;
}
.plain-list li:first-child{
  border-top: none;
  padding-top: 0;
}

.addon-card{
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding: 22px;
}
.addon-list{ display:grid; gap: 12px; }
.addon-list li{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 12px;
}
.addon-list li:first-child{
  border-top:none;
  padding-top:0;
}
.addon-main{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  align-items:baseline;
  justify-content:space-between;
}
.addon-price{
  color: rgba(240,208,138,.95);
  font-weight: 900;
}
.addon-price span{
  color: rgba(233,231,223,.60);
  font-weight: 600;
  font-size: 12px;
  margin-left: 4px;
}
.addon-sub{
  margin-top: 8px;
  color: rgba(233,231,223,.70);
  font-size: 13px;
}

.one-time-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.one-time-card{
  border:1px solid rgba(255,255,255,.07);
  background:rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding: 22px;
}
.one-time-title{
  font-family: var(--serif);
  letter-spacing: .06em;
  font-size: 18px;
  margin-bottom: 6px;
}
.one-time-price{
  color: rgba(240,208,138,.95);
  font-weight: 900;
  margin-bottom: 10px;
}

.inline-cta{
  margin-top: 16px;
  display:flex;
  justify-content:flex-end;
}

.one-time-main{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 22px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 12px 18px;
}
.one-time-main-price{
  font-size: 28px;
  font-weight: 900;
  color: rgba(240,208,138,.95);
  margin-bottom: 6px;
}
.one-time-main-right{ display:flex; flex-direction:column; align-items:flex-end; gap:8px; }

.mini-note{
  color: rgba(233,231,223,.60);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
}

/* CTA / Footer */
.cta{
  padding:86px 0;
  background:
    radial-gradient(820px 420px at 20% 40%, rgba(200,164,91,.18), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,.02), rgba(0,0,0,.20));
  border-top:1px solid rgba(255,255,255,.06);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.cta-title{
  font-family:var(--serif);
  letter-spacing:.08em;
  font-size:clamp(22px, 2.2vw, 30px);
}
.cta-text{ color:rgba(233,231,223,.76); font-size:14px; margin-top:8px; }
.cta-note{ color:rgba(233,231,223,.60); font-size:12px; margin-top:8px; }

.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(7,8,10,.65);
  padding-left: 24px;
}
.footer-inner{
  padding:28px 0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-tagline{ color:rgba(233,231,223,.65); font-size:12px; margin-top:6px; }
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color:rgba(233,231,223,.70);
  font-size:13px;
  padding:6px 8px;
  border-radius:10px;
}
.footer-links a:hover{ background:rgba(255,255,255,.05); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:14px 0;
  color:rgba(233,231,223,.55);
  font-size:12px;
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(12px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-active{
  opacity:1;
  transform:translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .fade-lines .line{
    transition:none !important;
    transform:none !important;
    opacity:1 !important;
  }
}

/* Responsive */
@media (max-width: 980px){
  .cols-3{ grid-template-columns:1fr; }
  .plan-top{ grid-template-columns:1fr; }
  .option-grid{ grid-template-columns:1fr; }
  .one-time-grid{ grid-template-columns:1fr; }
  .inline-cta{ justify-content:flex-start; }
  .one-time-main-right{ align-items:flex-start; }

  .hero-sub{ font-size:0.66em; letter-spacing:.08em; }
}

@media (max-width: 880px){
  .nav{ display:none; }
  .burger{ display:block; }
}

@media (max-width: 520px){
  .section{ padding:78px 0; }
  .btn{ width:100%; }
}

/* =========================
   HAMBURGER / DRAWER (SOLID)
   ========================= */

/* Hamburger button */
.burger{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  background: #0b0c0f; /* 不透明 */
  border: 1px solid rgba(240,208,138,.45);
  box-shadow: 0 12px 26px rgba(0,0,0,.40);
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease;
  position:relative;
  z-index: 400;
}
.burger:hover{
  border-color: rgba(240,208,138,.70);
  transform: translateY(-1px);
}
.burger:active{ transform: translateY(0); }

.burger-line{
  display:block;
  width:20px;
  height:2px;
  background:#ffffff; /* くっきり */
  margin:6px auto;
  border-radius:2px;
}

/* Drawer panel */
.drawer{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:min(460px, 92vw);
  background:#0b0c0f; /* 不透明 */
  border-left:1px solid rgba(255,255,255,.10);
  transform: translateX(110%);
  transition: transform .26s ease;
  z-index: 500;
}
.drawer.is-open{ transform: translateX(0); }

/* drawer inner */
.drawer-inner{
  height:100%;
  padding: 18px;
  padding-top: calc(18px + env(safe-area-inset-top));
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* header row */
.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.drawer-brand{
  font-family: var(--serif);
  letter-spacing: .12em;
  font-weight: 600;
  font-size: 15px;
  color:#ffffff;
}

/* close button */
.drawer-close{
  width:44px;
  height:44px;
  border-radius:14px;
  border: 1px solid rgba(240,208,138,.45);
  background:#111318; /* 不透明 */
  color:#ffffff;
  cursor:pointer;
}
.drawer-close:hover{
  border-color: rgba(240,208,138,.70);
}

/* nav list */
.drawer-list{
  display:flex;
  flex-direction:column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

/* links（不透明で読みやすい） */
.drawer-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-radius: 14px;

  background:#151823; /* 不透明 */
  border: 1px solid rgba(255,255,255,.10);
  color:#ffffff;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;

  transition: transform .15s ease, border-color .15s ease;
}
.drawer-link:hover{
  border-color: rgba(240,208,138,.40);
  transform: translateY(-1px);
}

/* CTA（LINE） */
.drawer-cta{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #07080a;
  border:none;
  font-weight: 900;
}

/* note */
.drawer-note{
  margin-top:auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(233,231,223,.75);
  font-size: 13px;
  line-height: 1.7;
}

/* backdrop（透明でもOKだが暗くする） */
.drawer-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.80); /* ここは暗幕なのでOK */
  opacity:0;
  pointer-events:none;
  transition: opacity .18s ease;
  z-index: 450;
}
.drawer-backdrop.is-open{
  opacity:1;
  pointer-events:auto;
}

/* Mobile display */
@media (max-width: 880px){
  .burger{ display:block; }
  .nav{ display:none; }
}

/* 小さいスマホは全画面のほうが見やすい */
@media (max-width: 520px){
  .drawer{
    width:100vw;
    border-left:none;
  }
}



















/* =========================
   ABOUT (ADD-ON)
   ========================= */

.nav-link.is-current{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

/* page hero */
.page-hero{
  position:relative;
  padding: 96px 0 86px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.page-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(7,8,10,.45), rgba(7,8,10,.92)),
    url("img/46F68AD3-EBFA-4ECE-864C-277F1891F72F.PNG") center/cover no-repeat;
  filter: contrast(1.02) saturate(.95);
  transform: scale(1.02);
}
.page-hero-inner{
  position:relative;
  max-width: 920px;
  text-align:center;
}
.page-title{
  font-family: var(--serif);
  letter-spacing: .08em;
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.page-lead{
  margin-top: 14px;
  color: rgba(233,231,223,.78);
  font-size: 14px;
}
.page-hero-actions{ margin-top: 22px; display:flex; justify-content:center; }

/* prose */
.about-prose{
  max-width: 860px;
  margin: 0 auto 28px;
  display:grid;
  gap: 14px;
  color: rgba(233,231,223,.76);
  font-size: 14px;
}
.about-strong{
  color: rgba(233,231,223,.90);
  border-left: 2px solid rgba(240,208,138,.55);
  padding-left: 12px;
}

/* profile */
.profile{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 22px;
}
.profile-media{
  border-radius: 16px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url("./img/profile.jpg") center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 240px;
}
.profile-body{ display:flex; flex-direction:column; gap: 10px; }
.profile-name{
  font-family: var(--serif);
  letter-spacing: .08em;
  font-size: 20px;
}
.profile-tag{
  color: rgba(240,208,138,.90);
  letter-spacing: .10em;
  font-size: 12px;
}
.profile-text{
  color: rgba(233,231,223,.76);
  font-size: 14px;
}
.profile-list{
  display:grid;
  gap: 10px;
  color: rgba(233,231,223,.74);
  font-size: 14px;
  padding-left: 16px;
  list-style: disc;
}
.profile-actions{ margin-top: 6px; }

/* responsive */
@media (max-width: 980px){
  .profile{ grid-template-columns: 1fr; }
  .page-hero-inner{ text-align:left; }
  .page-hero-actions{ justify-content:flex-start; }
}



.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}