:root {
  --orange: #FF8000;
  --yellow: #F5E003;
  --bg: #080808;
  --bg2: #0d0d0d;
  --bg3: #111111;
  --border: #1c1c1c;
  --border2: #242424;
  --text: #e2e2e2;
  --text2: #a0a0a0;
  --text3: #8A8483;
  --text4: #8A8483;
}

body.light-mode {
  --bg: #f5f5f5;
  --bg2: #ffffff;
  --bg3: #efefef;
  --border: #e0e0e0;
  --border2: #d0d0d0;
  --text: #1a1a1a;
  --text2: #444444;
  --text3: #666666;
  --text4: #666666;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.site {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 20px;
  position: relative;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: background 0.3s;
}

body.light-mode nav { background: rgba(245,245,245,0.92); }

.nav-logo {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-domain, .nav-tag { font-size: 14px; color: var(--text3); letter-spacing: 0.08em; }
.nav-link { font-size: 14px; color: var(--text3); letter-spacing: 0.08em; text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--orange); }
.nav-link:visited { color: var(--text3); }

.nav-pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.accent-bar {
  height: 1.5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 45%, var(--yellow) 100%);
}

.section {
  padding: 28px 28px;
  border-bottom: 0.5px solid var(--border);
  animation: fadeUp 0.6s ease both;
}

.sec-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--text4);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Syne', sans-serif;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0.5px solid var(--border2);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}
.theme-toggle:hover { border-color: var(--orange); }

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-bottom: 0.5px solid var(--border);
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg2);
  border: 0.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.social-btn:hover { background: var(--bg3); border-color: var(--orange); transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; }
.social-btn-paypal:hover { border-color: var(--yellow); }

footer {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-domain { font-size: 14px; color: var(--text4); letter-spacing: 0.1em; font-family: 'Syne', sans-serif; }
.footer-mark { font-size: 14px; color: var(--orange); letter-spacing: 0.08em; font-family: 'Syne', sans-serif; line-height: 1.4;}

/* Shared light-mode icon treatment, using the most common version across current pages */
body.light-mode .social-btn[title="Instagram — Lifestyle"] svg { stroke: #b8a800; }
body.light-mode .social-btn[title="Instagram — Lifestyle"] svg circle[fill="#F5E003"] { fill: #b8a800; }
body.light-mode .social-btn[title="Support via PayPal"] svg { stroke: #b8a800; }
body.light-mode .social-btn[title="Instagram — Cars"] svg { stroke: #cc6600; }
body.light-mode .social-btn[title="Instagram — Cars"] svg circle[fill="#FF8000"] { fill: #cc6600; }
body.light-mode .social-btn[title="TikTok"] svg { stroke: #1a1a1a; }
body.light-mode .accent-bar { filter: brightness(0.85); }
body.light-mode .contact-label { color: var(--text2); }
body.light-mode .link-title { color: #1a1a1a; }

@media (min-width: 1440px) {
  .site { max-width: 900px; }
  nav { max-width: 900px; }
}

@media (min-width: 1920px) {
  .site { max-width: 1080px; }
  nav { max-width: 1080px; }
}

@media (max-width: 600px) {
  .nav-domain { display: none; }
  .nav-right { gap: 8px; }
  .nav-link { font-size: 12px; letter-spacing: 0.04em; }
  .nav-tag { font-size: 12px; letter-spacing: 0.04em; }
  .sec-label { font-size: 12px; }
  .section { padding: 20px 20px; }
  .contact-label { font-size: 11px; letter-spacing: 0.16em; }
  .contact-email { font-size: 15px; }
}

/* SHARED PAGE SYSTEM: index / food / travel */
.hero {
    padding: 52px 28px 40px;
    border-bottom: 0.5px solid var(--border);
    animation: fadeUp 0.6s ease both;
    overflow: hidden;
  }

  .hero-name {
    font-family: 'Arial', sans-serif;
    font-size: clamp(38px, 10vw, 52px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.0;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: 16px;
    color: var(--text3);
    line-height: 1.7;
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.02em;
  }

  .pill-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }

  .pill {
    font-size: 14px;
    letter-spacing: 0.14em;
    color: var(--text3);
    background: var(--bg2);
    border: 0.5px solid var(--border2);
    border-radius: 20px;
    padding: 5px 13px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: pointer;
    display: inline-block;
  }

  .pill:hover { color: var(--text2); border-color: var(--border); }

  .pill-o:hover { border-color: var(--orange); color: var(--orange); }

  .pill-y:hover { border-color: var(--yellow); color: var(--yellow); }

  .pill.active-o { border-color: var(--orange); color: var(--orange); background: rgba(255,128,0,0.08); }

  .pill.active-y { border-color: var(--yellow); color: var(--yellow); background: rgba(245,224,3,0.08); }

  .hero-bg {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center center;
    animation: kenburns 12s ease-in-out infinite;
    transition: opacity 1.2s ease;
    opacity: 0;
  }

  .hero-img-wrap {
    width: 100%;
    height: 760px;
    background: var(--bg2);
    border-radius: 12px;
    border: 0.5px solid var(--border2);
    overflow: hidden;
    position: relative;
  }

  @keyframes kenburns {
    0%   { transform: scale(1.0); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1.0); }
  }

  .bio-text { font-size: 16px; color: var(--text2); line-height: 1.85; font-weight: 300; }

  .links-group { margin-bottom: 22px; }

  .links-group:last-child { margin-bottom: 0; }

  .group-label-o { font-size: 15px; letter-spacing: 0.16em; color: var(--orange); text-transform: uppercase; margin-bottom: 10px; font-weight: 400; }

  .group-label-y { font-size: 15px; letter-spacing: 0.16em; color: var(--yellow); text-transform: uppercase; margin-bottom: 10px; font-weight: 400; }

  .link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg2);
    border-radius: 9px;
    border: 0.5px solid var(--border);
    margin-bottom: 8px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
  }

  .link-card:last-child { margin-bottom: 0; }

  .link-card-o { border-left: 2px solid var(--orange); border-radius: 0 9px 9px 0; }

  .link-card-o:hover { background: #0f0f0f; border-color: var(--orange); }

  .link-card-y { border-left: 2px solid var(--yellow); border-radius: 0 9px 9px 0; }

  .link-card-y:hover { background: #0f0f0f; border-color: var(--yellow); }

  .link-left { display: flex; align-items: center; gap: 13px; }

  .link-icon {
    width: 32px; height: 32px;
    background: var(--bg3);
    border-radius: 7px;
    border: 0.5px solid var(--border2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .link-title { font-size: 15px; font-weight: 500; color: var(--text); font-family: 'DM Sans', sans-serif; }

  .link-handle { font-size: 14px; color: var(--text3); margin-top: 2px; font-weight: 300; }

  .link-arrow { font-size: 16px; color: var(--text4); transition: transform 0.2s, color 0.2s; }

  .link-card:hover .link-arrow { transform: translateX(3px); color: var(--text3); }

  .gallery-wrapper {
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-wrapper::-webkit-scrollbar { display: none; }

  .gallery-track {
    display: flex;
    width: 100%;
  }

  .gallery-page {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .g-cell {
    aspect-ratio: 1;
    background: var(--bg2);
    border-radius: 7px;
    border: 0.5px solid var(--border);
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }

  .g-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .g-cell:hover img { opacity: 0.85; transition: opacity 0.2s; }

  .g-cell-y { border-top: 1.5px solid var(--yellow); }

  .gallery-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; }

  .gallery-arrow {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 0.5px solid var(--border2);
    background: var(--bg2);
    color: var(--text2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-size: 16px;
    user-select: none;
  }

  .gallery-arrow:hover { border-color: var(--yellow); color: var(--yellow); background: var(--bg3); }

  .gallery-arrow:disabled { opacity: 0.25; cursor: default; border-color: var(--border); color: var(--text4); }

  .gallery-dots { display: flex; gap: 6px; align-items: center; }

  .gallery-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }

  .gallery-dot.active { background: var(--yellow); transform: scale(1.3); }

  .contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--bg2);
    border-radius: 9px;
    border: 0.5px solid var(--border);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .contact-row:hover { background: #0f0f0f; border-color: var(--border2); }
  .contact-label { font-size: 12px; letter-spacing: 0.12em; color: var(--text3); text-transform: uppercase; margin-bottom: 4px; font-weight: 400; }
  .contact-email { font-size: 16px; font-weight: 500; color: var(--orange); font-family: 'DM Sans', sans-serif; }

  .lb-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .lb-overlay.active { display: flex; }

  .lb-track-wrap {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }

  .lb-scroller {
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    align-items: center;
  }

  .lb-scroller::-webkit-scrollbar { display: none; }

  .lb-track {
    display: flex;
    align-items: center;
    padding: 0 13%;
    flex-shrink: 0;
  }

  .lb-slide {
    flex-shrink: 0;
    width: 74vw;
    max-width: 600px;
    height: 74vh;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .lb-slide img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .lb-slide:not(.active) {
    opacity: 0.35;
    transform: scale(0.88);
  }

  .lb-slide.active {
    opacity: 1;
    transform: scale(1);
  }

  .lb-close {
    position: absolute;
    top: 20px; right: 24px;
    color: #888; font-size: 28px;
    cursor: pointer; line-height: 1;
    transition: color 0.2s;
    background: none; border: none;
    z-index: 2;
  }

  .lb-close:hover { color: #fff; }

  .lb-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 0.5px solid #333; color: #888;
    font-size: 22px; width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    z-index: 2;
  }

  .lb-arrow:hover { color: #fff; border-color: var(--orange); }

  .lb-prev { left: 16px; }

  .lb-next { right: 16px; }

  .lb-counter {
    margin-top: 16px;
    font-size: 12px; color: #555;
    letter-spacing: 0.1em;
  }

  body.light-mode .group-label-y { color: #b8a800; }
  body.light-mode .link-card-y { border-left-color: #b8a800; }
  body.light-mode .gallery-dot.active { background: #b8a800; }
  body.light-mode .g-cell-y { border-top-color: #b8a800; }
  body.light-mode .link-card-y .link-icon svg { stroke: #b8a800; }
  body.light-mode .link-card-y .link-icon svg circle[fill="#F5E003"] { fill: #b8a800; }

  @media (min-width: 1440px) {
  .hero-img-wrap { height: 880px; }
}

  @media (min-width: 1920px) {
  .hero-img-wrap { height: 960px; }
}

  @media (max-width: 600px) {
  .hero-img-wrap { height: 400px; }
    .stat-bar-num { font-size: 16px; }
    .stat-bar-label { font-size: 11px; letter-spacing: 0.08em; }
    .stats-bar { gap: 8px; padding: 16px 16px; }
    .bio-text { font-size: 15px; line-height: 1.7; }
    .group-label-o, .group-label-y { font-size: 12px; letter-spacing: 0.14em; }
    .contact-row { padding: 16px 18px; }
    .link-title { font-size: 14px; }
    .link-handle { font-size: 13px; }
    .link-card { padding: 10px 14px; }
    .pill { font-size: 12px; padding: 4px 11px; }
	.footer-domain,	.footer-mark { line-height: 1.4;}
}

  @media (max-width: 390px) {
  .hero-img-wrap { height: 400px; }
    .stat-bar-num { font-size: 14px; }
    .stat-bar-label { font-size: 11px; letter-spacing: 0.08em; }
    .stats-bar { gap: 8px; padding: 16px 16px; }
    .bio-text { font-size: 15px; line-height: 1.7; }
    .group-label-o, .group-label-y { font-size: 12px; letter-spacing: 0.14em; }
    .contact-row { padding: 16px 18px; }
    .link-title { font-size: 14px; }
    .link-handle { font-size: 13px; }
    .link-card { padding: 10px 14px; }
    .pill { font-size: 12px; padding: 4px 11px; }
	.hero-sub { font-size: 15px; color: var(--text3); line-height: 1.7; margin-bottom: 22px; font-weight: 300; letter-spacing: 0.02em;}
	.footer-domain,	.footer-mark { line-height: 1.8;}
}

/* Orange variants used by the Cars / index page */
.g-cell-o { border-top: 1.5px solid var(--orange); }
.gallery-dot.active-o,
.gallery-dot.active { background: var(--orange); transform: scale(1.3); }
.gallery-arrow:hover { border-color: var(--orange); color: var(--orange); background: var(--bg3); }

body.light-mode .group-label-o { color: var(--orange); }
body.light-mode .g-cell-o { border-top-color: var(--orange); }
body.light-mode .link-card-o { border-left-color: var(--orange); }
body.light-mode .link-card-o .link-icon svg { stroke: #cc6600; }
body.light-mode .link-card-o .link-icon svg circle[fill="#FF8000"] { fill: #cc6600; }
