/* basic reset and variables */
:root{
  --max-width:1100px;
  --accent: #8a7cff; /* Lighter purple for dark theme */
  --muted:#cccccc; /* Lighter gray for dark theme */
  --dark-bg: #0a0a0a; /* Very dark background */
  --radius:10px;
  --gap:18px;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
     color:#ffffff;line-height:1.5;background:var(--dark-bg);}
.container{max-width:var(--max-width);margin:0 auto;padding:32px}

/* header */
.site-header{background:rgba(10,10,10,0.8);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,0.1);position:sticky;top:0;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.site-title{font-size:1.25rem;letter-spacing:0.6px;color:#ffffff;font-family:'Didot','Times New Roman','Garamond',serif;font-weight:200;}
.site-nav a{margin-left:12px;text-decoration:none;color:var(--muted);font-weight:500}
.site-nav a:hover{color:#ffffff;border-bottom:2px solid #ffffff;}

/* footer */
.site-footer{border-top:1px solid rgba(255,255,255,0.1);padding:20px 0;margin-top:40px;text-align:center;color:var(--muted);font-size:0.95rem;background:rgba(10,10,10,0.8);backdrop-filter:blur(10px);}

/* HERO — image with overlay */
.hero {
  margin: 20px auto 20px;
  max-width: 2000px;}

.hero-left {
  position: relative;
  width: 100%;}

.hero-left img {
  width: 80%;/* about 2/3 of horizontal space */
  height: auto;
  display: block;
  border-radius: var(--radius);}

/* Overlay container */
.hero-overlay {
  position: absolute;
  top: 20%;
  left: 80%; /* start roughly where the image ends, adjust */
  transform: translateX(-50%);
  max-width: 320px; /* width of overlay box */
  background: rgba(255, 255, 255, 0.85); /* semi-transparent */
  padding: 16px;
  border-radius: var(--radius);
}

.hero-overlay h2 {
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 12px;}

.hero-overlay p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;}

.hero-headshot {
  width: 50px;
  height: auto;
  border-radius: 20%;
  display: block;
  margin-top: 8px;}

/* MOBILE RESPONSIVE */
@media (max-width: 720px) {
  .hero-left img {
    width: 90%;
    margin: 0 auto;
    display: block;}

  .hero-overlay {
    position: static;
    transform: none;
    max-width: 100%;
    background: none;
    padding: 0;
    text-align: center;
    margin-top: 16px;}

  .hero-headshot {
    margin: 8px auto 0;}}



/* VERTICAL GALLERY */

.gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;}

.gallery-item {
  text-decoration: none;
  color: inherit;
  display: block;}

.gallery-item img {
  width: 100%;
  max-height: 75vh;
  object-fit: cover;
  display: block;}

.gallery-caption {
  margin-top: 12px;
  max-width: 600px;}

.gallery-caption h3 {
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;}

.gallery-item:hover img {
  opacity: 0.95;}

/* HERO — left image, right text layout */
.hero {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 64px auto 96px;
  max-width: 1100px;}

.hero-left img {
  width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);}

.hero-right {
  flex: 1;}

.hero-right h2 {
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 12px;}

.hero-right p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;}

.hero-headshot {
  width: auto;
  height: auto;
  border-radius: 50%;}

/* MOBILE RESPONSIVE */
@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 24px;}

  .hero-left img {
    width: 80%;}

  .hero-headshot {
    margin: 0 auto;}}

/* GALLERY GRID */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;}

/* 3 columns on medium screens */
@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);}}

/* 4 columns on large screens */
@media (min-width: 1200px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);}}

/* Full width gallery on very large screens */
@media (min-width: 1400px) {
  .container {
    max-width: none;
    padding-left: 64px;
    padding-right: 64px;}}

.gallery-item {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;}

.gallery-caption {
  margin-top: 0;
  padding: 15px;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
}

.gallery-caption h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  color: #ffffff;
}

.gallery-caption p {
  font-size: 0.85rem;
}
.gallery-item:hover {
  transform: translateY(-3px);
}
.gallery-item:hover img {
  opacity: 0.95;
  transform: scale(1.02);
  transition: 0.3s ease;
}

