/* ═══════════════════════════════════════════
   Dear A/IE — Shared Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Zen+Kurenaido&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --bg:      #050f08;
  --bg2:     #091408;
  --surface: #0c1f10;
  --surface2:#0f2614;
  --border:  rgba(180,220,190,0.11);
  --border2: rgba(180,220,190,0.22);
  --green:   #2d6a4f;
  --green2:  #40916c;
  --glow:    #52b788;
  --silver:  #d8e8dc;
  --silver2: #a8c4b0;
  --silver3: #6b8f78;
  --white:   #f0f7f2;
  --rose:    #d4726a;
  --gold:    #e8c84a;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  color: var(--silver);
  overflow-x: hidden;
}

/* ─── BACKGROUND ─── */
.bg-radial {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(30,80,50,0.32) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 85% 80%, rgba(20,60,35,0.28) 0%, transparent 60%),
    radial-gradient(100% 100% at 50% 50%, #060d08 0%, #030806 100%);
}

/* ─── PAGE WRAPPER ─── */
.page {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  padding: 0 18px 80px;
}

/* ─── SITE HEADER ─── */
.site-header { text-align: center; padding: 50px 20px 34px; }
.header-badge {
  font-family: 'Zen Kurenaido', serif;
  font-size: 11px; letter-spacing: 7px;
  color: var(--silver3); margin-bottom: 10px;
}
.site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 8vw, 70px);
  font-weight: 600; color: var(--white);
  letter-spacing: 2px; line-height: 1;
  text-shadow: 0 0 60px rgba(82,183,136,0.18);
}
.site-title .r { color: var(--rose); font-style: italic; }
.site-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: var(--silver3); margin-top: 8px; letter-spacing: 1px;
}
.h-div {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-top: 20px;
}
.h-div::before, .h-div::after {
  content: ''; flex: 1; max-width: 110px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2));
}
.h-div::after { transform: scaleX(-1); }
.h-dot {
  width: 5px; height: 5px;
  background: var(--glow); border-radius: 50%;
  box-shadow: 0 0 8px var(--glow);
}

/* ─── NAV TABS ─── */
.nav-tabs {
  display: flex; gap: 4px; justify-content: center;
  margin-bottom: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 5px;
}
.nav-tab {
  flex: 1; padding: 10px 8px;
  background: transparent; border: none;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--silver3); cursor: pointer;
  transition: all .22s;
}
.nav-tab:hover { color: var(--silver); background: rgba(82,183,136,0.05); }
.nav-tab.active {
  background: var(--surface2); color: var(--white);
  box-shadow: 0 0 0 1px var(--border2), 0 2px 10px rgba(0,0,0,.3);
}
.tab-icon { margin-right: 5px; }

/* ─── PANELS ─── */
.panel { display: none; }
.panel.active { display: block; }

/* ─── SECTION LABEL ─── */
.slabel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; letter-spacing: 5px;
  color: var(--silver3); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.slabel::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ─── CARD ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px; padding: 26px;
  margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  opacity: .35;
}

/* ─── FORM ─── */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-bottom: 13px; }
.frow.single { grid-template-columns: 1fr; }
.fgrp { display: flex; flex-direction: column; gap: 5px; }
.flabel {
  font-size: 11px; letter-spacing: 2px;
  font-weight: 500; color: var(--silver3);
  text-transform: uppercase;
}
.finput, .fsel, .ftarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.finput:focus, .fsel:focus, .ftarea:focus {
  border-color: var(--glow);
  box-shadow: 0 0 0 3px rgba(82,183,136,.1);
}
.fsel option { background: #0c1f10; color: var(--white); }
.ftarea { resize: vertical; min-height: 110px; line-height: 1.65; }
.finput::placeholder, .ftarea::placeholder { color: var(--silver3); opacity: .6; }

/* ─── MOOD ─── */
.mood-row { display: flex; gap: 7px; flex-wrap: wrap; }
.mood-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 13px;
  font-size: 13px; color: var(--silver2);
  cursor: pointer; transition: all .2s;
}
.mood-btn:hover, .mood-btn.sel {
  background: rgba(82,183,136,.14);
  border-color: var(--glow); color: var(--white);
}

/* ─── IMAGE UPLOAD ─── */
.uzone {
  border: 1.5px dashed var(--border2);
  border-radius: 8px; padding: 18px;
  text-align: center; cursor: pointer;
  transition: all .2s; position: relative;
}
.uzone:hover { border-color: var(--glow); background: rgba(82,183,136,.04); }
.uzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.uzone-txt { font-size: 13px; color: var(--silver3); }
.uzone-icon { font-size: 20px; display: block; margin-bottom: 5px; }
.img-preview { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 9px; }
.img-preview img { width: 68px; height: 68px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border2); cursor: pointer; }

/* ─── NOTIFY HINT ─── */
.notify-hint {
  background: rgba(82,183,136,.05);
  border: 1px solid rgba(82,183,136,.14);
  border-radius: 8px; padding: 12px 15px;
  margin-bottom: 13px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--silver2);
}

/* ─── SUBMIT BUTTON ─── */
.submit-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border: none; border-radius: 9px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  cursor: pointer; letter-spacing: .4px;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(40,103,74,.38);
}
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 26px rgba(40,103,74,.48); }
.submit-btn:active { transform: none; }
.submit-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ─── MESSAGE CARDS ─── */
.msgs-feed { display: flex; flex-direction: column; gap: 16px; }
.msg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px; padding: 22px 24px;
  position: relative;
  animation: msgIn .45s cubic-bezier(.16,1,.3,1) both;
  transition: border-color .2s;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.msg-card:hover { border-color: var(--border2); }
.msg-card.from-ash { border-left: 3px solid var(--glow); }
.msg-card.from-ali { border-left: 3px solid var(--rose); }
.msg-card.is-q { background: linear-gradient(135deg, var(--surface), rgba(14,36,20,.8)); }

.msg-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 11px; flex-wrap: wrap; gap: 7px; }
.msg-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  display: flex; align-items: center; gap: 7px;
}
.author-ash { color: var(--glow); }
.author-ali  { color: var(--rose); }
.avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.av-ash { background: rgba(82,183,136,.2); border: 1px solid rgba(82,183,136,.38); }
.av-ali  { background: rgba(212,114,106,.2); border: 1px solid rgba(212,114,106,.36); }

.msg-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.msg-date { font-size: 11px; color: var(--silver3); }

.badge { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 11px; font-weight: 500; }
.bq { background: rgba(82,183,136,.14);  color: var(--glow);    border: 1px solid rgba(82,183,136,.24); }
.ba { background: rgba(212,114,106,.11); color: var(--rose);    border: 1px solid rgba(212,114,106,.2); }
.bt { background: rgba(168,196,176,.09); color: var(--silver2); border: 1px solid var(--border); }
.bi { background: rgba(100,140,255,.11); color: #a0b4f8;        border: 1px solid rgba(100,140,255,.2); }
.bh { background: rgba(240,200,80,.11);  color: var(--gold);    border: 1px solid rgba(240,200,80,.2); }

.msg-body { font-size: 15px; line-height: 1.75; color: var(--silver); white-space: pre-wrap; }
.msg-body.q-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-style: italic; color: var(--white);
}
.msg-imgs { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 12px; }
.msg-imgs img { max-width: 190px; max-height: 190px; object-fit: cover; border-radius: 7px; border: 1px solid var(--border2); cursor: pointer; transition: transform .2s; }
.msg-imgs img:hover { transform: scale(1.02); }
.msg-ftr { margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.msg-hint { font-size: 11px; color: var(--silver3); font-style: italic; }
.msg-del { background: none; border: none; cursor: pointer; font-size: 11px; color: rgba(180,60,60,.38); transition: color .2s; padding: 2px 5px; }
.msg-del:hover { color: rgba(220,100,100,.75); }
.new-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 10px;
  background: rgba(82,183,136,.14); color: var(--glow);
  border: 1px solid rgba(82,183,136,.24);
}
.empty {
  text-align: center; padding: 56px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--silver3); font-size: 18px;
}
.empty-ico { font-size: 34px; display: block; margin-bottom: 10px; opacity: .35; }

/* ─── DAILY LOG ─── */
.log-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; }
.stat-ico { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.sg   { background: rgba(82,183,136,.14); }
.sr   { background: rgba(212,114,106,.14); }
.sgold{ background: rgba(240,200,80,.11); }
.sb   { background: rgba(100,150,255,.11); }
.stat-num { font-size: 26px; font-weight: 500; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--silver3); margin-top: 2px; }

.cal-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; margin-bottom: 16px; }
.cal-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.cal-grid { display: flex; gap: 3px; flex-wrap: wrap; }
.cday { width: 15px; height: 15px; border-radius: 3px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.05); cursor: default; transition: transform .1s; }
.cday:hover { transform: scale(1.35); z-index: 2; }
.cday.has-msg { background: rgba(82,183,136,.33); border-color: rgba(82,183,136,.48); }
.cday.happy   { background: rgba(240,200,80,.48);  border-color: rgba(240,200,80,.58); }
.cday.today   { box-shadow: 0 0 0 1.5px var(--glow); }

.log-entries { display: flex; flex-direction: column; gap: 9px; }
.log-ent { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 13px 16px; display: flex; align-items: flex-start; gap: 12px; }
.le-ico { font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.le-ttl { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.le-sub { font-size: 12px; color: var(--silver3); }

.happy-btn {
  background: rgba(240,200,80,.11);
  border: 1px solid rgba(240,200,80,.24);
  color: var(--gold); border-radius: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 18px;
}
.happy-btn:hover { background: rgba(240,200,80,.2); }

/* ─── SETTINGS ─── */
.settings-ttl { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.setting-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); gap: 18px; }
.setting-row:last-child { border-bottom: none; }
.sname { font-size: 14px; color: var(--silver); font-weight: 500; }
.sdesc { font-size: 12px; color: var(--silver3); margin-top: 1px; }
.toggle { width: 40px; height: 22px; border-radius: 11px; background: rgba(255,255,255,.09); border: 1px solid var(--border2); cursor: pointer; position: relative; transition: background .22s; flex-shrink: 0; }
.toggle.on { background: var(--green2); }
.toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: white; transition: transform .22s; box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.toggle.on::after { transform: translateX(18px); }

/* ─── TOAST ─── */
.toast-wrap { position: fixed; top: 22px; right: 22px; z-index: 1000; display: flex; flex-direction: column; gap: 7px; }
.toast {
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 9px; padding: 11px 16px;
  font-size: 13px; color: var(--silver);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  animation: toastIn .28s cubic-bezier(.16,1,.3,1) both;
  display: flex; align-items: center; gap: 7px; min-width: 220px;
}
@keyframes toastIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.toast.success .ti { color: var(--glow); }
.toast.info    .ti { color: #a0b4f8; }
.toast.error   .ti { color: var(--rose); }

/* ─── LIGHTBOX ─── */
.lb { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.88); align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 90vh; border-radius: 7px; }
.lb-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: var(--silver); font-size: 28px; cursor: pointer; }

/* ─── LOGIN SCREEN ─── */
#login-screen {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #030806;
  transition: opacity .6s ease, visibility .6s ease;
}
#login-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.lp-petal { position: absolute; border-radius: 50% 0 50% 0; opacity: 0; animation: lpFall linear infinite; pointer-events: none; }
@keyframes lpFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .2; }
  100% { transform: translateY(105vh) rotate(540deg) translateX(40px); opacity: 0; }
}

.login-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 15%, rgba(25,70,45,.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 85%, rgba(15,50,30,.45) 0%, transparent 60%),
    #030806;
}

.login-line { position: absolute; background: rgba(82,183,136,.12); animation: linePulse 4s ease-in-out infinite alternate; }
@keyframes linePulse { from { opacity: .06; } to { opacity: .2; } }
.login-line.h { left: 0; right: 0; height: 1px; }
.login-line.v { top: 0; bottom: 0; width: 1px; }

.login-box {
  position: relative; z-index: 2;
  width: min(400px, 92vw);
  background: rgba(10,26,14,.85);
  border: 1px solid rgba(82,183,136,.22);
  border-radius: 18px;
  padding: 44px 36px 40px;
  text-align: center;
  box-shadow: 0 0 80px rgba(30,120,60,.12), 0 20px 60px rgba(0,0,0,.6);
  animation: loginIn 1s cubic-bezier(.16,1,.3,1) both;
  backdrop-filter: blur(12px);
}
@keyframes loginIn { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: none; } }
.login-box::before {
  content: ''; position: absolute;
  top: 0; left: 20px; right: 20px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  border-radius: 2px; opacity: .5;
}

.login-rose {
  font-size: 38px; margin-bottom: 6px; display: block;
  animation: roseFloat 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 14px rgba(212,114,106,.5));
}
@keyframes roseFloat { from { transform: translateY(0); } to { transform: translateY(-6px); } }

.login-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600;
  color: var(--white); letter-spacing: 2px; line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 40px rgba(82,183,136,.2);
}
.login-title .r { color: var(--rose); font-style: italic; }
.login-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 14px;
  color: var(--silver3); margin-bottom: 8px; letter-spacing: .5px;
}
.login-jp {
  font-family: 'Zen Kurenaido', serif;
  font-size: 10px; letter-spacing: 6px;
  color: rgba(82,183,136,.35); margin-bottom: 28px;
}

.who-label { font-size: 11px; letter-spacing: 3px; color: var(--silver3); text-transform: uppercase; margin-bottom: 12px; }
.who-btns  { display: flex; gap: 10px; margin-bottom: 24px; }
.who-btn {
  flex: 1; padding: 12px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--silver2);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all .22s;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.who-btn:hover         { background: rgba(82,183,136,.08); border-color: rgba(82,183,136,.35); color: var(--white); }
.who-btn.selected-ash  { background: rgba(82,183,136,.15); border-color: var(--glow); color: var(--white); box-shadow: 0 0 18px rgba(82,183,136,.15); }
.who-btn.selected-ali  { background: rgba(212,114,106,.12); border-color: var(--rose); color: var(--white); box-shadow: 0 0 18px rgba(212,114,106,.12); }
.who-icon { font-size: 22px; }
.who-name { font-size: 13px; }

.pw-wrap { position: relative; margin-bottom: 8px; }
.pw-input {
  width: 100%; padding: 13px 44px 13px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 10px; color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; outline: none;
  transition: border-color .2s, box-shadow .2s;
  text-align: center; letter-spacing: 3px;
}
.pw-input:focus { border-color: var(--glow); box-shadow: 0 0 0 3px rgba(82,183,136,.1); }
.pw-input::placeholder { letter-spacing: 1px; color: var(--silver3); opacity: .5; }
.pw-toggle {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: var(--silver3); font-size: 16px; transition: color .2s;
}
.pw-toggle:hover { color: var(--silver); }

.pw-hint { font-size: 11px; color: var(--silver3); margin-bottom: 20px; min-height: 16px; transition: color .2s; }
.pw-hint.error { color: var(--rose); }
.pw-hint.ok    { color: var(--glow); }

.login-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border: none; border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  cursor: pointer; letter-spacing: .4px;
  transition: all .22s;
  box-shadow: 0 4px 20px rgba(40,103,74,.35);
  position: relative; overflow: hidden;
}
.login-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.08), transparent); }
.login-btn:hover   { transform: translateY(-1px); box-shadow: 0 6px 26px rgba(40,103,74,.48); }
.login-btn:active  { transform: none; }
.login-btn:disabled{ opacity: .4; cursor: not-allowed; transform: none; }

.login-footer { margin-top: 20px; font-size: 11px; color: rgba(107,143,120,.4); letter-spacing: 1px; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-8px); }
  40%     { transform: translateX(8px); }
  60%     { transform: translateX(-5px); }
  80%     { transform: translateX(5px); }
}
.shake { animation: shake .4s ease both; }

/* App hidden until authenticated */
#app { display: none; }
#app.visible { display: block; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 580px) {
  .frow { grid-template-columns: 1fr; }
  .log-grid { grid-template-columns: 1fr 1fr; }
  .site-title { font-size: 36px; }
  .tab-lbl { display: none; }
}
