
:root{
  --sage: #7A8F7A;
  --sageDeep: #566B56;
  --taupe: #6F6A63;
  --beige: #EFE7DD;
  --ink: #1F2937;
}
html, body { height: 100%; }
body { margin:0; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; color: var(--ink); background: white; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1152px; margin: 0 auto; padding: 0 16px; }
.topbar { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #eee; background: rgba(255,255,255,.85); backdrop-filter: blur(10px); }
.topbar-inner { display:flex; align-items:center; justify-content: space-between; padding: 12px 0; gap: 12px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand-dot { height:36px; width:36px; border-radius: 16px; background: var(--sage); }
.brand-title { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
.brand-sub { font-size: 12px; color: var(--taupe); line-height: 1.1; }
.nav { display:none; gap: 18px; }
.nav a { font-size: 14px; }
.nav a:hover { opacity: .8; }
.actions { display:flex; align-items:center; gap: 10px; }
.btn { display:inline-flex; align-items:center; justify-content:center; border-radius: 16px; padding: 10px 14px; font-weight: 700; font-size: 14px; border:1px solid #e5e7eb; background: white; }
.btn:hover{ background:#f9fafb; }
.btn-primary{ background: var(--sageDeep); color:white; border-color: transparent; }
.btn-primary:hover{ opacity:.92; background: var(--sageDeep); }
.menu { position: relative; }
summary { list-style: none; }
summary::-webkit-details-marker{ display:none; }
.menu-panel { position:absolute; right:0; margin-top: 10px; width: 260px; border:1px solid #e5e7eb; border-radius: 16px; background:white; box-shadow: 0 10px 25px rgba(0,0,0,.08); overflow:hidden; }
.menu-panel a { display:block; padding: 10px 12px; border-radius: 12px; font-size: 14px; }
.menu-panel a:hover { background:#f9fafb; }
.section { padding: 56px 0; }
.h1 { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.lead { color: var(--taupe); line-height: 1.6; }
.grid { display:grid; gap: 16px; }
.card { border:1px solid #e5e7eb; background:white; border-radius: 28px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.chip { display:inline-flex; align-items:center; border:1px solid #e5e7eb; background:white; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--taupe); }
.soft { background: var(--beige); border-radius: 16px; padding: 16px; }
.muted { color: var(--taupe); }
.small { font-size: 12px; }
.xs { font-size: 11px; }
.list { padding-left: 18px; }
.list li { margin: 6px 0; color: var(--taupe); }
.photo-grid { display:grid; gap: 16px; }
.photo { aspect-ratio: 16/9; border-radius: 22px; border:1px solid #e5e7eb; background:white; overflow:hidden; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.photo img{ width:100%; height:100%; object-fit: contain; object-position: center; display:block; }
.footer { border-top:1px solid #eee; padding: 40px 0; }
.footer-links { display:flex; flex-wrap: wrap; gap: 14px; align-items:center; }

@media (min-width: 1024px){
  .nav{ display:flex; }
  .menu{ display:none; }
}
@media (max-width: 640px){
  .h1{ font-size: 34px; }
}
