:root {
  --navy:   #0d1b2a;
  --navy2:  #1b2d42;
  --teal:   #2a9d8f;
  --teal2:  #3bbfb0;
  --sand:   #faf7f2;
  --muted:  #8a9bb0;
  --border: #e4eaf2;
  --danger: #e05c5c;
  --text:   #1b2d42;
  --r:      14px;
  --shadow: 0 4px 24px rgba(13,27,42,0.08);
  --shadow2: 0 2px 8px rgba(13,27,42,0.06);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--sand); color: var(--text); min-height: 100vh; line-height: 1.6; }
h1,h2,h3,h4 { font-family: 'Lora', serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.page { display: none; min-height: 100vh; animation: fadeIn .3s ease; }
.page.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 700;
  color: var(--navy); cursor: pointer; user-select: none;
}
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--teal) 0%, #1a7a6e 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(42,157,143,.35);
}
.nav-logo-text em { color: var(--teal); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: .5rem; }
.nav-links a, .nav-links button {
  padding: .5rem 1rem; border-radius: 8px; font-size: .9rem;
  font-weight: 500; cursor: pointer; border: none;
  transition: all .2s; background: transparent; color: var(--navy2);
}
.nav-links a:hover, .nav-links button:hover { background: var(--sand); }
.btn-nav-cta { background: var(--teal) !important; color: #fff !important; padding: .5rem 1.25rem !important; }
.btn-nav-cta:hover { background: var(--teal2) !important; }
.nav-user { display: flex; align-items: center; gap: .75rem; font-size: .9rem; }
.nav-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #1a7a6e);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .82rem; letter-spacing: .03em;
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1.5rem; border-radius: 10px; font-weight: 500; font-size: .95rem; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(42,157,143,.3); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity:.9; }
.btn-sm { padding: .42rem .95rem; font-size: .84rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity:.5; cursor:not-allowed; transform:none !important; }

/* FORMS */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: .45rem; font-size: .875rem; font-weight: 500; color: var(--navy2); }
.form-control { width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: .95rem; background: #fff; color: var(--text); transition: border-color .2s; outline: none; }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,157,143,.1); }
.form-control::placeholder { color: #b0bcc9; }

/* CARDS */
.card { background: #fff; border-radius: var(--r); border: 1px solid var(--border); box-shadow: var(--shadow2); }
.card-body { padding: 1.5rem; }

/* BADGES */
.badge { display: inline-block; padding: .25rem .7rem; border-radius: 20px; font-size: .78rem; font-weight: 600; }
.badge-teal { background: rgba(42,157,143,.12); color: var(--teal); }
.badge-orange { background: rgba(224,92,92,.1); color: var(--danger); }
.badge-gray { background: var(--sand); color: var(--muted); }

/* TOAST */
#toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; }
.toast { background: var(--navy); color: #fff; padding: .85rem 1.25rem; border-radius: 10px; font-size: .9rem; max-width: 320px; animation: slideUp .3s ease; display: flex; align-items: center; gap: .75rem; box-shadow: var(--shadow); }
.toast.success { border-left: 3px solid var(--teal); }
.toast.error { border-left: 3px solid var(--danger); }
@keyframes slideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(13,27,42,.5); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn .2s ease; }
.modal { background: #fff; border-radius: var(--r); width: 100%; max-width: 480px; box-shadow: 0 20px 60px rgba(13,27,42,.2); animation: scaleIn .25s ease; }
@keyframes scaleIn { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }
.modal-header { padding: 1.5rem 1.5rem 0; display: flex; align-items: flex-start; justify-content: space-between; }
.modal-header h3 { font-size: 1.2rem; }
.modal-close { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.4rem; line-height: 1; padding: .1rem .3rem; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 1.25rem 1.5rem 1.5rem; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media(max-width:768px){ .grid-2,.grid-3{ grid-template-columns:1fr; } }
.flex { display:flex; }
.flex-between { display:flex; justify-content:space-between; align-items:center; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.gap-1{gap:.5rem} .gap-2{gap:1rem} .gap-3{gap:1.5rem}
.mt-1{margin-top:.5rem} .mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem}
.mb-1{margin-bottom:.5rem} .mb-2{margin-bottom:1rem}
.text-muted{color:var(--muted);font-size:.9rem}
.text-sm{font-size:.85rem} .text-center{text-align:center}

/* TABS */
.tabs { display:flex; border-bottom:2px solid var(--border); margin-bottom:1.5rem; }
.tab-btn { padding:.75rem 1.5rem; background:none; border:none; font-size:.9rem; font-weight:500; color:var(--muted); cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-2px; transition:all .2s; }
.tab-btn.active { color:var(--teal); border-bottom-color:var(--teal); }

.divider { display:flex; align-items:center; gap:1rem; color:var(--muted); font-size:.85rem; margin:1rem 0; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background:var(--border); }

/* ══ HOME ══════════════════════════════════════════════════════ */
.hero { background: linear-gradient(135deg, #0b1a28 0%, #12293d 55%, #0f3347 100%); color:#fff; padding:6rem 0 5rem; position:relative; overflow:hidden; }
.hero::before { content:''; position:absolute; top:-40%; right:-8%; width:580px; height:580px; background:radial-gradient(circle, rgba(42,157,143,.22) 0%, transparent 70%); border-radius:50%; }
.hero::after { content:''; position:absolute; bottom:-30%; left:-5%; width:380px; height:380px; background:radial-gradient(circle, rgba(42,157,143,.12) 0%, transparent 70%); border-radius:50%; }
.hero-inner { position:relative; z-index:1; max-width:640px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:.5rem; background:rgba(42,157,143,.18); border:1px solid rgba(42,157,143,.3); padding:.35rem .9rem; border-radius:20px; font-size:.78rem; font-weight:700; color:var(--teal2); letter-spacing:.06em; text-transform:uppercase; margin-bottom:1.5rem; }
.hero h1 { font-size:clamp(2rem,5vw,3.2rem); margin-bottom:1.25rem; font-weight:700; }
.hero h1 em { color:var(--teal2); font-style:normal; }
.hero p { font-size:1.05rem; color:rgba(255,255,255,.72); max-width:520px; margin-bottom:2.5rem; }
.hero-cta { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-stats { display:flex; gap:3rem; margin-top:4rem; padding-top:2rem; border-top:1px solid rgba(255,255,255,.1); flex-wrap:wrap; }
.hero-stat strong { display:block; font-size:1.7rem; font-family:'Lora',serif; color:var(--teal2); }
.hero-stat span { font-size:.82rem; color:rgba(255,255,255,.55); }
.search-card-hero { background:#fff; border-radius:20px; padding:2rem; box-shadow:0 24px 64px rgba(13,27,42,.28); max-width:380px; }
.search-card-hero h3 { font-size:1rem; margin-bottom:1.25rem; color:var(--navy); padding-bottom:.75rem; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:.5rem; }

.features { padding:5rem 0; background:#fff; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }
@media(max-width:768px){ .features-grid{ grid-template-columns:1fr; } }
.feature-card { padding:2rem; border-radius:16px; border:1px solid var(--border); transition:all .3s; }
.feature-card:hover { border-color:var(--teal); box-shadow:0 8px 30px rgba(42,157,143,.1); transform:translateY(-4px); }
.feature-icon { width:52px; height:52px; border-radius:14px; background:rgba(42,157,143,.08); display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; }
.feature-card h4 { margin-bottom:.5rem; font-size:1.05rem; }
.feature-card p { color:var(--muted); font-size:.9rem; }
.section-header { text-align:center; margin-bottom:3rem; }
.section-header h2 { font-size:2.1rem; margin-bottom:.75rem; }
.section-header p { color:var(--muted); font-size:1rem; max-width:520px; margin:0 auto; }

/* ══ AUTH ═══════════════════════════════════════════════════════ */
.auth-page { min-height:calc(100vh - 64px); display:grid; grid-template-columns:1fr 1fr; }
@media(max-width:768px){ .auth-page{ grid-template-columns:1fr; } }
.auth-left { background:linear-gradient(145deg, #0b1a28, #12313f); padding:3rem; display:flex; flex-direction:column; justify-content:center; position:relative; overflow:hidden; }
.auth-left::before { content:''; position:absolute; top:15%; right:-25%; width:360px; height:360px; border-radius:50%; background:radial-gradient(circle, rgba(42,157,143,.28) 0%, transparent 70%); }
.auth-left-content { position:relative; z-index:1; color:#fff; max-width:380px; }
.auth-left-content .logo-area { margin-bottom:3rem; display:flex; align-items:center; gap:.65rem; }
.auth-left-content h2 { font-size:1.9rem; margin-bottom:1rem; }
.auth-left-content p { color:rgba(255,255,255,.68); line-height:1.7; }
.auth-testimonial { margin-top:3rem; padding:1.25rem; background:rgba(255,255,255,.07); border-radius:12px; border:1px solid rgba(255,255,255,.1); }
.auth-testimonial p { font-size:.88rem; color:rgba(255,255,255,.82); font-style:italic; }
.auth-testimonial .author { margin-top:.65rem; font-size:.78rem; color:var(--teal2); font-style:normal; font-weight:700; }
.auth-right { background:var(--sand); display:flex; align-items:center; justify-content:center; padding:3rem 2rem; }
.auth-form-container { width:100%; max-width:420px; }
.auth-form-container h1 { font-size:1.75rem; margin-bottom:.5rem; }
.auth-form-container > p { color:var(--muted); margin-bottom:2rem; }
.auth-switch { margin-top:1.5rem; text-align:center; font-size:.9rem; color:var(--muted); }
.auth-switch a { color:var(--teal); font-weight:600; cursor:pointer; }
.role-tabs { display:grid; grid-template-columns:1fr 1fr; gap:.5rem; margin-bottom:1.5rem; }
.role-tab { padding:.75rem; text-align:center; border-radius:10px; border:1.5px solid var(--border); cursor:pointer; transition:all .2s; font-size:.9rem; font-weight:500; color:var(--muted); }
.role-tab.active { border-color:var(--teal); color:var(--teal); background:rgba(42,157,143,.06); }
.role-tab-icon { display:flex; justify-content:center; margin-bottom:.3rem; }

/* ══ SEARCH ══════════════════════════════════════════════════════ */
.search-hero { background:var(--navy); color:#fff; padding:3rem 0; }
.search-hero h1 { font-size:1.8rem; margin-bottom:.4rem; }
.search-hero p { color:rgba(255,255,255,.6); font-size:.92rem; }
.search-filters { background:#fff; border-radius:16px; padding:1.5rem; box-shadow:var(--shadow); display:flex; gap:1rem; align-items:flex-end; flex-wrap:wrap; margin-top:2rem; }
.search-filters .form-group { margin-bottom:0; flex:1; min-width:160px; }
.clinics-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(320px,1fr)); gap:1.25rem; margin-top:2rem; }
.clinic-card { background:#fff; border-radius:var(--r); border:1px solid var(--border); overflow:hidden; transition:all .3s; cursor:pointer; }
.clinic-card:hover { box-shadow:var(--shadow); border-color:var(--teal); transform:translateY(-3px); }
.clinic-card-header { height:110px; display:flex; align-items:center; padding:1.25rem; position:relative; overflow:hidden; }
.clinic-card-header::after { content:''; position:absolute; top:-40%; right:-15%; width:180px; height:180px; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%); }
.clinic-logo-wrap { width:52px; height:52px; border-radius:14px; background:rgba(255,255,255,.15); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; position:relative; z-index:1; }
.clinic-card-body { padding:1.25rem; }
.clinic-card-body h3 { font-size:1rem; margin-bottom:.3rem; }
.clinic-card-meta { display:flex; flex-direction:column; gap:.32rem; margin-top:.75rem; }
.clinic-meta-item { display:flex; align-items:center; gap:.5rem; font-size:.82rem; color:var(--muted); }
.clinic-card-footer { padding:1rem 1.25rem; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; }
.rating { display:flex; align-items:center; gap:.35rem; font-size:.85rem; font-weight:600; }
.star-icon { color:#f59e0b; }

/* ══ SLOTS ════════════════════════════════════════════════════════ */
.slots-header { background:var(--navy); color:#fff; padding:2.5rem 0; }
.slots-header h1 { font-size:1.55rem; }
.clinic-info-mini { display:flex; align-items:center; gap:1rem; margin-top:.65rem; flex-wrap:wrap; }
.clinic-info-mini span { font-size:.88rem; color:rgba(255,255,255,.65); display:flex; align-items:center; gap:.4rem; }
.slots-page { padding:2.5rem 0; }
.date-nav { display:flex; align-items:center; gap:.85rem; }
.date-nav-btn { width:34px; height:34px; border-radius:8px; border:1.5px solid var(--border); background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; color:var(--navy2); }
.date-nav-btn:hover { border-color:var(--teal); color:var(--teal); }
.date-nav span { font-weight:600; font-size:.92rem; min-width:120px; text-align:center; }
.slots-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); gap:.7rem; }
.slot-btn { padding:.7rem; text-align:center; border-radius:10px; border:1.5px solid var(--border); background:#fff; cursor:pointer; transition:all .2s; font-size:.88rem; font-weight:500; color:var(--text); }
.slot-btn:hover:not(:disabled) { border-color:var(--teal); color:var(--teal); background:rgba(42,157,143,.05); }
.slot-btn.selected { border-color:var(--teal); background:var(--teal); color:#fff; }
.slot-btn:disabled { background:var(--sand); color:#c0ccd8; cursor:not-allowed; border-color:var(--border); }
.doctor-chip { display:inline-flex; align-items:center; gap:.5rem; padding:.5rem .95rem; border-radius:20px; border:1.5px solid var(--border); cursor:pointer; margin:.2rem; transition:all .2s; font-size:.84rem; }
.doctor-chip.active { border-color:var(--teal); background:rgba(42,157,143,.08); color:var(--teal); }
.doctor-avatar-sm { width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,var(--teal),#1a7a6e); color:#fff; display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:700; }

/* ══ CONFIRM ══════════════════════════════════════════════════════ */
.confirm-page { padding:4rem 0; }
.confirm-card { max-width:520px; margin:0 auto; background:#fff; border-radius:20px; border:1px solid var(--border); overflow:hidden; box-shadow:var(--shadow); }
.confirm-header { background:linear-gradient(135deg, var(--teal) 0%, #1a7a6e 100%); padding:2.5rem; text-align:center; color:#fff; }
.confirm-check { width:72px; height:72px; border-radius:50%; background:rgba(255,255,255,.2); border:2px solid rgba(255,255,255,.4); display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.confirm-header h2 { font-size:1.4rem; }
.confirm-header p { opacity:.85; font-size:.9rem; margin-top:.4rem; }
.confirm-details { padding:2rem; }
.confirm-detail-row { display:flex; justify-content:space-between; align-items:center; padding:.9rem 0; border-bottom:1px solid var(--border); }
.confirm-detail-row:last-child { border-bottom:none; }
.confirm-detail-row .label { font-size:.83rem; color:var(--muted); font-weight:500; }
.confirm-detail-row .value { font-weight:600; font-size:.88rem; text-align:right; }
.confirm-actions { padding:0 2rem 2rem; display:flex; flex-direction:column; gap:.75rem; }

/* ══ DASHBOARD ════════════════════════════════════════════════════ */
.dashboard-sidebar { position:fixed; top:64px; left:0; bottom:0; width:240px; background:var(--navy); padding:1.5rem 0; z-index:50; overflow-y:auto; }
.sidebar-menu { list-style:none; }
.sidebar-item a, .sidebar-item button { display:flex; align-items:center; gap:.75rem; padding:.8rem 1.5rem; color:rgba(255,255,255,.6); font-size:.88rem; font-weight:500; cursor:pointer; transition:all .2s; width:100%; background:none; border:none; text-align:left; }
.sidebar-item a:hover, .sidebar-item button:hover { color:#fff; background:rgba(255,255,255,.06); }
.sidebar-item.active a, .sidebar-item.active button { color:#fff; background:rgba(42,157,143,.18); border-right:3px solid var(--teal); }
.sidebar-icon { display:flex; align-items:center; flex-shrink:0; }
.sidebar-section-label { padding:.5rem 1.5rem; font-size:.68rem; font-weight:700; color:rgba(255,255,255,.28); text-transform:uppercase; letter-spacing:.12em; margin-top:1rem; }
.dashboard-main { margin-left:240px; padding:2.5rem; min-height:calc(100vh - 64px); }
@media(max-width:768px){ .dashboard-sidebar{display:none;} .dashboard-main{margin-left:0;padding:1.5rem;} }
.dashboard-header { margin-bottom:2rem; }
.dashboard-header h1 { font-size:1.55rem; }
.dashboard-header p { color:var(--muted); margin-top:.25rem; font-size:.9rem; }
.stats-row { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:1rem; margin-bottom:2rem; }
.stat-card { background:#fff; border-radius:var(--r); padding:1.25rem; border:1px solid var(--border); }
.stat-card .stat-icon { margin-bottom:.75rem; }
.stat-card .stat-value { font-size:1.8rem; font-family:'Lora',serif; font-weight:700; color:var(--navy); line-height:1; }
.stat-card .stat-label { font-size:.78rem; color:var(--muted); margin-top:.25rem; }
.appointment-list { display:flex; flex-direction:column; gap:.75rem; }
.appt-card { background:#fff; border-radius:12px; border:1px solid var(--border); padding:1.25rem; display:flex; align-items:center; gap:1.25rem; transition:all .2s; }
.appt-card:hover { box-shadow:var(--shadow2); }
.appt-date-box { min-width:58px; height:58px; border-radius:12px; background:var(--sand); display:flex; flex-direction:column; align-items:center; justify-content:center; border:1px solid var(--border); }
.appt-date-box .day { font-size:1.35rem; font-weight:700; font-family:'Lora',serif; color:var(--navy); line-height:1; }
.appt-date-box .month { font-size:.68rem; text-transform:uppercase; color:var(--muted); font-weight:700; letter-spacing:.06em; }
.appt-info { flex:1; }
.appt-info h4 { font-size:.92rem; margin-bottom:.2rem; }
.appt-info .appt-meta { font-size:.8rem; color:var(--muted); display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.appt-actions { display:flex; gap:.5rem; }
.empty-state { text-align:center; padding:3rem; color:var(--muted); }
.empty-state .empty-icon { margin-bottom:1rem; }
.empty-state p { font-size:.9rem; margin-bottom:1.25rem; }

/* DOCTOR */
.availability-form { background:var(--sand); border-radius:14px; padding:1.5rem; margin-bottom:2rem; border:1px solid var(--border); }
.availability-form h3 { margin-bottom:1rem; font-size:.95rem; display:flex; align-items:center; gap:.5rem; }
.time-range { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:1rem; }
.time-range-sep { color:var(--muted); font-size:.9rem; text-align:center; }
.slots-list { display:flex; flex-wrap:wrap; gap:.5rem; }
.slot-pill { padding:.4rem .9rem; border-radius:20px; background:rgba(42,157,143,.1); color:var(--teal); font-size:.82rem; font-weight:600; display:flex; align-items:center; gap:.4rem; }
.slot-pill-remove { background:none; border:none; cursor:pointer; color:var(--teal); opacity:.6; font-size:.9rem; padding:0; line-height:1; }
.slot-pill-remove:hover { opacity:1; }

/* SPINNER */
.spinner { width:24px; height:24px; border-radius:50%; border:2.5px solid rgba(42,157,143,.3); border-top-color:var(--teal); animation:spin .7s linear infinite; display:inline-block; }
@keyframes spin { to{transform:rotate(360deg)} }
.loading-overlay { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; padding:3rem; color:var(--muted); }

/* FOOTER */
footer { background:var(--navy); color:rgba(255,255,255,.5); padding:2.5rem 0; text-align:center; font-size:.85rem; }
footer .footer-logo { display:flex; align-items:center; justify-content:center; gap:.6rem; margin-bottom:.75rem; }
footer .footer-logo span { font-family:'Lora',serif; font-weight:700; color:#fff; font-size:1.1rem; }
footer .footer-logo em { color:var(--teal2); font-style:normal; }