/* ============================================
   AMAL HOMES LLC — MAIN STYLESHEET
   www.amalhomesllc.com
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark-gray: #1a1a1a;
  --mid-gray: #444444;
  --light-gray: #888888;
  --border-gray: #e0e0e0;
  --off-white: #f8f7f5;
  --white: #ffffff;
  --blue: #1a3a5c;
  --blue-mid: #2457a0;
  --blue-light: #3a6fd8;
  --blue-pale: #e8f0fc;
  --gold: #c4a96d;
  --gold-light: #d4bc8a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  --nav-height: 80px;
  --section-pad: 72px;
  --container-max: 1280px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--off-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: var(--section-pad) 0; }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--off-black); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }

/* --- Typography --- */
.display-text {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; }
h4 { font-size: 1.25rem; font-weight: 500; }
p { font-size: 0.9375rem; line-height: 1.75; color: var(--mid-gray); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: block;
  margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,0.6); }

.section-title {
  margin-bottom: 40px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 560px; }
.section-title--center { text-align: center; }
.section-title--center p { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,169,109,0.35);
}
.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}
.nav--transparent {
  background: transparent;
}
.nav--scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav--white {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav--white .nav__logo { color: var(--off-black); }
.nav--white .nav__link { color: var(--off-black); }
.nav--white .nav__cta { background: var(--blue); color: var(--white); border-color: var(--blue); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__item { position: relative; }
.nav__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link:hover { color: var(--gold); }
.nav__link--has-dropdown .nav__chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  display: inline-block;
}
.nav__item:hover .nav__chevron {
  transform: rotate(225deg) translateY(2px);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px 0 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  /* Invisible top padding so mouse can travel from link to dropdown */
  margin-top: 0;
}
/* Invisible bridge so mouse can move from nav link to dropdown without gap */
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
  z-index: 1;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown-link {
  display: block;
  padding: 11px 22px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--off-black);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.nav__dropdown-link:hover {
  background: var(--off-white);
  color: var(--blue);
  padding-left: 28px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav__phone:hover { color: var(--gold); }
.nav--white .nav__phone { color: var(--mid-gray); }

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: all var(--transition);
}
.nav__cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,169,109,0.4);
}

/* Mobile Nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav--white .nav__hamburger span { background: var(--off-black); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--off-black);
  z-index: 999;
  padding: 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-sub {
  padding-left: 20px;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   HERO — VIDEO/SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.4) 50%,
    rgba(10,10,10,0.15) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 460px;
  margin-bottom: 44px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.5); opacity: 0.8; }
}

/* Slide dots */
.hero__dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.hero__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Hero stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
}
.hero__stat {
  flex: 1;
  padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.about__visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__visual:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--blue);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  color: var(--gold);
}
.about__badge-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.about__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__content h2 { margin-bottom: 24px; color: var(--off-black); }
.about__content p { margin-bottom: 20px; }
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}
.about__pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about__pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
}
.about__pillar h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--off-black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about__pillar p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 56px;
  width: fit-content;
}
.projects-tab {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.projects-tab.is-active {
  background: var(--blue);
  color: var(--white);
}
.projects-tab:hover:not(.is-active) {
  background: var(--off-white);
  color: var(--off-black);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.projects-panel { display: none; }
.projects-panel.is-active { display: block; }

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  color: inherit;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__image img { transform: scale(1.06); }
.project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.project-card__badge--sold { background: var(--mid-gray); }
.project-card__badge--rent { background: var(--gold); }
.project-card__price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10,10,10,0.85);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.project-card__body {
  padding: 24px 24px 20px;
}
.project-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--off-black);
  margin-bottom: 6px;
}
.project-card__address {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.project-card__specs {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-gray);
}
.project-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid-gray);
}
.project-card__spec-icon { color: var(--blue); font-size: 0.9rem; }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
}
.team-card__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--off-white);
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  font-weight: 500;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--off-black);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--light-gray);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--blue);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
}
.cta-band .btn { margin: 0 10px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 40px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--off-black);
}
.contact-detail__value a { transition: color var(--transition); }
.contact-detail__value a:hover { color: var(--blue); }

/* Contact Form */
.contact-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-black);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--off-black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  line-height: 1.5;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-pale);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.8125rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #2e7d32;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 0.8125rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.8375rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__link::before {
  content: '—';
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0;
  width: 0;
  transition: all var(--transition);
  overflow: hidden;
}
.footer__link:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer__link:hover::before {
  opacity: 1;
  width: 16px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8375rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer__contact-item a {
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer__copy { color: rgba(255,255,255,0.3); }
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-hero__breadcrumb a:hover { color: var(--gold); }
.page-hero__breadcrumb span { color: var(--gold); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.page-hero__address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.page-hero__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 8px;
}

/* Project Body */
.project-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 60px 0;
}
.project-body__main {}
.project-body__sidebar {}

/* Specs */
.project-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-gray);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.project-spec {
  background: var(--white);
  padding: 24px 20px;
  text-align: center;
}
.project-spec__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.project-spec__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.gallery-grid__main {
  grid-column: 1 / -1;
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  cursor: pointer;
}
.gallery-grid__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid__main:hover img { transform: scale(1.03); }
.gallery-grid__thumb {
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
  position: relative;
}
.gallery-grid__thumb:first-of-type { border-radius: 0 0 0 var(--radius-lg); }
.gallery-grid__thumb:last-of-type { border-radius: 0 0 var(--radius-lg) 0; }
.gallery-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid__thumb:hover img { transform: scale(1.06); }
.gallery-grid__more {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  cursor: pointer;
  transition: background var(--transition);
}
.gallery-grid__more:hover { background: rgba(10,10,10,0.75); }

/* Full Gallery */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.gallery-full__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-full__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full__item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

/* Description */
.project-description {
  margin-bottom: 48px;
}
.project-description h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--off-black);
}
.project-description p {
  color: var(--mid-gray);
  margin-bottom: 14px;
}

/* Features */
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--mid-gray);
}
.feature-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Sidebar card */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.sidebar-card__header {
  background: var(--blue);
  padding: 28px 28px 24px;
  color: var(--white);
}
.sidebar-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.sidebar-card__status {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.sidebar-card__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 10px;
}
.sidebar-card__body {
  padding: 28px;
}
.sidebar-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.sidebar-spec {}
.sidebar-spec__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 4px;
}
.sidebar-spec__value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--off-black);
}
.sidebar-card__har {
  width: 100%;
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--off-white);
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.sidebar-card__har:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.sidebar-card__cta {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.sidebar-card__cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,58,92,0.3);
}
.sidebar-card__divider {
  border: none;
  border-top: 1px solid var(--border-gray);
  margin: 20px 0;
}

/* Map Section */
.map-section {
  margin-bottom: 48px;
}
.map-section h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 20px;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}
.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  transition: color var(--transition);
}
.map-open-btn:hover { color: var(--blue-mid); }
.map-open-btn::before { content: '📍'; }

/* ============================================
   PROJECTS INDEX PAGE
   ============================================ */
.projects-page-hero {
  background: var(--blue);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
  color: var(--white);
}
.projects-page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.projects-page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
}

/* ABOUT PAGE */
.about-page-hero {
  background: var(--off-black);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  color: var(--white);
}
.about-page-hero h1 { color: var(--white); font-weight: 300; margin-bottom: 20px; }
.about-page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; font-size: 1.05rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--blue);
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--off-black);
}
.value-card p { font-size: 0.875rem; }

/* Contact Page */
.contact-page-hero {
  background: var(--blue);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  color: var(--white);
}
.contact-page-hero h1 { color: var(--white); font-weight: 300; margin-bottom: 16px; }
.contact-page-hero p { color: rgba(255,255,255,0.65); max-width: 480px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue); }
.text-white { color: var(--white); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border-gray); margin: 40px 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; }
  .about__visual { min-height: 400px; }
  .about__badge { right: 20px; }
  .about__content { padding: 60px 40px; }
  .project-body { grid-template-columns: 1fr; }
  .project-body__sidebar { position: relative; top: auto; }
}

@media (max-width: 768px) {
  :root { --section-pad: 48px; --nav-height: 68px; }
  .container { padding: 0 20px; }
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .hero__stats { display: none; }
  .about { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .project-specs { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: 1fr; }
  .hero__content { padding: 0 20px; }
  .page-hero__content { padding: 40px 20px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: 1fr; }
  .project-specs { grid-template-columns: 1fr 1fr; }
  .sidebar-card__specs { grid-template-columns: 1fr; }
}
