/* ============================================================
   NDEZINES — Main Stylesheet
   Luxury Interior Design | Gold & Dark Theme
   ============================================================ */

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

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

:root {
  --gold:       #c8a96e;
  --gold-light: #e0c99a;
  --gold-dark:  #a07840;
  --dark:       #111111;
  --dark2:      #1c1c1c;
  --dark3:      #2a2a2a;
  --light:      #f8f4ee;
  --light2:     #ede8de;
  --white:      #ffffff;
  --text:       #4a4a4a;
  --text-light: #7a7a7a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--dark);
  transition: left var(--transition);
  z-index: 0;
}
.btn:hover::before { left: 0; }
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--white); border-color: var(--dark); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline::before { background: var(--gold); }
.btn-outline:hover { color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white::before { background: var(--gold); }
.btn-white:hover { color: var(--white); border-color: var(--gold); }

/* ── SECTION HEADINGS ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 18px;
}
.section-header .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.section-header .divider::before,
.section-header .divider::after {
  content: '';
  width: 60px; height: 1px;
  background: var(--gold);
}
.section-header .divider .diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.section-header p {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--text-light);
  font-weight: 300;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: #999;
  padding: 9px 0;
  font-size: 12.5px;
  letter-spacing: .3px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-contact { display: flex; gap: 28px; }
.topbar-contact a {
  color: #ffffff;
  display: flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--gold); }
.topbar-contact svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 26px; height: 26px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 50px; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.topbar-social a:hover { background: var(--gold); color: var(--white); }

/* ── HEADER / NAV ── */
header {
  background: var(--white);
  padding: 0 40px;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0;
  z-index: 500;
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}
.logo a { display: flex; align-items: center; }
.logo img { height: 52px; object-fit: contain; }

nav ul { display: flex; gap: 4px; }
nav ul li { position: relative; }
nav ul li > a {
  display: block;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
  position: relative;
}
nav ul li > a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 16px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
nav ul li:hover > a,
nav ul li.active > a { color: var(--gold); }
nav ul li:hover > a::after,
nav ul li.active > a::after { width: calc(100% - 32px); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-top: 2px solid var(--gold);
  z-index: 600;
}
.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: none;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition), color var(--transition), padding var(--transition);
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--light); color: var(--gold); padding-left: 28px; }
nav ul li:hover > .dropdown { display: block; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.4) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--gold); }

/* ── HOME HERO SLIDER ── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 500px;
  overflow: hidden;
}
.slides-wrapper { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.hero-content {
  position: absolute; inset: 0;
  z-index: 5;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: var(--white);
}
.hero-content .eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white);
  margin-bottom: 22px;
  max-width: 640px;
  animation: fadeUp .8s .15s ease both;
}
.hero-content p {
  font-size: 1.05rem; font-weight: 300;
  max-width: 480px; margin-bottom: 38px;
  color: rgba(255,255,255,.85);
  animation: fadeUp .8s .3s ease both;
}
.hero-content .hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dots button {
  width: 28px; height: 3px;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.hero-dots button.active { background: var(--gold); width: 48px; }
.hero-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white); width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CARDS SECTION (3 cols) ── */
.cards-section { padding: 80px 0; background: var(--light); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  overflow: hidden; height: 230px;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .card-img img { transform: scale(1.07); }
.card-body {
  padding: 28px 30px;
  border-top: 3px solid var(--gold);
}
.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.card-body p {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 20px; font-weight: 300;
}
.card-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { gap: 14px; color: var(--dark); }
.card-link::after { content: '→'; }

/* ── GALLERY SECTION ── */
.gallery-section { padding: 90px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.gallery-grid .g-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.g-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.g-item:hover img { transform: scale(1.08); }
.g-item .overlay {
  position: absolute; inset: 0;
  background: rgba(200,169,110,.0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.g-item:hover .overlay { background: rgba(200,169,110,.45); }
.g-item .overlay svg {
  width: 40px; height: 40px;
  fill: var(--white);
  opacity: 0; transform: scale(.7);
  transition: opacity var(--transition), transform var(--transition);
}
.g-item:hover .overlay svg { opacity: 1; transform: scale(1); }
.gallery-more { text-align: center; margin-top: 40px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
.cta-band-img {
  position: relative; overflow: hidden;
}
.cta-band-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.cta-band:hover .cta-band-img img { transform: scale(1.04); }
.cta-band-text {
  padding: 70px 70px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.cta-band-text .eyebrow {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-band-text p {
  color: rgba(255,255,255,.65);
  font-weight: 300; margin-bottom: 36px;
  line-height: 1.9;
}
.cta-features {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 36px;
}
.cta-feature {
  display: flex; align-items: center;
  gap: 12px; color: rgba(255,255,255,.75);
  font-size: 14px;
}
.cta-feature::before {
  content: '';
  width: 20px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--gold);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 8px;
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 90px 0; background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem; line-height: .8;
  color: var(--gold); opacity: .2;
  position: absolute; top: 18px; right: 24px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
  font-weight: 300; line-height: 1.8;
  color: var(--text); margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--light2);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-light); }

/* ── ABOUT PAGE ── */
.about-section { padding: 90px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 180px;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-text .eyebrow {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.about-text h2 { font-size: 2.6rem; margin-bottom: 20px; }
.about-text p {
  color: var(--text-light); font-weight: 300;
  line-height: 1.9; margin-bottom: 16px;
}
.about-text .btn { margin-top: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 90px;
}
.value-card {
  text-align: center; padding: 40px 28px;
  border: 1px solid var(--light2);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 60px; height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.value-card:hover .value-icon { background: var(--gold); }
.value-icon svg { width: 26px; height: 26px; fill: var(--gold); transition: fill var(--transition); }
.value-card:hover .value-icon svg { fill: var(--white); }
.value-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-light); font-weight: 300; }

/* ── PROJECTS PAGE ── */
.projects-section { padding: 90px 0; }
.projects-filter {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 50px; flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 24px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid var(--light2);
  background: transparent; cursor: pointer;
  transition: var(--transition); color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.project-card-img {
  height: 280px; overflow: hidden;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-info {
  padding: 24px;
  background: var(--white);
  border-top: 3px solid var(--gold);
}
.project-card-info .tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.project-card-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.project-card-info p { font-size: 13px; color: var(--text-light); font-weight: 300; }

/* ── GALLERY PAGE ── */
.gallery-page { padding: 90px 0; }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-page-item {
  overflow: hidden; position: relative;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-page-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-item .overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-page-item:hover .overlay { background: rgba(0,0,0,.4); }
.gallery-page-item .overlay svg {
  width: 48px; height: 48px;
  fill: var(--white);
  opacity: 0; transform: scale(.7);
  transition: var(--transition);
}
.gallery-page-item:hover .overlay svg { opacity: 1; transform: scale(1); }

/* ── CONTACT PAGE ── */
.contact-section { padding: 90px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
}
.contact-info .eyebrow {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.contact-info h2 { font-size: 2.4rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-light); font-weight: 300; margin-bottom: 36px; line-height: 1.9; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid var(--light2);
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.contact-item-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-item-text span { font-size: 14px; color: var(--text-light); font-weight: 300; }
.contact-social { display: flex; gap: 10px; margin-top: 36px; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 14px; font-weight: 700;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--light2);
}
.contact-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}
.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; margin-bottom: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--dark); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1.5px solid var(--light2);
  background: var(--light);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group .error-msg {
  font-size: 12px; color: #c0392b;
  margin-top: 5px; display: none;
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: #c0392b; }
.form-group.has-error .error-msg { display: block; }
.form-submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-submit .btn { min-width: 200px; text-align: center; }
.form-note { font-size: 12px; color: var(--text-light); }

/* Alert messages */
.alert {
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  border-left: 4px solid;
  display: none;
}
.alert.show { display: block; }
.alert-success {
  background: #f0fbf3;
  border-color: #27ae60;
  color: #1e8449;
}
.alert-error {
  background: #fdf0f0;
  border-color: #c0392b;
  color: #a93226;
}

/* ── MAP PLACEHOLDER ── */
.map-section { height: 400px; background: var(--dark3); position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(.5); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 1000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative; max-width: 90vw; max-height: 90vh;
}
.lightbox-img-wrap img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  color: var(--white); font-size: 2.2rem;
  cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--gold); }
.lightbox-nav.prev { right: calc(100% + 16px); }
.lightbox-nav.next { left: calc(100% + 16px); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
}
.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-brand .logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand p {
  font-size: 13.5px; font-weight: 300;
  line-height: 1.9; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 13px; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 22px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 1.5px; background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px; font-weight: 300;
  color: rgba(255,255,255,.55);
  transition: color var(--transition), padding-left var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a::before {
  content: '›'; color: var(--gold); opacity: 0;
  transition: opacity var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.55);
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}
.footer-bottom a { color: var(--gold); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  z-index: 400;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--dark); }

/* ── ANIMATIONS / REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-img { height: 300px; }
  .about-grid { gap: 50px; }
}
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-page-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-grid .g-item:first-child { grid-column: span 2; grid-row: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  nav.open { display: block; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 20px; }
  nav.open ul { flex-direction: column; gap: 0; }
  nav.open ul li > a { padding: 12px 20px; border-bottom: 1px solid var(--light2); }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--light); }
  nav.open ul li:hover .dropdown { display: block; }
}
@media (max-width: 600px) {
  header { padding: 0 20px; }
  .container { padding: 0 20px; }
  section, .contact-section, .about-section, .projects-section, .gallery-page { padding: 60px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; padding: 50px 0 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 30px 24px; }
  .cta-band-text { padding: 40px 30px; }
  .hero-content { padding: 0 6%; }
  .projects-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: 1fr; }
}
