:root {
  --bg: #0f0f10;
  --bg-soft: #171719;
  --panel: rgba(255,255,255,0.05);
  --text: #f6f1e8;
  --muted: #b8afa1;
  --line: rgba(255,255,255,0.08);
  --gold: #d3ab67;
  --gold-soft: #f0d7ab;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(211,171,103,0.18), transparent 20%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 25%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(15,15,16,0.62);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 0;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.logo small {
  color: var(--muted);
  font-size: .78rem;
}

nav {
  display: flex;
  gap: 1.4rem;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.nav-cta,
.btn {
  border-radius: 999px;
  padding: .95rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: .25s ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #181512;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8,8,9,0.48), rgba(8,8,9,0.70)),
    url("images/interior.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(240,215,171,0.16), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.08), transparent 20%),
    linear-gradient(to bottom, rgba(15,15,16,0.05), rgba(15,15,16,0.44));
  z-index: -2;
}

.hero-glow {
  position: absolute;
  width: 42rem;
  height: 42rem;
  top: -8rem;
  right: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,171,103,0.14), transparent 62%);
  filter: blur(20px);
  animation: glowFloat 8s ease-in-out infinite alternate;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 2rem;
  align-items: center;
}

.glass-card {
  background: rgba(10,10,11,0.30);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  letter-spacing: -.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  max-width: 60ch;
  text-shadow: 0 6px 30px rgba(0,0,0,0.28);
}

.hero p,
.section-head p,
.about-grid p,
.promise-list p,
.contact-section p,
.category-head p {
  color: #e6dccf;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  margin: 2rem 0 2.2rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.hero-stats div,
.service-card,
.testimonial-grid blockquote,
.contact-form,
.promise-list > div {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-soft);
}

.hero-stats span {
  color: #ddd1c0;
  font-size: .92rem;
}

.hero-card {
  position: relative;
  min-height: 560px;
}

.floating-panel {
  position: absolute;
  z-index: 2;
  max-width: 270px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16,16,17,.62);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.floating-panel span {
  display: block;
  color: var(--gold-soft);
  font-size: .78rem;
  margin-bottom: .4rem;
}

.floating-panel strong {
  font-size: 1rem;
  line-height: 1.4;
}

.panel-1 {
  top: 5rem;
  left: 1rem;
}

.panel-2 {
  bottom: 5rem;
  right: 1rem;
}

.brands-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.strip-inner {
  padding: 1rem 0;
  text-align: center;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.alt-section {
  background: rgba(255,255,255,0.02);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: .8rem;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 1.4rem;
  transition: transform .3s ease, border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,215,171,0.22);
}

.service-card h3,
.promise-list h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  padding-left: 1rem;
  color: var(--gold-soft);
}

.service-card li {
  margin: .5rem 0;
}

/* PROJECT GALLERIES */
.project-category {
  margin-bottom: 3rem;
}

.category-head {
  margin-bottom: 1rem;
}

.project-category h3 {
  margin: 0 0 .45rem;
  font-size: 1.6rem;
  color: var(--gold-soft);
}

.media-block {
  margin-top: 1.5rem;
}

.media-title {
  margin: 0 0 .8rem;
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.slider,
.video-slider {
  position: relative;
  width: 100%;
  min-height: 460px;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}

.slider::after,
.video-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,16,0.08), rgba(15,15,16,0.28));
  pointer-events: none;
  z-index: 3;
}

.slide,
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease, transform .6s ease;
  cursor: pointer;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slider:hover .slide.active {
  transform: scale(1.02);
}

.video-thumb {
  display: block;
  opacity: 0;
  transition: opacity .8s ease, transform .6s ease;
  cursor: pointer;
}

.video-thumb.active {
  opacity: 1;
  z-index: 2;
}

.video-slider:hover .video-thumb.active {
  transform: scale(1.02);
}

.video-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  pointer-events: none;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 4;
}

/* PROMISE / ABOUT / CONTACT */
.promise-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.promise-list,
.contact-list {
  display: grid;
  gap: 1rem;
}

.promise-list > div {
  padding: 1.25rem;
}

.about-card {
  position: relative;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,16,0.04), rgba(15,15,16,0.8));
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #e6ddcf;
}

.testimonial-grid cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold-soft);
  font-style: normal;
}

.contact-section {
  padding-bottom: 6rem;
}

.contact-form {
  padding: 1.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: .9rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 1rem;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9d9589;
}

.full {
  width: 100%;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-list a:hover {
  color: var(--text);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: linear-gradient(135deg, #25d366, #1cb455);
  color: white;
  border-radius: 999px;
  padding: 1rem 1.2rem;
  font-weight: 800;
  box-shadow: 0 15px 40px rgba(37,211,102,.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

/* GALLERY MODAL */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 2rem;
}

.gallery-modal.open {
  display: flex;
}

.gallery-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-content img,
.gallery-content video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* KEYFRAMES */
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

@keyframes glowFloat {
  from { transform: translateY(0px) translateX(0px); }
  to { transform: translateY(18px) translateX(-10px); }
}

/* TABLET */
@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero-grid,
  .promise-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    min-height: 340px;
  }
}

/* PHONE */
@media (max-width: 700px) {
  .hero-grid,
  .promise-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .testimonial-grid,
  .hero-stats,
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: .8rem 0;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .glass-card {
    padding: 1.3rem;
  }

  .hero-card {
    min-height: 180px;
  }

  .panel-1,
  .panel-2 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-bottom: 1rem;
    max-width: unset;
  }

  .slider,
  .video-slider {
    min-height: 260px;
    height: 260px;
  }

  .video-thumb,
  .slide {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .video-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .video-play-icon {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }

  .gallery-nav {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }

  .gallery-modal {
    padding: 1rem;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}