:root {
    --brown-dark:   #4a2e0e;
    --brown-mid:    #7b4a1e;
    --brown-light:  #c49a6c;
    --gold:         #d4a547;
    --gold-light:   #e8c47a;
    --cream:        #faf5ee;
    --cream-dark:   #f0e6d3;
    --white:        #ffffff;
    --text-dark:    #2c1a08;
    --text-mid:     #5a3a1a;
    --text-light:   #8a6a4a;
    --gray-light:   #f5f0eb;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Nunito Sans', sans-serif; color: var(--text-dark); background: var(--white); }
  a { text-decoration: none; color: inherit; }
  img { display: block; width: 100%; }
/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

  body {
    font-size: 14px;
    line-height: 1.6;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  * {
    word-wrap: break-word;
  }

}

.topbar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: rgba(255,255,255,0.75);
}

.topbar a:hover {
  color: var(--gold-light);
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

  .topbar {
    padding: 6px 20px;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

}

@media (max-width: 480px) {

  .topbar {
    padding: 6px 10px;
    font-size: 11px;
  }

}

nav {
  background: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(74,46,14,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  line-height: 1.2;
}

.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--brown-dark);
}

.logo-text span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color .2s;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--gold-light);
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 1024px) {

  nav {
    padding: 0 20px;
  }

  .nav-links {
    gap: 18px;
  }

}

@media (max-width: 768px) {

  nav {
    padding: 0 15px;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo-text strong {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 12px;
  }

}

@media (max-width: 480px) {

  nav {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .logo-wrap {
    justify-content: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

}

 /* ── HERO ── */
  .hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--brown-dark);
  }
  .hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(74,46,14,0.85) 0%, rgba(74,46,14,0.4) 60%, transparent 100%);
  }
  .hero-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    max-width: 720px;
  }
  .hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 2px;
    margin-bottom: 20px;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px; line-height: 1.2;
    color: var(--white);
    margin-bottom: 18px;
  }
  .hero p {
    font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
  }
  /* ================= HERO RESPONSIVE ================= */

@media (max-width: 1024px) {

  .hero {
    height: 480px;
  }

  .hero-content {
    padding: 50px 50px;
    max-width: 600px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  .hero {
    height: 420px;
  }

  .hero-content {
    padding: 40px 25px;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 10px;
    padding: 4px 12px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
  }

}

@media (max-width: 480px) {

  .hero {
    height: auto;
    min-height: 380px;
  }

  .hero-content {
    padding: 30px 18px;
    justify-content: center;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-tag {
    margin-bottom: 15px;
  }

}

  .btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--brown-dark);
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background .2s, transform .15s;
    align-self: flex-start;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    display: inline-block;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 11px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all .2s;
    margin-left: 14px;
  }
  .btn-outline:hover { background: var(--gold); color: var(--brown-dark); }
  /* vision line */
.section-sub ul {
  padding-left: 20px; /* space for bullets */
  margin: 0; 
  list-style: disc; /* default bullets */
}

.section-sub ul li {
  margin-bottom: 10px; /* spacing between points */
  color: var(--gold); /* bullet & text color */
}

.section-sub ul li::marker {
  color: var(--gold); /* ensure bullet itself is gold */
}
/* ================= BUTTONS & SECTION-SUB RESPONSIVE ================= */

@media (max-width: 1024px) {

  .btn-gold {
    padding: 12px 28px;
    font-size: 12px;
  }

  .btn-outline {
    padding: 10px 24px;
    font-size: 12px;
  }

}

@media (max-width: 768px) {

  .btn-gold {
    padding: 11px 24px;
    font-size: 12px;
  }

  .btn-outline {
    padding: 10px 22px;
    font-size: 12px;
    margin-left: 10px;
  }

  .section-sub ul {
    padding-left: 18px;
  }

  .section-sub ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }

}

@media (max-width: 480px) {

  .btn-gold {
    width: 100%;
    text-align: center;
    padding: 12px;
    align-self: stretch;
  }

  .btn-outline {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 10px;
    padding: 12px;
  }

  .section-sub ul {
    padding-left: 16px;
  }

  .section-sub ul li {
    font-size: 13px;
    line-height: 1.6;
  }

}

  /* ── SECTION COMMONS ── */
  section { padding: 72px 60px; }
  .section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .section-divider {
    width: 52px; height: 3px;
    background: var(--gold);
    margin: 0 0 20px;
    border-radius: 2px;
  }
  .section-divider.center { margin: 0 auto 24px; }
  .section-sub {
    font-size: 15px; line-height: 1.75;
    color: var(--text-light);
    max-width: 640px;
  }
  .text-center { text-align: center; }
  .text-center .section-sub { margin: 0 auto; }
  /* ================= SECTION COMMONS RESPONSIVE ================= */

@media (max-width: 1024px) {

  section {
    padding: 60px 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-sub {
    font-size: 14px;
    max-width: 600px;
  }

}

@media (max-width: 768px) {

  section {
    padding: 50px 25px;
  }

  .section-tag {
    font-size: 10px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .section-divider {
    margin-bottom: 18px;
  }

  .section-sub {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
  }

}

@media (max-width: 480px) {

  section {
    padding: 40px 18px;
  }

  .section-title {
    font-size: 20px;
  }

  .section-tag {
    font-size: 10px;
  }

  .section-sub {
    font-size: 13px;
    line-height: 1.6;
  }

  .section-divider.center {
    margin: 0 auto 20px;
  }

}

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
  }
  .about-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 20px 50px rgba(74,46,14,0.18); */
  }
.about-img-wrap img {
  width: 400px;        /* must match height */
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
}  /* .about-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--brown-dark);
    color: var(--gold);
    padding: 14px 20px;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    text-align: center;
    line-height: 1.2;
  } */
  .about-badge span { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 2px; font-family: 'Nunito Sans', sans-serif; font-weight: 400; }
  .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
  .stat-card {
    background: var(--white);
    border-radius: 6px;
    padding: 18px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 16px rgba(74,46,14,0.07);
  }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--brown-dark); }
  .stat-label { font-size: 11px; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
  /* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 1024px) {

  .about-grid {
    gap: 40px;
  }

  .about-img-wrap img {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }

  .stats-row {
    gap: 15px;
  }

  .stat-num {
    font-size: 24px;
  }

}

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-img-wrap {
    display: flex;
    justify-content: center;
  }

  .about-img-wrap img {
    width: 280px;
    height: 280px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 16px;
  }

}

@media (max-width: 480px) {

  .about-img-wrap img {
    width: 220px;
    height: 220px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

}


  /* ── DIRECTOR ── */
  .director { background: var(--white); }
  .director-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
    align-items: flex-start;
    margin-top: 36px;
    padding: 36px;
    background: var(--cream);
    border-radius: 10px;
    border-left: 5px solid var(--gold);
  }
  .director-photo {
    width: 100%; border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74,46,14,0.15);
  }
  .director-photo img { height: 300px; object-fit: cover; }
  .director blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 18px; line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
  }
  .director blockquote::before { content: '\201C'; font-size: 60px; color: var(--gold); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
  .director-name { font-weight: 700; font-size: 16px; color: var(--brown-dark); }
  .director-role { font-size: 13px; color: var(--gold); letter-spacing: 0.05em; }

  /* ================= DIRECTOR RESPONSIVE ================= */

@media (max-width: 1024px) {

  .director-grid {
    grid-template-columns: 220px 1fr;
    gap: 35px;
    padding: 30px;
  }

  .director-photo img {
    height: 260px;
  }

  .director blockquote {
    font-size: 17px;
  }

}

@media (max-width: 768px) {

  .director-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px;
    text-align: center;
  }

  .director-photo {
    max-width: 260px;
    margin: 0 auto;
  }

  .director-photo img {
    height: 240px;
  }

  .director blockquote {
    font-size: 16px;
    line-height: 1.6;
  }

  .director blockquote::before {
    font-size: 50px;
  }

}

@media (max-width: 480px) {

  .director-grid {
    padding: 20px;
  }

  .director-photo {
    max-width: 220px;
  }

  .director-photo img {
    height: 220px;
  }

  .director blockquote {
    font-size: 15px;
  }

  .director-name {
    font-size: 15px;
  }

  .director-role {
    font-size: 12px;
  }

}


  /* ── PROJECTS ── */
  .projects { background: var(--gray-light); }
  .projects-filter {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin: 28px 0 36px;
  }
  .filter-btn {
    padding: 7px 18px;
    border-radius: 30px;
    border: 1.5px solid var(--brown-light);
    font-size: 12px; font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    letter-spacing: 0.03em;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
    color: var(--white);
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(74,46,14,0.08);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
  }
  .project-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(74,46,14,0.15); }
  .project-img { position: relative; height: 220px; overflow: hidden; }
  .project-img img { height: 100%; object-fit: cover; transition: transform .4s; }
  .project-card:hover .project-img img { transform: scale(1.05); }
  .project-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 2px;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .project-info { padding: 18px 20px; }
  .project-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--brown-dark); margin-bottom: 6px; }
  .project-loc { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
  .project-loc::before { content: '📍'; font-size: 11px; }
  .project-meta { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--cream-dark); }
  .project-meta-item { font-size: 11px; color: var(--text-light); }
  .project-meta-item strong { display: block; font-size: 13px; color: var(--text-dark); font-weight: 600; }

  /* ── GALLERY ── */
  .gallery { background: var(--white); padding-bottom: 80px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
    margin-top: 36px;
  }
  .gallery-item {
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(74,46,14,0.7), transparent);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 14px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { color: var(--white); font-size: 13px; font-weight: 600; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--brown-dark); }
  .testimonials .section-title { color: var(--gold-light); }
  .testimonials .section-tag { color: var(--gold); }
  .testimonials .section-divider { background: var(--gold); }
  .testimonials .section-sub { color: rgba(255,255,255,0.6); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
  }
  .testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,165,71,0.25);
    border-radius: 10px;
    padding: 28px;
    transition: background .2s;
  }
  .testi-card:hover { background: rgba(255,255,255,0.1); }
  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 20px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; color: var(--brown-dark);
    flex-shrink: 0;
  }
  .testi-name { font-weight: 700; color: var(--gold-light); font-size: 14px; }
  .testi-role { font-size: 12px; color: rgba(255,255,255,0.45); }

  /* ── CONTACT ── */
  .contact { background: var(--cream); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
  }
  .contact-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--brown-dark); margin-bottom: 24px; }
  .contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
  .contact-icon {
    width: 40px; height: 40px; border-radius: 6px;
    background: var(--brown-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
  }
  .contact-item-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--brown-dark); margin-bottom: 3px; }
  .contact-item-text p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
  .map-placeholder {
    width: 100%; height: 200px;
    background: var(--cream-dark);
    border-radius: 8px; overflow: hidden;
    margin-top: 20px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .map-placeholder span { font-size: 13px; color: var(--text-light); }
  .contact-form { display: flex; flex-direction: column; gap: 16px; }
  .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 12px; font-weight: 700; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { min-height: 100px; }
  .btn-submit {
    background: var(--brown-dark);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, transform .15s;
    align-self: flex-start;
  }
  .btn-submit:hover { background: var(--brown-mid); transform: translateY(-1px); }
  /* ── whatapp icon ── */

  .sticky-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-whatsapp img {
  width: 28px;
  height: 28px;
} 
/* ================= PROJECTS, GALLERY, TESTIMONIALS, CONTACT RESPONSIVE ================= */

@media (max-width: 1024px) {

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    gap: 35px;
  }

}

@media (max-width: 768px) {

  /* PROJECTS */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-filter {
    justify-content: center;
  }

  .project-img {
    height: 200px;
  }

  .project-meta {
    flex-wrap: wrap;
    gap: 12px;
  }


  /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }


  /* TESTIMONIALS */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card {
    padding: 22px;
  }


  /* CONTACT */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row2 {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {

  /* PROJECTS */
  .project-img {
    height: 180px;
  }

  .project-title {
    font-size: 15px;
  }

  .project-meta-item strong {
    font-size: 12px;
  }


  /* GALLERY */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }


  /* TESTIMONIALS */
  .testi-card {
    padding: 18px;
  }

  .testi-text {
    font-size: 13px;
  }


  /* CONTACT */
  .contact-info h3 {
    font-size: 20px;
  }

  .contact-item {
    gap: 10px;
  }

  .map-placeholder {
    height: 180px;
  }


  /* WHATSAPP */
  .sticky-whatsapp {
    bottom: 15px;
    right: 15px;
    padding: 10px;
  }

  .sticky-whatsapp img {
    width: 24px;
    height: 24px;
  }

}

  /* ── FOOTER ── */
  footer {
    background: var(--brown-dark);
    color: rgba(255,255,255,0.65);
    padding: 60px 60px 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-brand strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
  .social-row { display: flex; gap: 10px; }
  .social-btn {
    width: 34px; height: 34px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,165,71,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
  }
  .social-btn:hover { background: var(--gold); }
  footer h4 { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  footer ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color .2s; }
  footer ul li a:hover { color: var(--gold-light); }
  footer ul li a::before { content: '→ '; color: var(--gold); font-size: 11px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

  /* ── STICKY CTA ── */
  .sticky-whatsapp {
    position: fixed; bottom: 28px; right: 28px;
    background: #25D366;
    color: var(--white);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 999;
    cursor: pointer;
    transition: transform .2s;
  }
  .sticky-whatsapp:hover { transform: scale(1.1); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  .hero-content > * { animation: fadeUp .7s ease both; }
  .hero-content > *:nth-child(1) { animation-delay: .1s; }
  .hero-content > *:nth-child(2) { animation-delay: .25s; }
  .hero-content > *:nth-child(3) { animation-delay: .4s; }
  .hero-content > *:nth-child(4) { animation-delay: .55s; }
  /* ================= FOOTER & STICKY CTA RESPONSIVE ================= */

@media (max-width: 1024px) {

  footer {
    padding: 50px 40px 25px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }

}

@media (max-width: 768px) {

  footer {
    padding: 45px 25px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .social-row {
    justify-content: center;
  }

}

@media (max-width: 480px) {

  footer {
    padding: 40px 18px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand {
    grid-column: span 1;
    text-align: center;
  }

  footer h4 {
    text-align: center;
  }

  footer ul {
    align-items: center;
  }

  footer ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  /* Sticky WhatsApp */
  .sticky-whatsapp {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 18px;
    right: 18px;
  }

}