/* ============================================================
   Rejuveself — shared shell styles
   Used by the homepage and the Events / Portraits pages.
   The real-estate landing page carries its own inline styles.
   ============================================================ */

:root{
  --ink:#12191C;
  --panel:#1B2530;
  --paper:#F5EFE2;
  --gold:#E8A83D;
  --coral:#FF5C72;
  --yellow:#FFC93C;
  --ink-70: rgba(245,239,226,0.7);
  --ink-45: rgba(245,239,226,0.45);
  --hair: rgba(245,239,226,0.14);

  --paper-ink:#171C1F;
  --paper-ink-70: rgba(23,28,31,0.72);
  --paper-ink-45: rgba(23,28,31,0.5);
  --paper-hair: rgba(23,28,31,0.14);

  --display: 'Bebas Neue', Impact, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --wrap: 1160px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px;}
section{position:relative;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
}

h1,h2,h3{font-family:var(--display);letter-spacing:0.01em;text-transform:uppercase;line-height:1.02;}

.eyebrow{
  font-family:var(--mono); font-size:12.5px; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--gold);
  display:inline-flex; align-items:center; gap:10px;
}
.eyebrow::before{
  content:''; width:7px; height:7px; background:var(--coral);
  border-radius:50%; display:inline-block; flex-shrink:0;
  box-shadow:0 0 0 3px rgba(255,92,114,0.18);
}

.btn{
  font-family:var(--mono); font-weight:600; font-size:14px;
  letter-spacing:0.03em; text-transform:uppercase;
  padding:16px 28px; border-radius:3px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  cursor:pointer; border:1px solid transparent; white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, color .18s ease;
}
.btn:focus-visible{outline:2px solid var(--yellow); outline-offset:3px;}
.btn-primary{background:var(--yellow); color:#1A1400;}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 10px 24px rgba(255,201,60,0.32);}
.btn-ghost{background:transparent; border:1px solid var(--hair); color:var(--paper);}
.btn-ghost:hover{border-color:var(--yellow); color:var(--yellow);}
.btn-arrow{transition:transform .18s ease;}
.btn:hover .btn-arrow{transform:translateX(3px);}

/* ---------- nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(20,24,28,0.86); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--hair);
}
.nav .wrap{display:flex; align-items:center; justify-content:space-between; height:74px; gap:20px;}
.logo{display:inline-flex; align-items:center; gap:9px;}
.logo-dot{
  width:10px; height:10px; border-radius:50%; background:var(--yellow);
  box-shadow:0 0 0 2px rgba(255,201,60,0.25); flex-shrink:0;
}
.logo-text{display:flex; flex-direction:column; line-height:1.1;}
.logo-word{font-family:var(--display); font-size:20px; letter-spacing:0.03em;}
.logo-word .accent{color:var(--gold);}
.logo-tag{
  font-family:var(--mono); font-size:9px; letter-spacing:0.09em;
  text-transform:uppercase; color:var(--ink-45); white-space:nowrap; margin-top:1px;
}
.nav-links{display:none; align-items:center; gap:22px; font-size:13.5px; color:var(--ink-70);}
.nav-links a{white-space:nowrap;}
.nav-links a:hover, .nav-links a[aria-current="page"]{color:var(--paper);}
.nav-right{display:flex; align-items:center; gap:14px; flex-shrink:0;}
.nav-ig{display:inline-flex; color:var(--ink-70);}
.nav-ig:hover{color:var(--gold);}
.nav-ig svg{width:20px; height:20px;}
.nav-cta{display:none; padding:14px 20px;}
@media (min-width:860px){ .nav-links{display:flex;} .nav-cta{display:inline-flex;} }

/* ---------- mobile nav toggle + panel ---------- */
.nav-toggle{
  display:flex; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:38px; height:38px; padding:0; border:0; background:transparent; cursor:pointer; flex-shrink:0;
}
.nav-toggle span{display:block; width:22px; height:2px; background:var(--paper); border-radius:2px; transition:transform .25s ease, opacity .25s ease;}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.nav-toggle:focus-visible{outline:2px solid var(--yellow); outline-offset:3px;}
@media (min-width:860px){ .nav-toggle{display:none;} }

.nav-mobile{
  display:none; flex-direction:column; gap:2px;
  position:fixed; top:74px; left:0; right:0; z-index:98;
  background:rgba(18,24,28,0.98); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--hair);
  padding:6px 24px 22px; max-height:calc(100vh - 74px); overflow-y:auto;
}
.nav-mobile.open{display:flex;}
.nav-mobile a{padding:15px 2px; font-size:15.5px; color:var(--paper); border-bottom:1px solid var(--hair);}
.nav-mobile a.btn{border-bottom:none; margin-top:14px;}
@media (min-width:860px){ .nav-mobile{display:none !important;} }

/* ---------- hero proof strip (home / events / portraits) ----------
   Mirrors the real-estate hero, which reads best of the four: a row of hard
   facts under the CTAs gives the copy column enough weight to sit level with
   the photo instead of floating in the middle of it. */
.page-ctas{display:flex; flex-wrap:wrap; gap:14px;}
.page-proof{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 26px;
  font-family:var(--mono); font-size:12.5px; color:var(--ink-45);
  padding-top:22px; margin-top:28px; border-top:1px solid var(--hair);
}
.page-proof b{color:var(--paper); font-weight:600;}
@media (max-width:520px){ .page-proof{grid-template-columns:1fr;} }

/* ---------- footer ---------- */
footer{border-top:1px solid var(--hair); padding:44px 0;}
.foot-grid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; align-items:center;}
.foot-links{display:flex; gap:20px; flex-wrap:wrap; font-size:13.5px; color:var(--ink-45); align-items:center;}
.foot-links a:hover{color:var(--paper);}
.foot-note{font-size:12.5px; color:var(--ink-45); margin-top:20px; font-family:var(--mono);}
@media (max-width:859px){ footer{padding-bottom:104px;} }

/* ---------- sticky mobile call/book bar ---------- */
.sticky-cta{
  position:fixed; bottom:0; left:0; right:0; z-index:99;
  background:var(--panel); border-top:1px solid var(--hair);
  padding:12px 16px; display:flex; gap:10px;
}
.sticky-cta .btn{padding:14px 14px; font-size:12.5px; white-space:nowrap; gap:8px;}
.sticky-cta .btn-call{flex:0 0 30%; background:var(--coral); color:#fff; border-color:var(--coral);}
.sticky-cta .btn-call:hover{background:#ff7b8f; box-shadow:0 10px 24px rgba(255,92,114,0.32);}
.sticky-cta .btn:last-child{flex:1;}
@media (max-width:340px){ .sticky-cta .btn{font-size:11.5px; padding:13px 10px;} }
@media (min-width:860px){ .sticky-cta{display:none;} }

/* ---------- contact strip (events / portraits) ---------- */
.contact-strip{
  background:radial-gradient(ellipse 800px 480px at 50% 0%, rgba(232,168,61,0.14), transparent 65%), var(--ink);
  padding:88px 0; text-align:center;
}
.contact-strip h2{font-size:clamp(30px,5vw,50px); margin:16px 0 18px;}
.contact-strip p{color:var(--ink-70); font-size:17px; max-width:600px; margin:0 auto 32px;}
.contact-methods{display:flex; flex-wrap:wrap; gap:12px; justify-content:center;}

/* ---------- justified gallery + lightbox ----------
   Every row fills the full width, so the bottom edge is flat at any size.
   Each tile carries its aspect ratio inline as --ar. */
.gal-masonry{display:flex; flex-wrap:wrap; gap:12px; --row-h:250px;}
@media (max-width:1000px){ .gal-masonry{--row-h:215px;} }
@media (max-width:700px){  .gal-masonry{--row-h:180px;} }
@media (max-width:460px){  .gal-masonry{--row-h:150px;} }
.gal-item{
  position:relative;
  flex-grow:var(--ar); flex-shrink:1;
  flex-basis:calc(var(--ar) * var(--row-h));
  height:var(--row-h);
  min-width:0;
  border-radius:8px; overflow:hidden; cursor:zoom-in;
  padding:0; border:0; background:none; line-height:0;
}
.gal-item img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
.gal-item:hover img{transform:scale(1.035);}

/* People galleries (events / portraits): a uniform 3:4 grid instead of justified
   rows. Justified rows stretch a portrait frame far wider than its real aspect,
   and `cover` then crops the head off. A fixed tile plus a crop biased toward the
   top keeps faces intact — and 12 tiles across 4 columns is exactly 3 even rows.
   The lightbox still shows every image uncropped. */
.gal-even{display:grid; grid-template-columns:repeat(4,1fr); gap:12px;}
@media (max-width:1000px){ .gal-even{grid-template-columns:repeat(3,1fr);} }
@media (max-width:700px){  .gal-even{grid-template-columns:repeat(2,1fr);} }
.gal-even .gal-item{
  flex:none; height:auto; aspect-ratio:3/4; width:100%;
}
.gal-even .gal-item img{object-position:50% 22%;}
.gal-item .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:26px 14px 12px; text-align:left;
  font-family:var(--mono); font-size:10.5px; letter-spacing:0.06em; text-transform:uppercase;
  color:#fff; line-height:1.4;
  background:linear-gradient(to top, rgba(10,14,16,0.85), transparent);
  opacity:0; transition:opacity .25s ease;
}
.gal-item:hover .cap, .gal-item:focus-visible .cap{opacity:1;}
.gal-item:focus-visible{outline:2px solid var(--gold); outline-offset:3px;}

.lb{
  position:fixed; inset:0; z-index:200; display:none;
  background:rgba(8,11,13,0.96); align-items:center; justify-content:center; padding:24px;
}
.lb.open{display:flex;}
.lb img{max-width:100%; max-height:82vh; width:auto; border-radius:6px;}
.lb-cap{
  position:absolute; bottom:22px; left:0; right:0; text-align:center;
  font-family:var(--mono); font-size:12px; letter-spacing:0.06em; text-transform:uppercase;
  color:rgba(245,239,226,0.75);
}
.lb-btn{
  position:absolute; background:rgba(245,239,226,0.08); border:1px solid rgba(245,239,226,0.18);
  color:var(--paper); width:46px; height:46px; border-radius:50%; cursor:pointer;
  display:flex; align-items:center; justify-content:center; font-size:20px; line-height:1;
  transition:background .2s ease;
}
.lb-btn:hover{background:rgba(245,239,226,0.18);}
.lb-close{top:22px; right:22px;}
.lb-prev{left:22px; top:50%; transform:translateY(-50%);}
.lb-next{right:22px; top:50%; transform:translateY(-50%);}
@media (max-width:600px){ .lb-prev{left:10px;} .lb-next{right:10px;} .lb-btn{width:40px; height:40px;} }

/* ---------- generic section bits ---------- */
.sec{padding:96px 0;}
.sec-head{max-width:760px; margin-bottom:48px;}
.sec-head h2{font-size:clamp(30px,4.6vw,50px); margin:16px 0 0;}
.sec-lede{font-size:17.5px; color:var(--ink-70); margin-top:18px; max-width:660px;}
.paper-sec{background:var(--paper); color:var(--paper-ink);}
.paper-sec .sec-lede{color:var(--paper-ink-70);}
.paper-sec .eyebrow{color:#A9711A;}
.paper-sec h2, .paper-sec h3{color:var(--paper-ink);}
