/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-transform: uppercase;
}

.gold {
  color: #d4a853;
}

.kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #d4a853;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

.muted {
  color: #6b7280;
  max-width: 420px;
}

.divider {
  width: 50px;
  height: 3px;
  background: #d4a853;
  margin: 1.25rem 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-gold {
  background: linear-gradient(135deg, #d4a853, #b8862d);
  color: #fff;
  border-color: #d4a853;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #c49b3f, #a67720);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #1a1a2e;
}

.btn-outline-gold {
  background: transparent;
  color: #d4a853;
  border-color: #d4a853;
}

.btn-outline-gold:hover {
  background: #d4a853;
  color: #fff;
}

/* ===== HEADER / LOGO ===== */
.header {
  padding: 20px 24px;
}

.header-dark {
  background: #111827;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #d4a853, #b8862d);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
  text-transform: uppercase;
}

.nav a:hover,
.nav a.active {
  color: #d4a853;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 30, 0.88) 0%, rgba(10, 10, 30, 0.65) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  padding: 60px 24px 100px;
}

.hero-content .kicker {
  margin-bottom: 1rem;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content .lead {
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 2.5rem;
}

.hf {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 200px;
}

.hf-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hf-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #d4a853;
  text-transform: uppercase;
}

.hf-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== FEATURES STRIP ===== */
.features {
  background: #f8f6f1;
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.f-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.f-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.feature p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 80px 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

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

.products-intro h2 {
  margin-bottom: 0.75rem;
}

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

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 14px 14px 0;
  text-transform: uppercase;
}

.card p {
  font-size: 0.8rem;
  color: #6b7280;
  padding: 6px 14px 16px;
  line-height: 1.5;
}

/* ===== WHY US ===== */
.why {
  padding: 80px 0;
  background: #f8f6f1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.reasons {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reasons li {
  font-size: 0.95rem;
  color: #374151;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d4a853, #b8862d);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.badge-icon {
  font-size: 1.6rem;
}

.badge-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.badge-sub {
  font-size: 0.7rem;
  opacity: 0.85;
}

.why-image {
  position: relative;
}

.why-image > img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.ideal-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 220px;
}

.ideal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #d4a853;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.ideal-card ul li {
  font-size: 0.8rem;
  padding: 3px 0;
  color: #374151;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: rgba(10, 10, 30, 0.85);
  padding: 40px 48px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

.cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-icon {
  font-size: 2rem;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== FOOTER ===== */
footer {
  background: #111827;
  color: #d1d5db;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

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

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

.footer-brand .logo .logo-title {
  color: #fff;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.6;
  color: #9ca3af;
}

.foot-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-grid ul li {
  font-size: 0.85rem;
  padding: 4px 0;
}

.footer-grid ul li a {
  color: #9ca3af;
  transition: color 0.25s;
}

.footer-grid ul li a:hover {
  color: #d4a853;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  transition: background 0.25s;
}

.socials a:hover {
  background: #d4a853;
}

.copyright {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: #6b7280;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  cursor: pointer;
}

.nav-overlay--visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== CTA MOBILE (inside nav drawer) ===== */
.btn-cta-mobile {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1028px) {
  .burger {
    display: flex;
  }

  .btn-cta {
    display: none;
  }

  .btn-cta-mobile {
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  .header {
    position: relative;
  }

  .header .container {
    flex-wrap: nowrap;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    background: #111827;
    padding: 100px 32px 32px;
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    flex-wrap: nowrap;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 0.85rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .hero-features {
    flex-direction: column;
  }

  .ideal-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cta-text {
    flex-direction: column;
  }
}

/* ===== CONTACT ===== */
.contact-intro {
  padding: 80px 0;
  background: #fff;
}

.contact-info {
  padding: 80px 0;
  background: #f8f6f1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-card-value {
  color: #6b7280;
  font-size: 1.1rem;
}

.contact-card-value a {
  color: #6b7280;
  transition: color 0.25s;
}

.contact-card-value a:hover {
  color: #d4a853;
}

.contact-form-box {
  background: #fff;
  border-radius: 14px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-form-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.contact-form-title {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-form-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
}

.contact-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.contact-hours {
  padding: 80px 0;
  background: #fff;
}

.contact-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 600px;
}

.contact-hours-item {
  background: #f8f6f1;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
}

.contact-hours-day {
  font-weight: 600;
}

.contact-hours-time {
  color: #6b7280;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d4a853;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gallery-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-box {
    padding: 28px 20px;
  }

  .contact-intro,
  .contact-info,
  .contact-hours {
    padding: 48px 0;
  }

  .realisations-section {
    padding: 48px 0;
  }
}
