:root {
  --bg:           #c8e6f5;
  --bg2:          #d8eef9;
  --bg-deep:      #a8d4ed;
  --panel:        #e8f5fc;
  --panel-dark:   #006aff;
  --border:       #5aacda;
  --border-dark:  #2e7fb8;
  --accent:       #f5e600;
  --accent-dark:  #c9bc00;
  --accent-glow:  rgb(255, 255, 255);
  --text:         #0a2a3d;
  --text-mid:     #2a5570;
  --text-dim:     #5a88a0;
  --link:         #0066aa;
  --link-hover:   #c9bc00;
  --ribbon-bg:    #0a2a3d;
  --ribbon-text:  #f5e600;
  --nav-bg:       #0a2a3d;
  --nav-active:   #f5e600;
  --nav-text:     #f5e600;
  --font-display: 'Orbitron', monospace;
  --font-body:    'Cascadia Mono', monospace;
  --font-hero:    'Gabarito';
  --radius:       4px;
  --shadow:       0 2px 8px rgba(10,42,61,0.15);
  --shadow-lg:    0 4px 20px rgba(10,42,61,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(245,230,0,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(90,172,218,0.15) 0%, transparent 50%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 25px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }

strong { font-weight: 700; }

/* =============================================
   TOP RIBBON
   ============================================= */
.ribbon-top {
  background: var(--ribbon-bg);
  border-bottom: 3px solid var(--accent);
  padding: 6px 0;
}
.ribbon-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ribbon-brand {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  white-space: nowrap;
}
.ribbon-links {
  display: flex;
  gap: 5px;
}
.ribbon-links a {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--ribbon-text);
  padding: 4px 10px;
  border: 1px solid rgba(200,230,245,0.2);
  border-radius: var(--radius);
  letter-spacing: 1px;
  transition: all 0.15s;
  white-space: nowrap;
}
.ribbon-links a:hover {
  background: var(--accent);
  color: var(--ribbon-bg);
  border-color: var(--accent);
}
.ribbon-tag {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  color: rgba(200,230,245,0.5);
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-bar {
  background: var(--accent);
  color: var(--ribbon-bg);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 5px 0;
  border-bottom: 2px solid var(--accent-dark);
}

/* =============================================
   HERO HEADER
   ============================================= */
.site-header {
  background: linear-gradient(160deg, #0a2a3d 0%, #1a4a6a 50%, #0d3550 100%);
  padding: 48px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--accent);
}
.header-scanlines {
  position: absolute;
  inset: 0;
  background-color: #f5e600;
  opacity: 0.5;
  background-image:  linear-gradient(135deg, #0a2a3d 25%, transparent 25%), linear-gradient(225deg, #0a2a3d 25%, transparent 25%), linear-gradient(45deg, #0a2a3d 25%, transparent 25%), linear-gradient(315deg, #0a2a3d 25%, #f5e600 25%);
  background-position:  26px 0, 26px 0, 0 0, 0 0;
  background-size: 52px 52px;
  background-repeat: repeat;
  pointer-events: none;
}
.header-content { position: relative; z-index: 1; }
.header-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.site-title {
  font-family: var(--font-hero);
  font-size: clamp(52px, 10vw, 96px);
  color: #c8e6f5;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(200,230,245,0.3);
}
.title-accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(200,230,245,0.3);
}
.header-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(200,230,245,0.55);
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 24px;
  font-style: italic;
}
.header-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  transition: all 0.15s;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--accent);
  color: var(--ribbon-bg);
  border-color: var(--accent-dark);
  box-shadow: 0 3px 0 var(--accent-dark), 0 4px 12px var(--accent-glow);
}
.btn-primary:hover {
  background: #fff700;
  color: var(--ribbon-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--accent-dark), 0 6px 18px var(--accent-glow);
}
.btn-primary:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--accent-dark); }

.btn-ghost {
  background: transparent;
  color: #c8e6f5;
  border-color: rgba(200,230,245,0.4);
}
.btn-ghost:hover {
  background: rgba(200,230,245,0.1);
  border-color: #c8e6f5;
  color: #c8e6f5;
}

/* Ghost buttons inside the light page body */
.page-wrapper .btn-ghost,
.card .btn-ghost {
  color: var(--border-dark);
  border-color: var(--border);
}
.page-wrapper .btn-ghost:hover,
.card .btn-ghost:hover {
  background: var(--panel-dark);
  color: var(--text);
  border-color: var(--border-dark);
}

.btn-sm { font-size: 9px; padding: 7px 14px; }

/* =============================================
   MAIN NAV
   ============================================= */
.main-nav {
  background: var(--nav-bg);
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border-dark);
}
.nav-link {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--nav-text);
  padding: 6px 16px;
  border-radius: var(--radius);
  letter-spacing: 1px;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.nav-link:hover {
  background: rgba(245,230,0,0.15);
  color: var(--accent);
  border-color: rgba(245,230,0,0.3);
}
.nav-link.active {
  background: var(--accent);
  color: var(--ribbon-bg);
  border-color: var(--accent-dark);
  box-shadow: 0 2px 0 var(--accent-dark);
}

/* =============================================
   PAGE LAYOUT
   ============================================= */
.page-wrapper {
  display: grid;
  grid-template-columns: 190px 1fr 185px;
  gap: 12px;
  max-width: 1100px;
  margin: 14px auto;
  padding: 0 12px;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
}
.card-title {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--border-dark);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-footer-row {
  margin-top: 12px;
  text-align: right;
}
.divider {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 12px 0;
}
.update-note {
  font-size: 13px;
  color: var(--text-mid);
}
.welcome-card p { color: var(--text); line-height: 1.7; }

/* =============================================
   SIDEBARS
   ============================================= */
.sidebar-left, .sidebar-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 8px;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all 0.12s;
  display: block;
}
.sidebar-nav a:hover {
  background: var(--panel-dark);
  border-left-color: var(--accent);
  color: var(--text);
}

/* =============================================
   WIDGET: CLOCK
   ============================================= */
.widget-card { background: #f0faff; border-color: var(--border-dark); }
.clock-widget { text-align: center; padding: 6px 0; }
.clock-time {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ribbon-bg);
  letter-spacing: 2px;
  font-weight: 700;
}
.clock-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 3px;
}
.clock-city {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 2px;
}

/* =============================================
   WIDGET: STATUS
   ============================================= */
.status-widget { display: flex; flex-direction: column; gap: 6px; }
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 4px 6px;
  background: rgba(90,172,218,0.1);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.status-label { color: var(--text-dim); font-size: 12px; }
.status-val { color: var(--text); font-size: 13px; }
.status-online { color: #22aa44; font-weight: 700; }

/* =============================================
   STATS GRID
   ============================================= */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.stat-item {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 6px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ribbon-bg);
  font-weight: 700;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* =============================================
   GEAR LIST
   ============================================= */
.gear-list {
  list-style: square;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
}

/* =============================================
   GALLERY GRID (homepage preview)
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-thumb {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.15s;
  display: block;
  background: var(--bg2);
}
.gallery-thumb:hover {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow);
  transform: translateY(-2px);
}
.thumb-img {
  height: 80px;
  background: var(--panel-dark);
}
.thumb-street  { background: linear-gradient(135deg, #a8cce0, #6aaac5); }
.thumb-portrait { background: linear-gradient(135deg, #b0d4e8, #7ab8d5); }
.thumb-nature  { background: linear-gradient(135deg, #a0d4b8, #6ab898); }
.thumb-urban   { background: linear-gradient(135deg, #c0ccda, #90a8bc); }
.thumb-info { padding: 6px 8px 8px; }
.thumb-name {
  font-family: var(--font-display);
  font-size: 9px;
  color: var(--text);
  letter-spacing: 1px;
}
.thumb-count {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
}

/* =============================================
   BLOG PREVIEW
   ============================================= */
.blog-preview {}
.blog-date {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.blog-headline {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* =============================================
   GUESTBOOK
   ============================================= */
.guestbook-entries { display: flex; flex-direction: column; gap: 6px; }
.gb-entry {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 8px;
  background: var(--bg2);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}
.gb-name { font-weight: 700; color: var(--text); }

/* =============================================
   MINI ABOUT (right sidebar)
   ============================================= */
.mini-about { text-align: center; }
.mini-avatar {
  font-size: 40px;
  width: 64px; height: 64px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  background: var(--bg-deep);
  box-shadow: 0 0 12px var(--accent-glow);
}
.mini-name {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text);
  margin-bottom: 2px;
}
.mini-loc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.mini-bio {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* =============================================
   RECENT SHOTS
   ============================================= */
.recent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.recent-slot {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel-dark);
}
/* =============================================
   WEB RINGS
   ============================================= */
.webring {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 4px 0;
}
.wr-name { color: var(--text-mid); font-size: 12px; }
.wr-arrow {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--accent-dark);
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
}
.wr-arrow:hover { background: var(--accent); color: var(--ribbon-bg); border-color: var(--accent-dark); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--ribbon-bg);
  margin-top: 20px;
}
.footer-ribbon {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--border), var(--accent));
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 3px;
}
.footer-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(200,230,245,0.6);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(200,230,245,0.3);
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.page-wrapper-wide { display: block; max-width: 1100px; margin: 14px auto; padding: 0 12px; }
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.album-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.album-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.album-icon { font-size: 22px; }
.album-title { font-family: var(--font-display); font-size: 10px; color: var(--text); letter-spacing: 1px; line-height: 1.5; }
.album-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 64px 64px; gap: 3px; margin-bottom: 10px; border-radius: var(--radius); overflow: hidden; }
.mosaic-cell { background: var(--panel-dark); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { font-family: var(--font-body); font-size: 11px; color: var(--text-dim); }
.mc-street1,.mc-street2,.mc-street3,.mc-street4 { background: linear-gradient(135deg, #a8cce0, #7aacc5); }
.mc-portrait1,.mc-portrait2,.mc-portrait3,.mc-portrait4 { background: linear-gradient(135deg, #b0d4e8, #88b8d4); }
.mc-nature1,.mc-nature2,.mc-nature3,.mc-nature4 { background: linear-gradient(135deg, #a8d4b8, #78b890); }
.mc-urban1,.mc-urban2,.mc-urban3,.mc-urban4 { background: linear-gradient(135deg, #c0ccda, #98aabf); }
.album-meta { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
.album-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin-bottom: 10px; }
.photo-grid-expanded { display: none; margin-top: 10px; border-top: 1px dashed var(--border); padding-top: 10px; }
.photo-grid-expanded.open { display: block; }
.expanded-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.expanded-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--border); cursor: pointer; border-radius: var(--radius); transition: border-color 0.15s; }
.expanded-grid img:hover { border-color: var(--accent-dark); }
.photo-slot { aspect-ratio:1;  background: var(--bg2); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 11px; color: var(--text-dim); padding: 4px; text-align: center; border-radius: var(--radius); }
.upload-hint { font-family: var(--font-body); font-size: 13px; color: var(--text); background: #fffbe6; border: 1px solid var(--accent-dark); padding: 8px; margin-bottom: 8px; border-radius: var(--radius); line-height: 1.6; }
.upload-hint code { background: #fff0a0; padding: 1px 4px; border-radius: 2px; }
.new-album-card { border-style: dashed; opacity: 0.65; }
.new-album-inner { font-family: var(--font-body); font-size: 13px; color: var(--text-dim); text-align: center; padding: 20px 0; line-height: 1.7; }
.new-album-inner code { background: var(--bg2); padding: 1px 4px; }

/* LIGHTBOX */
.lightbox { display:none; position:fixed; inset:0; background:rgba(10,42,61,0.95); z-index:9999; align-items:center; justify-content:center; cursor:pointer; }
.lightbox.open { display:flex; }
.lightbox-inner { text-align:center; }
.lightbox-inner img { max-width:90vw; max-height:80vh; border:2px solid var(--accent); border-radius:var(--radius); box-shadow:0 0 40px var(--accent-glow); }
.lightbox-close { font-family:var(--font-display); font-size:12px; color:var(--accent); margin-top:12px; cursor:pointer; letter-spacing:2px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-layout { display: grid; grid-template-columns: 180px 1fr; gap: 24px; }
.about-avatar-col { text-align: center; }
.big-avatar { font-size: 52px; width: 90px; height: 90px; border: 3px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; background: var(--bg-deep); box-shadow: 0 0 20px var(--accent-glow); }
.avatar-name { font-family: var(--font-display); font-size: 14px; color: var(--text); margin-bottom: 4px; }
.avatar-location { font-family: var(--font-body); font-size: 13px; color: var(--text-dim); margin-bottom: 10px; }
.about-vitals { font-family: var(--font-body); font-size: 13px; line-height: 2; text-align: left; color: var(--text-mid); }
.about-text-col p { line-height: 1.7; margin-bottom: 12px; color: var(--text); }
.gear-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 13px; margin-top: 8px; }
.gear-table th { background: var(--bg-deep); color: var(--text); padding: 7px 10px; border: 1px solid var(--border); text-align: left; font-family: var(--font-display); font-size: 9px; letter-spacing: 1px; }
.gear-table td { padding: 6px 10px; border: 1px solid var(--border); color: var(--text-mid); }
.gear-table tr:hover td { background: var(--bg2); }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-entry {}
.blog-entry-header { margin-bottom: 10px; }
.blog-entry-title { font-family: var(--font-display); font-size: 12px; color: var(--text); margin-bottom: 4px; line-height: 1.5; }
.blog-entry-meta { font-family: var(--font-body); font-size: 12px; color: var(--text-dim); }
.blog-entry-body p { line-height: 1.7; margin-bottom: 10px; color: var(--text); }
.blog-entry-footer { display: flex; gap: 16px; margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--border); font-family: var(--font-body); font-size: 12px; color: var(--text-dim); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 4px; }
.tag { font-family: var(--font-body); font-size: 12px; padding: 2px 8px; border: 1px solid var(--border); color: var(--text-mid); background: var(--bg2); border-radius: 20px; }
.tag:hover { background: var(--accent); color: var(--ribbon-bg); border-color: var(--accent-dark); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-methods { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.contact-method { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 14px; color: var(--text-mid); }
.cm-icon { font-size: 20px; }
.form-note { font-family: var(--font-body); font-size: 13px; background: #fffbe6; border: 1px solid var(--accent-dark); padding: 10px; margin-bottom: 14px; color: var(--text); border-radius: var(--radius); line-height: 1.6; }
.form-note code { background: #fff0a0; padding: 1px 4px; border-radius: 2px; }
.retro-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; flex-direction: column; gap: 4px; }
.form-row label { font-family: var(--font-display); font-size: 8px; color: var(--text-mid); letter-spacing: 1px; }
.form-row input, .form-row textarea { background: var(--bg2); border: 1px solid var(--border); color: var(--text); padding: 9px 12px; font-family: var(--font-body); font-size: 14px; outline: none; transition: border-color 0.15s, box-shadow 0.15s; resize: vertical; border-radius: var(--radius); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-submit { text-align: center; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 800px) {
  .page-wrapper { grid-template-columns: 1fr; }
  .sidebar-left, .sidebar-right { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .ribbon-tag { display: none; }
}
@media (max-width: 480px) {
  .site-title { font-size: 52px; }
}
