/* Minimal, high-end launch style — white background, black text */
:root{
  --max-width:1100px;
  --accent:#0b0b0b;
  --muted:#6b6b6b;
  --muted-2:#bdbdbd;
}
*{box-sizing:border-box}
html,body{height:100%}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
body{
  margin:0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--accent);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.35;
  font-size:17px;
}
.container{max-width:var(--max-width);margin:0 auto;padding:1.5rem}
.site-header{position:sticky;top:0;background:rgba(255,255,255,0.88);backdrop-filter: blur(6px);border-bottom:1px solid rgba(0,0,0,0.04);z-index:40}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:0.6rem 0}
.logo{font-weight:700;text-decoration:none;color:var(--accent);font-size:1rem}
.nav a{margin-left:1rem;text-decoration:none;color:var(--accent);font-weight:600}
/* hamburger menu */
/* hamburger button (static grey on mobile) */
.menu-toggle{display:none;background:none;border:0;padding:0;margin-left:1rem}
.menu-toggle:focus{outline:0}
.menu-toggle .hamburger{width:18px;height:2px;background:var(--muted-2);display:block;position:relative;border-radius:1px}
.menu-toggle .hamburger:before,.menu-toggle .hamburger:after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--muted-2);border-radius:1px}
.menu-toggle .hamburger:before{top:-6px}
.menu-toggle .hamburger:after{top:6px}

.nav{display:flex;gap:1rem}

/* Mobile layout tweaks */
@media (max-width:800px){
  .container{padding:1rem}
  .header-inner{position:relative;padding:0.5rem 0}
  .menu-toggle{display:block}
  /* show right-aligned, compact menu when .nav-open is present on header */
  .site-header .nav{display:none;position:absolute;top:56px;right:0;left:auto;width:min(320px,92vw);background:#fff;padding:0.5rem 0;border:1px solid rgba(0,0,0,0.04);box-shadow:0 8px 24px rgba(0,0,0,0.06);border-radius:6px}
  .site-header.nav-open .nav{display:block}
  .site-header .nav a{display:block;padding:0.6rem 1rem;margin:0;text-align:right;color:var(--accent);font-weight:600}
  .hero{padding:2rem 0}
}
.hero{padding:3rem 0}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:center}
.hero-copy h1{font-family: 'Playfair Display', serif;font-size:clamp(2.25rem,5vw,3.25rem);letter-spacing:-0.02em;margin:0 0 0.45rem;font-weight:700}
.lead{font-size:1.0625rem;color:var(--muted);margin:0 0 0.9rem;max-width:56ch;font-style:italic}
.meta{font-weight:600;margin-bottom:1.5rem;color:var(--muted)}
.btn{display:inline-block;padding:0.7rem 1.15rem;border:1px solid #000;border-radius:6px;text-decoration:none;color:#000;background:transparent;font-weight:600}
.hero-media{display:flex;justify-content:center}
.media-img{width:100%;max-width:560px;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,0.08);display:block}
.panel{padding:1.6rem 0;border-top:1px solid rgba(0,0,0,0.03)}
.panel-title{font-size:0.95rem;margin:0 0 0.8rem;text-transform:uppercase;letter-spacing:0.14em;color:var(--muted);font-weight:700}
.panel-text{color:var(--muted);max-width:66ch;font-size:0.98rem}
.gallery .grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;margin-top:1.5rem}
.card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 6px 24px rgba(0,0,0,0.04);}
.card img{width:100%;height:320px;object-fit:cover;display:block}
.card figcaption{padding:0.75rem 1rem;color:var(--muted);font-size:0.95rem}
.contact a{color:var(--accent);font-weight:600}
.site-footer{border-top:1px solid rgba(0,0,0,0.04);padding:2rem 0;margin-top:3rem}
.footer-inner{display:flex;justify-content:center;align-items:center;flex-direction:column;gap:0.5rem;text-align:center}
.footer-inner small{display:block}
.footer-links a{margin-left:1rem;color:var(--muted);text-decoration:none}

/* Animations */
.fade, .panel{opacity:0;transform:translateY(20px);transition:opacity 600ms ease, transform 600ms ease}
.fade.visible, .panel.visible{opacity:1;transform:none}

/* Responsive */
@media (max-width:800px){
  .hero-grid{grid-template-columns:1fr;gap:1.5rem}
  .media-img{max-width:100%}
  .gallery .grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;gap:0.5rem;text-align:center}
}
