/* =============================================
   ENCORE RENOVATION LLC — GLOBAL STYLESHEET
   Color Palette: Cream, Yellow, White, Black
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@500;700;800&display=swap');

:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EDE6D6;
  --yellow:       #E8B94A;
  --yellow-light: #F2CC70;
  --yellow-dark:  #C9952C;
  --black:        #111111;
  --black-soft:   #1E1E1E;
  --white:        #FFFFFF;
  --gray:         #666666;
  --gray-light:   #AAAAAA;
  --border:       rgba(17,17,17,0.12);

  --font-display: 'Playfair Display', serif;
  --font-body:    'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::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(--black);
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 1px;
}

.logo-text .tagline {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--yellow-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 16px;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-links a:hover, .nav-links a.active { color: var(--yellow-dark); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 22px !important;
  border-radius: 2px !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1208 0%, #2c1f0a 40%, #111 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-accent {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(to left, rgba(232,185,74,0.12), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 750px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,185,74,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 5%;
  right: 5%;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.stat-lbl {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
section { padding: 90px 5%; }

.section-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title em { font-style: normal; color: var(--yellow-dark); }

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
  max-width: 600px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  margin: 20px 0 32px;
}

/* =============================================
   SERVICES SECTION (HOME)
   ============================================= */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  transition: background var(--transition);
}

.service-card:hover .service-icon { background: var(--yellow); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  transition: color var(--transition);
}

.service-card:hover .service-num { color: rgba(232,185,74,0.15); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,185,74,0.06);
}

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

.why-content .section-title { color: var(--white); }
.why-content .section-body { color: rgba(255,255,255,0.6); max-width: 100%; }

.why-features {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(232,185,74,0.15);
  border: 1px solid rgba(232,185,74,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.why-feature-text h4 {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.why-feature-text p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.why-visual {
  position: relative;
}

.why-image-wrapper {
  position: relative;
  padding-bottom: 110%;
  overflow: hidden;
  border-radius: 4px;
}

.why-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--yellow);
  color: var(--black);
  padding: 24px 28px;
  border-radius: 4px;
  text-align: center;
}

.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.why-badge-lbl {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  position: absolute;
  top: 10px; left: 28px;
  opacity: 0.3;
}

.testimonial-stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 16px; }

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--yellow);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--black);
  max-width: 560px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  border: 2px solid var(--black);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-dark:hover { background: transparent; color: var(--black); transform: translateY(-2px); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black-soft);
  color: rgba(255,255,255,0.75);
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand p {
  margin-top: 18px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}

.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--yellow); }

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

.footer-contact-item .icon {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-top: 2px;
}

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

.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1208, #111);
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}

.page-hero h1 em { font-style: normal; color: var(--yellow); }

.page-hero p {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.7;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  padding-bottom: 110%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-main img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 55%;
  padding-bottom: 60%;
  border-radius: 4px;
  overflow: hidden;
  border: 6px solid var(--white);
}

.about-img-accent img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-values {
  background: var(--cream);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.value-card {
  padding: 40px 24px;
  background: var(--white);
  border-radius: 4px;
  transition: transform var(--transition);
}

.value-card:hover { transform: translateY(-4px); }

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}

.value-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.6; }

.team-section { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--cream);
}

.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}

.team-card span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-dark);
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

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

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  transition: color var(--transition);
}

.lightbox-close:hover { color: var(--yellow); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--yellow); color: var(--black); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--yellow);
}

.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 6px;
}

.contact-card-text p {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
}

.contact-card-text a { color: var(--black); transition: color var(--transition); }
.contact-card-text a:hover { color: var(--yellow-dark); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(232,185,74,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--yellow);
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.form-submit:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success .check {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-success p { font-size: 0.9rem; color: var(--gray); }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* stagger for children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1;transform:none;transition-delay:0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1;transform:none;transition-delay:0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1;transform:none;transition-delay:0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1;transform:none;transition-delay:0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1;transform:none;transition-delay:0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1;transform:none;transition-delay:0.5s; }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 5%;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.mobile-nav.open { transform: translateY(0); }

.mobile-nav a {
  display: block;
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; padding-top: 20px; }
.mobile-nav a:hover { color: var(--yellow-dark); }

.mobile-nav .btn-primary {
  display: block;
  text-align: center;
  margin-top: 6px;
  border-bottom: none !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  section { padding: 64px 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Let hero breathe on smaller screens */
  .hero {
    height: auto;
    min-height: 0;
    padding: 90px 0 48px;
  }

  .hero-content { padding: 0 5%; }

  /* Prevent stat overlap by making stats part of flow */
  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 34px;
    padding: 0 5%;
    gap: 28px;
    flex-wrap: wrap;
  }

  .hero-stat { min-width: 150px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-masonry { columns: 1; }
  .cta-band { text-align: center; justify-content: center; }
  .contact-form-wrap { padding: 32px 24px; }
  .why-badge { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.05rem, 9vw, 2.7rem); }
  .hero-sub { font-size: 1rem; }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    align-items: start;
  }

  .hero-stat { min-width: 0; }
  .stat-num { font-size: 1.7rem; }
  .stat-lbl { line-height: 1.25; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
