:root{
  --bg:#ffffff;
  --fg:#0f0f10;
  --muted:rgba(15,15,16,0.62);
  --line:rgba(0,0,0,0.08);

  --max: 1180px;
  --pad: 26px;

  --radius: 14px;
  --shadow: 0 12px 35px rgba(0,0,0,0.08);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}

.brand{ display:flex; align-items:center; }
.brand-logo{
  height: 130px;
  width:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  gap: 22px;
  font-family: serif;
  font-size: 17px;
  color: rgba(0,0,0,0.75);
}

.nav a{
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover{
  text-decoration:none;
  border-bottom-color: rgba(0,0,0,0.35);
}
.nav-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 2px;
}
.nav-icon svg{ fill: rgba(0,0,0,0.78); }

/* HERO */
.hero{
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px var(--pad) 20px;
}
.hero-inner{
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 46px;
  box-shadow: var(--shadow);
}

.kicker{
  margin:0 0 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

h1{
  margin:0 0 10px;
  font-family: serif;
  font-weight: 500;
  font-size: 46px;
  letter-spacing: 0.01em;
}

.sub{
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 56ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px var(--pad);
}

.section.alt{
  background: rgba(0,0,0,0.02);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  max-width: none;
}

.section-inner{
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.narrow{
  max-width: 860px;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section-head h2{
  margin:0;
  font-family: serif;
  font-weight: 500;
  font-size: 30px;
}
.section-head p{
  margin:0;
  color: var(--muted);
}

/* GRID (same aspect ratio images = premium look) */

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
}

.tile{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background:#fff;
}

.tile img{
  width:100%;
  height:auto;
  display:block;

  /* consistent portrait “full frame” look */
  aspect-ratio: 2 / 3;
  object-fit: cover; /* premium look; change to contain for zero crop */
}

.tile:hover{
  text-decoration:none;
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.hint{
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ABOUT */
.lead{
  margin: 8px auto 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}

.about-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card{
  background:#fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 20px;
}
.about-card h3{
  margin: 0 0 10px;
  font-family: serif;
  font-weight: 500;
}
.about-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* CONTACT */
.contact-card{
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  background:#fff;
  text-align:center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-links{
  margin-top: 12px;
  color: var(--muted);
}

/* BUTTONS */
.btn{
  display:inline-block;
  border: 1px solid rgba(0,0,0,0.75);
  padding: 12px 16px;
  border-radius: 999px;
  font-family: serif;
  font-size: 16px;
  transition: transform 200ms ease, background 200ms ease;
}
.btn:hover{
  text-decoration:none;
  transform: translateY(-1px);
  background: rgba(0,0,0,0.03);
}
.btn.ghost{
  border-color: rgba(0,0,0,0.25);
  color: rgba(0,0,0,0.70);
}

/* FOOTER */
.footer{
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 26px var(--pad);
  color: rgba(0,0,0,0.6);
  font-size: 13px;
}
.footer-inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  justify-content:center;
  gap: 10px;
  flex-wrap: wrap;
}
.dot{ opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 980px){
  h1{ font-size: 38px; }
  .brand-logo{ height: 54px; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .hero-inner{ padding: 30px; }
}

@media (max-width: 560px){
  .nav{ gap: 14px; font-size: 16px; }
  .grid{ grid-template-columns: 1fr; }
  h1{ font-size: 32px; }
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 9999;
}

.lightbox.open{ display: block; }

.lb-stage{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  cursor: zoom-out; /* visual hint */
}

.lb-img{
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  width: auto;
  height: auto;
  display: block;
  border: 1px solid rgba(0,0,0,0.10);
  background: #fff;
  cursor: default;
}

.lb-close{
  position: fixed;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0,0,0,0.70);
  z-index: 10001;
}

.lb-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,0.75);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 34px;
  line-height: 46px;
  color: rgba(0,0,0,0.70);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  z-index: 10001;
}

.lb-prev{ left: 16px; }
.lb-next{ right: 16px; }

.lb-count{
  position: fixed;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(0,0,0,0.55);
  font-size: 13px;
  z-index: 10001;
}

@media (max-width: 560px){
  .lb-nav{
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 40px;
  }
}