:root{
  --bg:#ffffff;
  --text:#0b0c10;
  --muted:rgba(11,12,16,.62);
  --border:rgba(11,12,16,.12);
  --panel:rgba(11,12,16,.03);
  --radius:18px;
  --max:1080px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:28px 18px 80px;
}

header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:22px;
}

.brand{
  display:flex;
  align-items:baseline;
  gap:10px;
}
.brand h1{
  font-size:16px;
  letter-spacing:.2px;
  margin:0;
  font-weight:650;
}
.brand .dot{
  width:6px;height:6px;border-radius:999px;
  background:rgba(11,12,16,.35);
  transform:translateY(-1px);
}
.brand .tag{font-size:13px;color:var(--muted)}

.card{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(11,12,16,.02), rgba(11,12,16,.01));
  border-radius:var(--radius);
  padding:18px;
}

.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  margin-top:14px;
}
@media (max-width:860px){.hero{grid-template-columns:1fr}}

.intro h2{
  margin:0 0 10px;
  font-size:36px;
  letter-spacing:-.8px;
  line-height:1.08;
  font-weight:700;
}
.intro p{margin:0 0 12px;color:var(--muted);font-size:15px}

.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px}
.pill{
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  background:rgba(11,12,16,.02);
}
.pill:hover{background:rgba(11,12,16,.04);text-decoration:none}

h3.section-title{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(11,12,16,.72);
}

/* Menu */
.menu{position:relative;display:inline-block}
.menu button{
  appearance:none;
  border:1px solid var(--border);
  background:rgba(11,12,16,.02);
  color:var(--text);
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}
.menu button:hover{background:rgba(11,12,16,.04)}
.chev{opacity:.7;font-size:12px}

.dropdown{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  min-width:190px;
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:14px;
  padding:8px;
  display:none;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.menu.open .dropdown{display:block}

.dropdown a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 10px;
  border-radius:10px;
  font-size:13px;
  color:var(--text);
}
.dropdown a:hover{background:rgba(11,12,16,.04);text-decoration:none}
.dropdown a[data-active="true"]{
  background:rgba(11,12,16,.05);
}

/* Photos grid */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
@media (max-width:860px){.grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.grid{grid-template-columns:1fr}}

.tile{
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  background:rgba(11,12,16,.02);
  min-height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-size:13px;
}
.tile img{width:100%;height:100%;object-fit:cover;display:block}

/* Poetry */
.poem{
  border-left:2px solid rgba(11,12,16,.18);
  padding-left:14px;
  color:rgba(11,12,16,.88);
  font-size:15px;
  white-space:pre-wrap;
}

footer{
  margin-top:26px;
  color:rgba(11,12,16,.45);
  font-size:12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}