/* ======================
   Font
====================== */
@font-face {
  font-family: 'Hadassah';
  src: url('fonts/Hadassah.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --orange:#ff5a1f;
  --black:#0b0b0c;
  --white:#ffffff;
  --ink:#111213;
  --muted: rgba(0,0,0,.65);
  --mutedW: rgba(255,255,255,.75);
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Hadassah', 'Assistant', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  text-align:right;
  color:var(--ink);
  background: var(--orange);
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* ======================
   Topbar
====================== */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.topbar__wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brand{min-width:220px}
.brand__name{font-weight:800; font-size:16px; letter-spacing:.2px}
.brand__sub{font-size:12px; color:var(--muted)}
.nav{
  display:flex; gap:8px; flex-wrap:wrap;
  align-items:center; justify-content:center;
}
.nav a{
  font-size:13px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid transparent;
}
.nav a:hover{border-color: rgba(0,0,0,.08); background: rgba(0,0,0,.03)}

/* ======================
   Buttons
====================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.65);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.12)}
.btn--primary{
  background: var(--white);
  border-color: rgba(0,0,0,.10);
}
.btn--dark{
  background: var(--black);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.btn--ghost{
  background: transparent;
  border-color: rgba(0,0,0,.12);
}
.btn--big{padding:14px 18px; font-size:15px}

/* ======================
   Hero
====================== */
.hero{
  position:relative;
  min-height: calc(100vh - 58px);
  background: var(--hero) center/cover no-repeat;
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,90,31,.18), rgba(255,90,31,.50));
}
.hero__inner{
  position:relative;
  min-height: calc(100vh - 58px);
  display:flex; align-items:flex-end;
  padding: 0 18px 70px;
}
.hero__copy{
  max-width: 560px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.hero h1{
  margin:0;
  font-size: clamp(40px, 6vw, 68px);
  line-height:1.02;
}
.lead{
  margin:10px 0 16px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: rgba(0,0,0,.78);
}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap}
.hero__chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
.chip{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.06);
  font-size:13px;
  font-weight:700;
}
.hero__scroll{
  position:absolute; bottom:16px; left:16px;
  color: rgba(255,255,255,.9);
  font-weight:800;
  letter-spacing:.2px;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ======================
   Sections
====================== */
.section{padding: 70px 0}
.section--light{background: var(--white)}
.section--orange{background: var(--orange)}
.section--dark{background: var(--black); color: var(--white)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0; font-size: clamp(30px, 3.6vw, 44px)}
.section__head p{margin:8px 0 0; color: rgba(0,0,0,.75); font-weight:700}
.section--dark .section__head p{color: var(--mutedW)}

/* ======================
   Split layout
====================== */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.split--reverse{grid-template-columns: .95fr 1.05fr}
.split__media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
}
.split__text{
  padding: 10px 4px;
}
.split__text h2{
  margin:0 0 12px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height:1.05;
}
.split__text p{margin: 0 0 12px; font-size:18px; color: rgba(0,0,0,.75); font-weight:700}
.section--dark .split__text p{color: var(--mutedW)}
.big{font-size:20px !important; line-height:1.7}

.bullets{
  margin: 14px 0 14px;
  padding: 0 18px 0 0;
  color: rgba(0,0,0,.72);
  font-weight:700;
}
.bullets li{margin: 6px 0}

.textlink{
  display:inline-block;
  margin-top: 8px;
  font-weight:900;
  border-bottom: 2px solid rgba(0,0,0,.18);
  padding-bottom:2px;
}
.textlink:hover{border-bottom-color: rgba(0,0,0,.35)}

/* ======================
   Masonry gallery
====================== */
.masonry{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.cardimg{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.25);
}
.cardimg img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .25s ease;
}
.cardimg:hover img{transform: scale(1.06)}

.masonry .cardimg:nth-child(1){grid-column: span 5; min-height: 420px}
.masonry .cardimg:nth-child(2){grid-column: span 7; min-height: 420px}
.masonry .cardimg:nth-child(3){grid-column: span 7; min-height: 420px}
.masonry .cardimg:nth-child(4){grid-column: span 5; min-height: 420px}

/* ======================
   Mini cards
====================== */
.mini-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.mini{
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 14px 14px;
}
.mini__t{font-weight:900; margin-bottom:6px}
.mini__s{color: rgba(0,0,0,.7); font-weight:700; font-size:14px}

/* ======================
   Reviews
====================== */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.review p{margin:0 0 10px; font-size:16px; line-height:1.7}
.review__by{color: var(--mutedW); font-weight:900}

/* ======================
   Contact
====================== */
.contact{
  display:flex;
  justify-content:center;
}
.contact__copy{
  max-width: 760px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: var(--radius);
  padding: 24px 18px;
  box-shadow: var(--shadow);
}
.contact__copy h2{margin:0 0 10px; font-size: clamp(28px, 3.8vw, 44px); line-height:1.1}
.contact__copy p{margin:0 0 14px; color: rgba(0,0,0,.75); font-weight:700}
.contact__actions{display:flex; gap:10px; flex-wrap:wrap}
.contact__hint{margin-top:10px; color: rgba(0,0,0,.60); font-weight:800; font-size:13px}

/* ======================
   Footer
====================== */
.footer{
  background: rgba(255,255,255,.75);
  border-top: 1px solid rgba(0,0,0,.06);
}
.footer__wrap{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding: 16px 0;
  font-weight:800;
}
.footer__links{display:flex; gap:12px}
.footer__links a{opacity:.75}
.footer__links a:hover{opacity:1}

/* ======================
   Sticky WA
====================== */
.sticky-wa{
  position:fixed;
  bottom: 18px;
  left: 18px;
  z-index: 90;
  background: #111;
  color:#fff;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight:900;
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.12);
  transform: translateZ(0);
}
.sticky-wa:hover{transform: translateY(-2px)}

/* ======================
   Modal
====================== */
.modal{position:fixed; inset:0; display:none; z-index:100}
.modal.is-open{display:block}
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position:relative;
  width: min(980px, 92vw);
  margin: 7vh auto;
  background: #0f0f10;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.modal__x{
  position:absolute;
  top:10px; left:10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}
.modal__frame{
  aspect-ratio: 16/9;
}
.modal__frame iframe{
  width:100%; height:100%;
  border:0;
}

/* ======================
   Reveal animations
====================== */
[data-reveal]{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* ======================
   Responsive
====================== */
@media (max-width: 980px){
  .nav{display:none}
  .split{grid-template-columns: 1fr; gap: 18px}
  .split--reverse{grid-template-columns: 1fr}
  .masonry{grid-template-columns: 1fr; gap: 12px}
  .masonry .cardimg{min-height: 360px !important; grid-column: auto}
  .mini-cards{grid-template-columns: 1fr}
  .reviews{grid-template-columns: 1fr}
  .hero__inner{padding-bottom: 52px}
  .hero__copy{max-width: 92vw}
}

@media (prefers-reduced-motion: reduce){
  [data-reveal]{transition:none}
  .btn{transition:none}
  .cardimg img{transition:none}
}
