:root{
  --bg:#111111;
  --bg-soft:#1a1a1a;
  --panel:#151515;
  --panel-2:#1c1c1c;
  --border:#2a2a2a;
  --text:#ffffff;
  --muted:rgba(255,255,255,0.78);
  --accent:#f7941d;
  --accent-hover:#ffae42;
  --safe-top:env(safe-area-inset-top);
  --safe-right:env(safe-area-inset-right);
  --safe-bottom:env(safe-area-inset-bottom);
  --safe-left:env(safe-area-inset-left);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  padding-top:180px;
  -webkit-tap-highlight-color:transparent;
  overscroll-behavior:none;
}

img{
  max-width:100%;
  display:block;
}

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

.mobile-tagline{
  display:none;
}

@media (max-width:768px){
  body{
    padding-top:100px;
  }
}

/* =========================
   SHARED NAVIGATION
   ========================= */

nav{
  /* position:fixed; */
  position:absolute;
  top:0;
  width:100%;
  background:#000;
  z-index:1000;
  display:grid;
  grid-template-columns:1fr auto 1fr auto;
  align-items:center;
  padding-top:calc(5px + var(--safe-top));
  padding-right:calc(40px + var(--safe-right));
  padding-bottom:5px;
  padding-left:calc(40px + var(--safe-left));
}

.nav-logo{
  grid-column:1;
  display:flex;
  align-items:center;
  justify-self:end;
  padding-right:20px;
  height:150px;
}

.nav-logo img{
  height:100%;
  width:auto;
}

.nav-left{
  grid-column:2;
  justify-self:start;
}

.nav-tagline{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.2;
}

.nav-tagline h1{
  margin:0;
  font-size:2rem;
  font-weight:700;
  color:var(--accent);
  letter-spacing:0.5px;
}

.nav-tagline h2{
  margin:0;
  font-size:1.3rem;
  font-weight:700;
  letter-spacing:0.5px;
}

.nav-right{
  grid-column:3;
  justify-self:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  line-height:1.2;
}

.nav-phone-number{
  font-size:1.6rem;
  font-weight:900;
  color:var(--accent);
  line-height:1.2;
}

.nav-cta{
  font-size:1rem;
  font-weight:500;
  color:#fff;
  line-height:1.2;
  margin-top:2px;
}

.btn{
  display:inline-block;
  margin-top:12px;
  padding:12px 28px;
  background:var(--accent);
  color:#000;
  text-decoration:none;
  font-weight:700;
  border-radius:8px;
  transition:0.25s ease;
}

.btn:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
}

.menu-toggle{
  grid-column:4;
  justify-self:end;
  display:grid;
  width:52px;
  height:52px;
  border:1px solid #333;
  background:#1c1c1c;
  border-radius:12px;
  cursor:pointer;
  place-items:center;
  gap:6px;
  padding:12px;
  transition:0.2s ease;
}

.menu-toggle:hover{
  border-color:var(--accent);
  background:rgba(247,148,29,0.12);
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  border-radius:2px;
  display:block;
  transition:transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* =========================
   SHARED FULLSCREEN MENU
   ========================= */

.desktop-menu{
  position:fixed;
  inset:0;
  z-index:5000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 0.35s ease, visibility 0.35s ease;
  background:
    linear-gradient(rgba(0,0,0,0.84), rgba(0,0,0,0.94)),
    url("images/background_600.jpg") center/cover no-repeat;
}

.desktop-menu.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.desktop-menu__inner{
  min-height:100%;
  display:grid;
  grid-template-columns:minmax(300px, 440px) 1fr;
  gap:48px;
  padding:
    calc(36px + var(--safe-top))
    calc(48px + var(--safe-right))
    calc(36px + var(--safe-bottom))
    calc(48px + var(--safe-left));
}

.desktop-menu__left{
  background:rgba(20,20,20,0.88);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:32px;
  backdrop-filter:blur(10px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.desktop-menu__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:28px;
}

.desktop-menu__brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.desktop-menu__brand img{
  width:66px;
  height:66px;
  object-fit:contain;
  flex:0 0 auto;
}

.desktop-menu__brand-text h3{
  font-size:1.2rem;
  line-height:1.2;
  color:#fff;
}

.desktop-menu__brand-text p{
  color:var(--muted);
  font-size:0.95rem;
  margin-top:4px;
}

.menu-close{
  width:52px;
  height:52px;
  border:1px solid #333;
  background:#1c1c1c;
  border-radius:12px;
  cursor:pointer;
  color:#fff;
  font-size:1.4rem;
  line-height:1;
  transition:0.2s ease;
  flex:0 0 auto;
}

.menu-close:hover{
  border-color:var(--accent);
  background:rgba(247,148,29,0.12);
}

.desktop-menu__intro h2{
  font-size:clamp(1.7rem, 2.4vw, 2.3rem);
  line-height:1.1;
  color:var(--accent);
  margin-bottom:14px;
}

.desktop-menu__intro p{
  color:var(--muted);
  max-width:32ch;
}

.desktop-menu__contact{
  display:grid;
  gap:18px;
  margin-top:34px;
}

.desktop-menu__contact-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:18px 20px;
}

.desktop-menu__contact-label{
  display:block;
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:1.1px;
  color:rgba(255,255,255,0.6);
  margin-bottom:6px;
}

.desktop-menu__contact-value{
  font-size:1.1rem;
  font-weight:700;
  color:#fff;
}

.desktop-menu__phone{
  color:var(--accent);
  font-size:1.35rem;
  font-weight:800;
}

.desktop-menu__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 22px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.16);
  text-decoration:none;
  color:#fff;
  font-weight:600;
  transition:0.25s ease;
}

.btn-outline:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(247,148,29,0.08);
}

.desktop-menu__right{
  display:flex;
  align-items:center;
  justify-content:center;
}

.desktop-menu__nav{
  width:100%;
  max-width:760px;
}

.desktop-menu__nav ul{
  list-style:none;
  display:grid;
  gap:18px;
}

.desktop-menu__nav a{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:20px;
  text-decoration:none;
  color:#fff;
  padding:22px 24px;
  border-radius:20px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
  transition:0.25s ease;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

.desktop-menu__nav a:hover{
  transform:translateX(8px);
  border-color:rgba(247,148,29,0.55);
  background:rgba(247,148,29,0.09);
}

.desktop-menu__link-text strong{
  display:block;
  font-size:clamp(1.35rem, 2vw, 2rem);
  line-height:1.1;
  color:#fff;
}

.desktop-menu__link-text span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:0.98rem;
}

.desktop-menu__arrow{
  font-size:1.4rem;
  color:var(--accent);
  font-weight:700;
}

/* =========================
   HOMEPAGE ONLY
   Use <body class="home-page">
   ========================= */

.home-page header{
  height:640px;
  position:relative;
  padding:240px 20px 300px;
  text-align:center;
  background-image:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../images/background_600.jpg");
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  background-attachment:fixed;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
}

.hero-boxes{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.hero-box{
  background:var(--accent);
  color:#000;
  padding:16px 28px;
  border-radius:8px;
  font-weight:600;
  font-size:1.1rem;
  width:300px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:transform 0.3s ease;
}

.hero-box:hover{
  transform:translateY(-4px);
}

.home-page header h1{
  font-size:2.8rem;
  color:var(--accent);
  margin:0;
}

.home-page header h2{
  margin:0;
}

section{
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
}

section h2{
  text-align:center;
  margin-bottom:40px;
  font-size:2rem;
  color:var(--accent);
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:20px;
}

.service-card{
  background:var(--panel-2);
  padding:25px;
  border-radius:8px;
  text-align:center;
  transition:0.3s;
  border:1px solid #333;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:var(--accent);
}

.parallax-divider{
  height:650px;
  display:flex;
  align-items:center;
  justify-content:center;
  /* text-align:center; */
  text-align:flex-start;
  background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/garden-room.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}

.parallax-divider h2{
  font-size:2.2rem;
  color:var(--accent);
  margin-bottom:20px;
}

.parallax-content h1{
  text-align:center;
  font-weight:600;
  margin-bottom:16px;
}

.parallax-content h3{
  font-weight:400;
  margin-bottom:16px;
}

.contact{
  background:var(--bg-soft);
  border-radius:8px;
  padding:40px;
}

.contact-phone{
  text-align:center;
  margin-top:-20px;
  margin-bottom:30px;
  font-size:1.1rem;
}

.contact-phone a{
  color:var(--accent);
  text-decoration:none;
  font-weight:700;
}

.contact-phone a:hover{
  color:var(--accent-hover);
}

form{
  display:grid;
  gap:15px;
}

input,
textarea{
  padding:12px;
  border:none;
  border-radius:5px;
  font-size:1rem;
  font-family:inherit;
}

textarea{
  resize:vertical;
  min-height:120px;
}

button{
  padding:12px;
  border:none;
  background:var(--accent);
  color:#000;
  font-size:0.95rem;
  font-weight:700;
  border-radius:5px;
  cursor:pointer;
  transition:0.25s ease;
  font-family:inherit;
}

button:hover{
  background:var(--accent-hover);
}

/* =========================
   GALLERY PAGE ONLY
   Use <body class="gallery-page">
   ========================= */

.gallery-hero{
  min-height:420px;
  padding:170px 20px 100px;
  text-align:center;
  background-image:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.68)),
    url("../images/background_600.jpg");
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  display:flex;
  align-items:center;
  justify-content:center;
}

.gallery-hero__content{
  max-width:950px;
  margin:0 auto;
}

.gallery-hero h1{
  font-size:clamp(2.3rem, 5vw, 4rem);
  color:var(--accent);
  line-height:1.05;
  margin-bottom:16px;
}

.gallery-hero p{
  font-size:1.08rem;
  color:rgba(255,255,255,0.88);
  max-width:760px;
  margin:0 auto;
}

.gallery-hero__badges{
  margin-top:28px;
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.gallery-hero__badge{
  background:rgba(247,148,29,0.96);
  color:#000;
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
  font-size:0.95rem;
  box-shadow:0 8px 20px rgba(0,0,0,0.28);
}

.gallery-section{
  max-width:1240px;
  margin:0 auto;
  padding:70px 20px 80px;
}

.gallery-intro{
  text-align:center;
  margin-bottom:34px;
}

.gallery-intro h2{
  font-size:2rem;
  color:var(--accent);
  margin-bottom:12px;
}

.gallery-intro p{
  color:var(--muted);
  max-width:760px;
  margin:0 auto;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.gallery-card{
  position:relative;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 10px 26px rgba(0,0,0,0.24);
  transition:transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card:hover{
  transform:translateY(-6px);
  border-color:rgba(247,148,29,0.65);
  box-shadow:0 18px 34px rgba(0,0,0,0.32);
}

.gallery-card__image-wrap{
  position:relative;
  overflow:hidden;
  aspect-ratio:4 / 3;
  background:#0f0f0f;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.45s ease, opacity 0.35s ease, filter 0.35s ease;
}

.gallery-card:hover img{
  transform:scale(1.08);
  opacity:0.9;
  filter:saturate(1.05);
}

.gallery-card__zoom{
  position:absolute;
  top:14px;
  right:14px;
  background:rgba(0,0,0,0.75);
  color:#fff;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  padding:7px 12px;
  font-size:0.78rem;
  font-weight:600;
  opacity:0;
  transform:translateY(6px);
  transition:opacity 0.28s ease, transform 0.28s ease;
  pointer-events:none;
}

.gallery-card:hover .gallery-card__zoom{
  opacity:1;
  transform:translateY(0);
}

.gallery-card__content{
  padding:16px 18px 18px;
}

.gallery-card__title{
  color:#fff;
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:6px;
}

.gallery-card__text{
  color:var(--muted);
  font-size:0.95rem;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:6000;
  background:rgba(0,0,0,0.94);
  display:none;
  align-items:center;
  justify-content:center;
  padding:
    calc(30px + var(--safe-top))
    calc(20px + var(--safe-right))
    calc(30px + var(--safe-bottom))
    calc(20px + var(--safe-left));
}

.lightbox.active{
  display:flex;
}

.lightbox__inner{
  position:relative;
  max-width:1200px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.lightbox__close{
  position:absolute;
  top:-58px;
  right:0;
  width:48px;
  height:48px;
  border:1px solid #333;
  border-radius:12px;
  background:#1c1c1c;
  color:#fff;
  font-size:1.5rem;
  cursor:pointer;
  transition:0.25s ease;
}

.lightbox__close:hover{
  border-color:var(--accent);
  background:rgba(247,148,29,0.12);
  color:var(--accent);
}

.lightbox__image{
  max-width:100%;
  max-height:78vh;
  border-radius:16px;
  box-shadow:0 24px 50px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.08);
}

.lightbox__caption{
  margin-top:18px;
  text-align:center;
  max-width:820px;
}

.lightbox__caption-title{
  color:var(--accent);
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:6px;
}

.lightbox__caption-text{
  color:rgba(255,255,255,0.84);
  font-size:0.98rem;
}

/* =========================
   SHARED FOOTER
   ========================= */

footer{
  background:#000;
  padding:30px 20px;
  text-align:center;
}

.footer-inner{
  max-width:1100px;
  margin:auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
}

.footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1c1c1c;
  border-radius:8px;
  color:#fff;
  transition:0.25s ease;
}

.footer-social a:hover{
  background:var(--accent);
  color:#000;
  transform:translateY(-2px);
}

.footer-copyright{
  font-size:0.9rem;
  opacity:0.8;
}

.footer-social a{
  width:50px;
  height:50px;
}

.footer-social svg{
  width:35px;
  height:35px;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1024px){
  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:768px){
  nav{
    grid-template-columns:auto 1fr auto;
    padding-top:calc(10px + var(--safe-top));
    padding-right:calc(20px + var(--safe-right));
    padding-bottom:10px;
    padding-left:calc(20px + var(--safe-left));
  }

  .nav-left,
  .nav-right{
    display:none;
  }

  .nav-logo{
    grid-column:1;
    justify-self:start;
    padding-right:0;
    height:80px;
  }

  .menu-toggle{
    grid-column:3;
    justify-self:end;
    width:44px;
    height:44px;
    padding:10px;
  }

  .desktop-menu{
    background:rgba(0,0,0,0.94);
  }

  .desktop-menu__inner{
    grid-template-columns:1fr;
    gap:22px;
    padding:
      calc(20px + var(--safe-top))
      calc(18px + var(--safe-right))
      calc(20px + var(--safe-bottom))
      calc(18px + var(--safe-left));
  }

  .desktop-menu__left{
    border-radius:18px;
    padding:20px;
  }

  .desktop-menu__intro h2{
    font-size:1.6rem;
  }

  .desktop-menu__intro p{
    max-width:none;
  }

  .desktop-menu__contact{
    gap:12px;
    margin-top:22px;
  }

  .desktop-menu__actions{
    margin-top:18px;
  }

  .desktop-menu__nav ul{
    gap:12px;
  }

  .desktop-menu__nav a{
    padding:18px 16px;
    border-radius:16px;
  }

  .desktop-menu__link-text strong{
    font-size:1.25rem;
  }

  .mobile-tagline{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:6px;
    margin-top:20px;
    margin-bottom:30px;
    padding:0 20px;
  }

  .mobile-tagline h1{
    color:var(--accent);
    font-weight:600;
    font-size:2.2rem;
    letter-spacing:0.5px;
    line-height:1.2;
  }

  .mobile-tagline h2{
    font-weight:600;
    font-size:1.4rem;
    letter-spacing:0.5px;
    line-height:1.2;
  }

  .home-page header{
    background-attachment:scroll;
    height:540px;
    padding:40px 20px 40px;
  }

  .hero-boxes{
    flex-direction:column;
    align-items:center;
    margin-top:20px;
  }

  .hero-box{
    width:90%;
  }

  .parallax-divider{
    background-attachment:scroll;
    height:auto;
    min-height:420px;
    padding:60px 20px;
  }

  .contact{
    padding:25px;
  }

  .gallery-hero{
    min-height:360px;
    padding:30px 20px 40px;
    background-attachment:scroll;
  }

  .gallery-hero__badges{
    gap:10px;
  }

  .gallery-hero__badge{
    font-size:0.9rem;
    padding:10px 16px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .lightbox__close{
    top:-52px;
    width:42px;
    height:42px;
  }
}

@media (hover:none) and (pointer:coarse){
  .home-page header,
  .parallax-divider,
  .gallery-hero{
    background-attachment:scroll;
  }

  .gallery-card__zoom{
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  .btn,
  .btn-outline,
  .hero-box,
  .gallery-card,
  .gallery-card img,
  .gallery-card__zoom,
  .desktop-menu,
  .desktop-menu__nav a,
  .menu-toggle,
  .menu-close,
  .lightbox__close,
  .footer-social a,
  button{
    transition:none;
  }
}