:root{
  --bg: #fbfaf7;
  --panel: rgba(255,255,255,0.72);
  --panelSolid: #ffffff;
  --text: #141617;
  --muted: rgba(20, 22, 23, 0.66);
  --line: rgba(20, 22, 23, 0.12);
  --accent: #3b5f4d; /* muted green */
  --accent2: #2f4a3c;
  --beige: #efe6d7;
  --shadow: rgba(16, 24, 40, 0.14);

  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;

  --max: 1180px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(239, 230, 215, 0.7), transparent 60%),
    radial-gradient(1000px 520px at 90% 10%, rgba(59, 95, 77, 0.10), transparent 55%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Background canvas is strictly decorative */
#bg-canvas{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.92;
}

.skipLink{
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 9999;
  background: var(--panelSolid);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.skipLink:focus{ left: 12px; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(20, 22, 23, 0.08);
  background: linear-gradient(to bottom, rgba(251, 250, 247, 0.82), rgba(251, 250, 247, 0.62));
  backdrop-filter: blur(10px);
}

.brand{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
.brand__mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(20, 22, 23, 0.12);
  background: rgba(255,255,255,0.6);
  box-shadow: 0 14px 38px var(--shadow);
}
.brand__mark svg{
  color: var(--accent2);
}
.brand__name{
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.brand__tag{
  margin-left: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.nav{
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav a{
  color: rgba(20, 22, 23, 0.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(20, 22, 23, 0.05);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
  user-select: none;
}
.btn--block{ width: 100%; }
.btn--primary{
  background: linear-gradient(180deg, #151819, #0f1112);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 22px 56px rgba(0,0,0,0.22); }
.btn--secondary{
  background: rgba(255,255,255,0.64);
  border-color: rgba(20, 22, 23, 0.12);
  color: rgba(20, 22, 23, 0.92);
}
.btn--secondary:hover{
  transform: translateY(-1px);
  border-color: rgba(20, 22, 23, 0.20);
  background: rgba(255,255,255,0.78);
}
.btn--ghost{
  background: transparent;
  border-color: rgba(20, 22, 23, 0.12);
}
.btn--ghost:hover{
  background: rgba(20, 22, 23, 0.05);
}

main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px 60px;
}

.hero{
  padding: 44px 0 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.hero__copy{
  width: 100%;
}
.heroCopy{
  padding: 12px 0 0;
}
.kicker{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(20, 22, 23, 0.72);
}
.heroTitle{
  margin: 0 0 12px;
  font-size: clamp(30px, 4.3vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.heroSub{
  margin: 0 0 20px;
  color: rgba(20, 22, 23, 0.70);
  font-weight: 700;
  line-height: 1.6;
  max-width: 58ch;
}
.heroActions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__media{
  display: flex;
  justify-content: center;
}

.heroCard{
  position: relative;
  width: min(980px, 100%);
  height: clamp(420px, 56vh, 620px);
}

.heroCard__image{
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(20,22,23,0.08);
  box-shadow: 0 28px 90px rgba(0,0,0,0.12);
}

.heroCard__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 650ms cubic-bezier(.2,.9,.2,1), filter 650ms cubic-bezier(.2,.9,.2,1);
  filter: saturate(1.05) contrast(1.02);
}
.heroCard__image:hover img{ transform: scale(1.07); }

.heroCard__shade{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 420px at 20% 15%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,0.18), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.30));
  mix-blend-mode: soft-light;
}

.heroCard__image--side{
  inset: auto;
  width: clamp(280px, 36vw, 390px);
  height: clamp(230px, 30vw, 330px);
  right: -10px;
  top: 10px;
  border-radius: 22px;
  z-index: 2;
}
.heroCard__shade--side{
  background:
    radial-gradient(340px 280px at 10% 15%, rgba(239,230,215,0.22), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.32));
}

.section{
  padding: 58px 0 0;
}
.sectionHead{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.sectionEyebrow{
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(20, 22, 23, 0.70);
}
.sectionTitle{
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
}

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

.shot{
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  grid-column: span 3;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(20, 22, 23, 0.10);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}
.shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 650ms cubic-bezier(.2,.9,.2,1), filter 650ms cubic-bezier(.2,.9,.2,1);
  filter: saturate(1.04) contrast(1.01);
}
.shot::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,0.10));
  opacity: 0;
  transition: opacity 260ms ease;
}
.shot:hover{
  transform: translateY(-2px);
  box-shadow: 0 28px 74px rgba(0,0,0,0.14);
  border-color: rgba(59,95,77,0.26);
}
.shot:hover img{ transform: scale(1.06); }
.shot:hover::after{ opacity: 1; }

/* Responsiveness */
@media (max-width: 980px){
  .hero{ padding-top: 26px; }
  .heroCard__image--side{ right: -6px; }
  .galleryGrid{ grid-template-columns: repeat(6, 1fr); }
  .shot{ grid-column: span 3; }
}
@media (min-width: 981px){
  .hero{
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    padding-top: 56px;
  }
  .hero__media{
    justify-content: flex-end;
    grid-column: 2;
  }
  .hero__copy{
    grid-column: 1;
  }
}
@media (max-width: 680px){
  .topbar{ padding: 14px 14px; }
  main{ padding: 0 14px 46px; }
  .nav a{ display: none; }
  .nav .btn--ghost{ display: inline-flex; }
  .heroCard__image--side{ display: none; }
  .galleryGrid{ grid-template-columns: repeat(2, 1fr); }
  .shot{ grid-column: span 1; aspect-ratio: 4/3; }
}

/* Reveal / cinematic layered transitions */
[data-reveal], .reveal{
  opacity: 0;
  transform: translateY(14px) scale(0.99);
  filter: blur(10px);
  transition: opacity 900ms cubic-bezier(.2,.9,.2,1), transform 900ms cubic-bezier(.2,.9,.2,1), filter 900ms cubic-bezier(.2,.9,.2,1);
}
[data-reveal].is-visible, .reveal.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.section--gallery{
  padding-top: 44px;
}

.section--contact{
  padding-top: 64px;
}

.contactGrid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.contactCard{
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(20, 22, 23, 0.10);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: 0 22px 80px rgba(0,0,0,0.08);
}
.contactRow{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px 18px;
  border-bottom: 1px solid rgba(20, 22, 23, 0.08);
}
.contactLabel{
  color: rgba(20, 22, 23, 0.62);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 12px;
}
.contactValue{
  font-weight: 800;
  color: rgba(20, 22, 23, 0.92);
  text-decoration: none;
}
.contactValue:hover{ text-decoration: underline; }
.contactActions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 4px 6px;
}

.futureBlocks{
  margin-top: 18px;
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(239, 230, 215, 0.45);
  border: 1px dashed rgba(59, 95, 77, 0.30);
}
.futureBlock__title{
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.futureBlock__hint{
  color: rgba(20, 22, 23, 0.64);
  font-weight: 700;
  line-height: 1.5;
  font-size: 13px;
}

.contactPreview__frame{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(20, 22, 23, 0.10);
  background: rgba(255,255,255,0.45);
  box-shadow: 0 22px 80px rgba(0,0,0,0.08);
}
.contactPreview__frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.02);
}
.contactPreview__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 360px at 30% 20%, rgba(239,230,215,0.28), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.34));
}

@media (max-width: 980px){
  .contactGrid{ grid-template-columns: 1fr; }
}

.footer{
  padding: 36px 0 10px;
  color: rgba(20, 22, 23, 0.70);
}
.footerInner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(20, 22, 23, 0.08);
  padding-top: 18px;
  font-weight: 800;
}
.footerDot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(59,95,77,0.55);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 12, 12, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}
.lightbox__close{
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightbox__close:hover{ background: rgba(255,255,255,0.14); }
.lightbox__frame{
  width: min(1100px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  box-shadow: 0 50px 140px rgba(0,0,0,0.4);
}
.lightbox__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; }
  [data-reveal], .reveal{ transition: none; opacity: 1; transform: none; filter: none; }
  .shot, .btn{ transition: none; }
}

