@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --espresso: #2d1b0e;
  --espresso-dark: #1a0e07;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-pale: #f5ead3;
  --cream: #faf6f0;
  --warm-white: #fffdf9;
  --gray-100: #f8f5f2;
  --gray-200: #eee9e2;
  --gray-400: #b5a99c;
  --gray-600: #7a6e65;
  --gray-800: #3d3530;
  --black: #1a1108;

  --font-heading: 'Playfair Display', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(45,27,14,0.08);
  --shadow-md: 0 8px 32px rgba(45,27,14,0.12);
  --shadow-lg: 0 20px 60px rgba(45,27,14,0.16);
  --shadow-xl: 0 40px 80px rgba(45,27,14,0.20);

  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso);
}

.display-text {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--espresso);
  margin-top: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.8;
}

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: var(--transition);
}

.nav.transparent,
.nav.scrolled,
.nav.dark-nav {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(45,27,14,0.08), var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.nav-logo .logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 2px;
}

.nav.scrolled .nav-logo .logo-sub { color: var(--gray-600); }

/* Logo image (replaces text logo) */
.logo-img,
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav.scrolled .logo-img,
.nav.scrolled .nav-logo-img {
  filter: none;
}

.mm-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

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

.nav-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg { width: 14px; height: 14px; }

.btn-nav {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--espresso-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #000000;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Full-Screen Overlay Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 1010;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 5%;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.mm-logo .logo-main {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  display: block;
}
.mm-logo .logo-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 2px;
  display: block;
}

.mm-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: transparent;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.mm-close svg { width: 16px; height: 16px; }
.mm-close:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.mm-nav {
  padding: 12px 24px;
  flex: 1;
}

.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--espresso);
  padding: 15px 0;
  border-bottom: 1.5px solid rgba(45,27,14,0.25);
  transition: var(--transition);
  width: 100%;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.mm-link:hover, .mm-link.active { color: var(--gold); }

.mm-contact {
  padding: 20px 24px 16px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.mm-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.mm-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

.mm-email {
  font-size: 0.82rem;
  color: var(--gray-400);
  padding-left: 25px;
}

.mm-cta {
  display: none;
}

.offer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--gold);
  color: var(--espresso-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-outline-dark:hover {
  background: var(--espresso);
  color: white;
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--espresso-dark);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.btn:hover svg { transform: translateX(4px); }

/* ===================== PAGE HERO ===================== */
.page-hero {
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--espresso-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg { transform: scale(1); }

.page-hero-content {
  position: relative;
  text-align: center;
  padding: 0 5%;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-top: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===================== SECTIONS ===================== */
.section { padding: 100px 5%; }
.section-sm { padding: 70px 5%; }
.section-lg { padding: 130px 5%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 16px auto 0;
}

.section-header.centered .section-tag {
  justify-content: center;
}

.section-header.centered .section-tag::before { display: none; }
.section-header.centered .section-tag::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ===================== GRID SYSTEMS ===================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* ===================== CARDS ===================== */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-image { transform: scale(1.05); }

.card-body { padding: 28px; }
.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--espresso);
}
.card-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.8;
  color: var(--gold-pale);
  position: absolute;
  top: 24px;
  left: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}

.author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--espresso);
}

.author-info .location {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--espresso-dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand .logo-main {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-top: 20px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.float-btn svg { width: 22px; height: 22px; }

.float-btn:hover { transform: scale(1.1); }

.float-btn-phone {
  background: var(--gold);
  color: var(--espresso-dark);
}

.float-tooltip {
  position: absolute;
  right: 66px;
  background: var(--espresso-dark);
  color: white;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===================== PROCESS STEPS ===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: 0 0 0 8px var(--cream);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  box-shadow: 0 0 0 8px var(--gold-pale);
}

.step-title {
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===================== GALLERY ===================== */
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: white;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso-dark);
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}

.gallery-item:nth-child(3n+1):first-child,
.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,14,7,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info .room-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.gallery-info .room-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--espresso-dark); }

/* ===================== FORM STYLES ===================== */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b5a99c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===================== CONTACT INFO CARDS ===================== */
.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold-pale);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-info-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===================== SERVICES SECTION ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}

.service-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image-wrap img { transform: scale(1.07); }

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--espresso-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.service-body {
  padding: 32px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }

.service-body h3 {
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: 12px;
}

.service-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }
.service-link svg { width: 14px; height: 14px; }

/* ===================== TEAM CARDS ===================== */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,14,7,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }

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

.team-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-social-btn:hover { background: var(--gold); color: var(--espresso-dark); }

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 1.1rem;
  color: var(--espresso);
  margin-bottom: 4px;
}

.team-info .role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================== VALUES/FEATURES ===================== */
.value-card {
  padding: 36px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.value-icon svg { width: 24px; height: 24px; }
.value-card:hover .value-icon { background: var(--gold); color: white; }

.value-card h3 { font-size: 1.1rem; color: var(--espresso); margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: var(--espresso);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-banner .section-tag { justify-content: center; }
.cta-banner .section-tag::before { display: none; }
.cta-banner .section-tag::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  max-width: 700px;
  margin: 16px auto;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== WHY CHOOSE US (SPLIT) ===================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image-wrap {
  position: relative;
}

.split-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.split-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid white;
  box-shadow: var(--shadow-lg);
}

.split-badge {
  position: absolute;
  top: 32px;
  left: -16px;
  background: var(--espresso);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.split-badge .years {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.split-badge .years-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.check-list {
  list-style: none;
  margin: 28px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; }

/* ===================== MATERIALS ===================== */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.material-swatch {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.material-swatch:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }

.material-img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.material-name {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 8px;
  color: var(--gray-600);
  background: white;
}

/* ===================== AWARDS/CERTIFICATIONS ===================== */
.cert-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.cert-badge:hover { border-color: var(--gold-pale); box-shadow: var(--shadow-sm); }

.cert-icon {
  font-size: 2.2rem;
}

.cert-badge h4 { font-size: 0.9rem; color: var(--espresso); margin-bottom: 2px; }
.cert-badge p { font-size: 0.78rem; color: var(--gray-400); }

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--espresso);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 800;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }
.scroll-top svg { width: 18px; height: 18px; }

/* ===================== TESTIMONIAL SLIDER ===================== */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }


/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .materials-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .split-section { gap: 50px; }
  .split-image-accent { right: -16px; bottom: -16px; }
}

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

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-img, .nav-logo-img, .mm-logo-img { height: 80px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image-wrap { order: -1; }
  .split-badge { display: none; }
  .split-image-accent { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 70px 5%; }
  .section-lg { padding: 90px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-cta {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
}

/* ===================== UTILITY ===================== */
.text-gold { color: var(--gold); }
.text-espresso { color: var(--espresso); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.bg-cream { background: var(--cream); }
.bg-espresso { background: var(--espresso); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
