/* ════════════════════════════════════════════════════
   RESET & VARIABLES
════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #8a6d3b;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #222222;
  --cream: #f5f0e8;
  --text: #b0a898;
  --px: clamp(1.5rem, 5vw, 4rem);
  --py: clamp(3.5rem, 8vw, 7rem);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem var(--px);
  background: linear-gradient(to bottom, rgba(10,10,10,.95), transparent);
  transition: background .4s ease;
  min-height: 75px;
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(201, 169, 110, 0.13);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2px;
}

.nav-dropdown-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-dropdown-btn span {
  font-size: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-dropdown-btn.open span {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--dark2);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  z-index: 300;
}

.nav-dropdown-content.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-content a {
  display: block;
  padding: 0.9rem 1.3rem;
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-dropdown-content a:last-child {
  border-bottom: none;
}

.nav-dropdown-content a:hover {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  padding-left: 1.6rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-dropdown-menu {
  width: 100%;
  max-width: 300px;
}

.mobile-dropdown-btn {
  width: 100%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 2px;
}

.mobile-dropdown-btn span {
  font-size: 0.5rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-btn.open span {
  transform: rotate(180deg);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  margin-top: 1rem;
  gap: 0.5rem;
}

.mobile-dropdown-content.open {
  display: flex;
}

.mobile-dropdown-content a {
  background: rgba(201, 169, 110, 0.1);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 3px;
}

.mobile-dropdown-content a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.7);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 12rem var(--px) clamp(3rem, 8vw, 6rem);
  max-width: 950px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-title-small {
  display: block;
  font-size: 0.65em;
  line-height: 1.3;
  margin-top: 0.5rem;
  color: var(--text);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}

.hero-stat {
  flex: 1 1 140px;
  padding: 1.5rem var(--px);
  border-right: 1px solid rgba(201, 169, 110, 0.12);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.4rem;
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.15);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(201, 169, 110, 0.25);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  padding: 1rem 2.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 2px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.15);
}

/* ════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════ */

.marquee-bar {
  background: var(--gold);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2rem;
}

.marquee-dot {
  color: rgba(0, 0, 0, 0.3);
}

/* ════════════════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════════════════ */

.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label.center {
  justify-content: center;
}

.section-label.center::before {
  display: none;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════════ */

.about {
  background: var(--dark);
  padding: var(--py) var(--px);
}

.about-text p {
  color: var(--text);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.3rem;
  font-size: 1rem;
}

.about-text strong {
  color: var(--cream);
  font-weight: 400;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.about-feat-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════ */

.services {
  padding: var(--py) var(--px);
  background: var(--black);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-header p {
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.1);
}

.service-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--dark2);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════
   CONSTRUCTION SECTION
════════════════════════════════════════════════════ */

.construction-section {
  background: var(--dark);
  padding: var(--py) var(--px);
}

.construction-header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 3rem;
}

.construction-cta {
  background: var(--dark2);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.construction-cta:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 15px 50px rgba(201, 169, 110, 0.08);
}

.construction-left {
  padding: 3.5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.construction-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.3rem;
  color: var(--cream);
}

.construction-left h3 em {
  color: var(--gold);
  font-style: italic;
}

.construction-left > p {
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 400px;
  font-size: 0.98rem;
}

.construction-left .checklist {
  margin-bottom: 2.5rem;
}

.construction-left .btn-primary {
  align-self: flex-start;
}

.construction-right {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.construction-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.65);
  transition: all 0.5s ease;
}

.construction-cta:hover .construction-right img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(0.8);
}

.construction-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark2) 0%, transparent 50%);
  z-index: 1;
}

/* ════════════════════════════════════════════════════
   INSPECTION SECTION
════════════════════════════════════════════════════ */

.inspection-section {
  background: var(--black);
  padding: var(--py) var(--px);
}

.inspection-cta {
  background: var(--dark2);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.inspection-cta:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 15px 50px rgba(201, 169, 110, 0.08);
}

.insp-left {
  padding: 3.5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insp-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.3rem;
  color: var(--cream);
}

.insp-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.insp-left > p {
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.2rem;
  max-width: 400px;
  font-size: 0.98rem;
}

.insp-left .btn-primary {
  align-self: flex-start;
}

.inspection-highlight {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
  background: rgba(201, 169, 110, 0.08);
  border-left: 3px solid var(--gold);
  margin-bottom: 2rem;
  border-radius: 2px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--cream);
  font-weight: 300;
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.insp-right {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}

.insp-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.65);
  transition: all 0.5s ease;
}

.inspection-cta:hover .insp-right img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(0.8);
}

.insp-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark2) 0%, transparent 50%);
  z-index: 1;
}

/* ════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════ */

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: all 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75) saturate(0.9);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
}

.coverage-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.coverage-item {
  font-size: 0.85rem;
  color: var(--cream);
  line-height: 1.5;
}

.coverage-item strong {
  color: var(--gold);
  font-weight: 600;
}

/* ════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════ */

.contact {
  background: var(--dark2);
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contact-info h2 em {
  color: var(--gold);
  font-style: italic;
}

.contact-info > p {
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2.5rem;
  font-size: 0.98rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  border-radius: 3px;
}

.contact-detail-text small {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}

.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 300;
}

.contact-detail-text a {
  color: var(--cream);
  transition: color 0.3s ease;
}

.contact-detail-text a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: all 0.3s ease;
  border-radius: 2px;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(176, 168, 152, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(34, 34, 34, 0.8);
}

.form-group select option {
  background: var(--dark);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.15);
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.25);
}

.form-submit:active {
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */

footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding: 3rem var(--px) 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.75rem;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-copy {
  font-size: 0.62rem;
  color: var(--text);
  letter-spacing: 0.1em;
  font-weight: 300;
  opacity: 0.6;
}

.footer-designed {
  font-size: 0.58rem;
  color: var(--text);
  letter-spacing: 0.1em;
  opacity: 0.4;
}

.footer-designed a {
  color: inherit;
  transition: opacity 0.3s ease;
}

.footer-designed a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ════════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════
   RESPONSIVE - TABLET (≤900px)
════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .nav-links,
  .nav-dropdown {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stat {
    flex: 1 1 120px;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .construction-cta,
  .inspection-cta {
    grid-template-columns: 1fr;
  }

  .construction-left,
  .insp-left {
    padding: 2.5rem 2rem;
  }

  .construction-right,
  .insp-right {
    min-height: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item:first-child {
    grid-row: 1;
    grid-column: 1 / 3;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE - MOBILE (≤560px)
════════════════════════════════════════════════════ */

@media (max-width: 560px) {
  .hero-content {
    padding-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 calc(50% - 1px);
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(201, 169, 110, 0.12);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.8rem 1.4rem;
  }

  .construction-left,
  .insp-left {
    padding: 2rem 1.5rem;
  }

  .construction-right,
  .insp-right {
    min-height: 220px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }

  .gallery-item:first-child {
    grid-row: 1;
    grid-column: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.9rem 1.8rem;
    font-size: 0.68rem;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* ════════════════════════════════════════════════════
   FIX MENU MOBILE
════════════════════════════════════════════════════ */

@media (max-width: 900px) {

  .nav-links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(10,10,10,0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: left 0.4s ease;
    z-index: 500;
  }

  .nav-links.open {
    left: 0;
  }
}