/* =====================
   GLOBAL SYSTEM
===================== */
:root {
  --black: #000000;
  --white: #ffffff;
  --red: #d32f2f;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
}
body.menu-open {
  overflow: hidden;
}

/* GLOBAL CENTERING CONTAINER */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Optional polish for ultra-wide */
@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

/* NAV CONTENT */
.nav-container {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  padding-top: 15px;
}
.logo a {
  text-decoration: none;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.1;
}

.logo span {
  font-size: 45px;
  letter-spacing: 4px;
}
/* LOGO WRAPPER */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

/* LOGO IMAGE */
.logo-img {
  height: 130px;
  width: auto;
  display: block;
}

/* LOGO TEXT (EXISTING STYLE PRESERVED) */
.logo-text {
  line-height: 1.1;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-img {
    height: 88px;
  }
}

/* VERY SMALL DEVICES */
@media (max-width: 320px) {
  .logo-img {
    height: 78px;
  }
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 0.7;
}
@media (max-width: 360px) {
  .nav-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .logo a {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .logo span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .menu-toggle span {
    width: 20px;
  }

  .mobile-links a {
    font-size: 18px;
  }

  .mobile-cta {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* Xtreme CASE: ~250px */
@media (max-width: 280px) {
  .logo a {
    font-size: 14px;
  }

  .mobile-links a {
    font-size: 16px;
  }
}

/* CTA */
.cta-btn {
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 4px;
  white-space: nowrap;
}

/* =====================
   MOBILE
===================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
}

/* MOBILE MENU */
/* MOBILE MENU BASE */
/* MOBILE MENU BASE */
/* WRAPPER */
.mobile-menu {
  position: fixed;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 9999;
}

/* BACKDROP (CLICK OUTSIDE AREA) */
.mobile-backdrop {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* DRAWER */
.mobile-drawer {
  width: min(80vw, 320px);
  max-width: 100%;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ACTIVE STATE */
.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu.active .mobile-backdrop {
  opacity: 1;
}

.mobile-menu.active .mobile-drawer {
  transform: translateX(0);
}

/* LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  width: 100%;
  padding: 40px 24px;
}

.mobile-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
}

/* CTA */
.mobile-cta {
  margin-top: 24px;
  background: var(--red);
  padding: 14px 24px;
  border-radius: 4px;
  text-align: center;
}

/* MICRO DEVICES (≈250px) */
@media (max-width: 280px) {
  .mobile-drawer {
    width: 220px;
  }

  .mobile-links a {
    font-size: 16px;
  }
}
/* 🔒 MOBILE MENU SHOULD NOT EXIST ON DESKTOP */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* SHOW HAMBURGER ON MOBILE */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-links {
    display: none;
  }
}

.mobile-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 1px;
}

.mobile-cta {
  margin-top: 24px;
  background: var(--red);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 900px) {
  .nav-links,
  .cta-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
/* INNER PAGES: NAVBAR SHOULD BE SOLID */
.inner-page .navbar {
  background: rgba(0, 0, 0, 0.95);
}

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

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK OVERLAY (MANDATORY) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 7vw, 43px); /* LOWER MIN */
  letter-spacing: 3px;
  line-height: 1.1;
  text-align: left;
}


.hero-content h1 span {
  display: block;
  font-size: clamp(100px, 2vw, 26px);
  letter-spacing: 3px;
  margin-top: 12px;
}

.hero-content p {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #e0e0e0;
}
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 33px;
    letter-spacing: 2px;
  }

  .hero-content h1 span {
    font-size: 44px;
    letter-spacing: 4px;
  }
}
@media (max-width: 280px) {
  .hero-content h1 {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .hero-content h1 span {
    font-size: 41px;
    letter-spacing: 3px;
  }
}

/* CTA */
.hero-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
}
/* MOBILE HERO FALLBACK */
@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero {
    background: url("images/hero-mobile.jpg") center/cover no-repeat;
  }

  .hero-content {
    text-align: center;
  }
}
/* =====================
   SERVICES SECTION
===================== */
.services {
  padding: 100px 0;
  background: var(--black);
}

.services-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 2px;
}

.services-header p {
  margin-top: 16px;
  font-size: 16px;
  color: #cfcfcf;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.service-card {
  position: relative;
  height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}

/* DARK OVERLAY */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  transition: background 0.3s ease;
}

/* TEXT */
.service-card span {
  position: relative;
  z-index: 2;
  font-size: 16px;
  letter-spacing: 1px;
}

/* HOVER (DESKTOP ONLY) */
.service-card:hover::before {
  background: rgba(0,0,0,0.4);
}

/* CTA */
.services-cta {
  margin-top: 60px;
}

.services-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 40px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: opacity 0.25s ease;
}

.services-btn:hover {
  opacity: 0.85;
}

/* =====================
   RESPONSIVE (DEFAULT)
===================== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 80px 0;
  }

  .services-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

  .service-card {
    height: 220px;
  }
}
/* =====================
   GALLERY SECTION
===================== */
.gallery {
  padding: 100px 0;
  background: var(--black);
}

.gallery-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.gallery-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 2px;
}

.gallery-header p {
  margin-top: 16px;
  font-size: 16px;
  color: #cfcfcf;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* DESKTOP HOVER */
@media (hover: hover) {
  .gallery-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
  }
}

/* MOBILE TAP STATE */
.gallery-grid img.active {
  filter: grayscale(0%);
  transform: scale(1.02);
}

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

@media (max-width: 600px) {
  .gallery {
    padding: 80px 0;
  }

  .gallery-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

/* =====================
   BLOG PREVIEW
===================== */
.blogs {
  padding: 100px 0;
  background: var(--black);
}

.blogs-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.blogs-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: 2px;
}

.blogs-header p {
  margin-top: 16px;
  font-size: 16px;
  color: #cfcfcf;
}

/* GRID */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* CARD */
.blog-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
}

.blog-card h3 {
  font-size: 20px;
  letter-spacing: 1px;
}

.blog-card p {
  margin: 16px 0;
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.6;
}

.blog-card a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
}

/* CTA */
.blogs-cta {
  margin-top: 60px;
}

.blogs-btn {
  background: var(--red);
  color: var(--white);
  padding: 14px 40px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =====================
   OWNER SECTION
===================== */
.owner {
  padding: 100px 0;
  background: var(--black);
}

.owner-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.owner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: 1.5px;
}

.owner-content h3 {
  margin-top: 20px;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 500;
}

.owner-intro {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* EXPERIENCE LIST */
.owner-experience {
  margin-top: 28px;
  list-style: none;
  padding: 0;
}

.owner-experience li {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* CTA */
.owner-btn {
  display: inline-block;
  margin-top: 36px;
  background: var(--red);
  color: var(--white);
  padding: 14px 36px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
}

/* IMAGE */
.owner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .owner-image {
    order: -1;
  }

  .owner-content {
    text-align: center;
  }

  .owner-experience {
    display: inline-block;
    text-align: left;
  }
}
/* =====================
   CONTACT SECTION
===================== */
.contact {
  padding: 100px 0;
  background: var(--black);
}

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

/* TEXT */
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: 1.5px;
}

.contact-info p {
  margin-top: 16px;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin-bottom: 16px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* ACTIONS */
.contact-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 14px 32px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 4px;
}

.contact-btn.primary {
  background: var(--red);
  border-color: var(--red);
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 360px;
  border: none;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }
}
/* =====================
   FOOTER
===================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  font-size: 14px;
  color: #bdbdbd;
  letter-spacing: 0.5px;
}
