/* ============================================
   GOLD HOUSE — Premium Real Estate & Construction
   Style: Corporate Luxury / Architectural Minimal
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy-dark: #123561;
  --navy: #265990;
  --navy-mid: #3b516f;
  --navy-light: #4C5C7E;
  --gold: #B8A74F;
  --gold-dark: #746b3e;
  --gold-deep: #66570a;
  --black: #000000;
  --white: #FEFEFE;
  --gray-light: #DADBDB;
  --gray: #9CA19D;
  --gray-dark: #3D4448;
  --accent-warm: #D4A843;
  --accent-copper: #A67C52;
  --bg-cream: #F7F6F2;
  --bg-section: #F2F3F5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-h: 80px;
  --radius: 22px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--gray-dark);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(38,89,144,.12);
}
::selection { background: var(--gold); color: var(--white); }

/* --- UTILITIES --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold { color: var(--gold); }
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 620px;
}
.section-header.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header.centered .section-desc { margin: 0 auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184,167,79,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184,167,79,.45);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-header {
  background: var(--navy-dark);
  color: var(--white);
  padding: .7rem 1.5rem;
  font-size: .85rem;
  border-radius: 50px;
}
.btn-header:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
  height: var(--header-h);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo img { height: 48px; width: auto; }
.nav-list {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-dark);
  position: relative;
  padding: .25rem 0;
  letter-spacing: .3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  background: var(--navy-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18,53,97,.82) 0%,
    rgba(18,53,97,.70) 50%,
    rgba(0,0,0,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,167,79,.4);
  padding: .5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  margin-top: auto;
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: .35rem;
}

/* ===== VALUE PROPOSITION ===== */
.value-prop {
  padding: 5rem 0;
  background: var(--white);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-cream);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 50%;
  color: var(--gold);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: .65rem;
}
.value-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background: var(--bg-section);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-experience-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.exp-text { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-lead {
  font-size: 1.05rem;
  color: var(--navy-mid);
  margin-bottom: 1rem;
}
.about-content p { margin-bottom: 1rem; color: var(--gray-dark); font-size: .95rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy-dark);
}
.highlight-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-img {
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 1.5rem; }
.service-number {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.service-body p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PROJECTS ===== */
.projects {
  padding: 6rem 0;
  background: var(--bg-section);
}
.projects .section-header { margin-bottom: 3rem; }
.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.project-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.project-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.project-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-item.large img { min-height: 500px; }
.project-item:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,53,97,.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.project-item:hover .project-overlay { opacity: 1; }
.project-cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.project-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: .35rem;
}
.project-overlay p { font-size: .85rem; opacity: .85; }

/* ===== CTA MID ===== */
.cta-mid {
  position: relative;
  padding: 5rem 0;
  background: url('images/cta-bg.jpg') center/cover no-repeat fixed;
  text-align: center;
  color: var(--white);
}
.cta-mid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,53,97,.92), rgba(59,81,111,.88));
}
.cta-mid-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}
.cta-mid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.cta-mid p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: var(--white);
}
.testimonial-slider { position: relative; max-width: 700px; margin: 0 auto; }
.testimonial-track { position: relative; overflow: hidden; min-height: 280px; }
.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease;
  padding: 2.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  text-align: center;
}
.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}
.testimonial-card blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; justify-content: center; }
.author-info strong {
  display: block;
  font-size: .95rem;
  color: var(--navy-dark);
}
.author-info span {
  font-size: .8rem;
  color: var(--gray);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--navy-dark);
}
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-btn svg { width: 20px; height: 20px; }
.testi-dots { display: flex; gap: .5rem; }
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: all var(--transition);
}
.testi-dot.active { background: var(--gold); transform: scale(1.2); }

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background: var(--bg-section);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: .4rem;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234C5C7E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success svg { color: var(--gold); margin: 0 auto 1rem; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: .5rem;
}
.form-success p { color: var(--gray); }
.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }
.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 50%;
  color: var(--gold);
}
.info-icon svg { width: 22px; height: 22px; }
.info-block h4 {
  font-size: .95rem;
  color: var(--navy-dark);
  margin-bottom: .15rem;
}
.info-block p {
  font-size: .88rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.info-block a { color: var(--navy); }
.info-block a:hover { color: var(--gold); }
.contact-map { border-radius: var(--radius); overflow: hidden; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img {
  margin-bottom: 1rem;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 6px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.site-footer h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer ul li { margin-bottom: .5rem; }
.site-footer ul a {
  font-size: .88rem;
  transition: color var(--transition), padding-left var(--transition);
}
.site-footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { font-size: .88rem; margin-bottom: .5rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .82rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal[hidden] { display: none; }
.modal.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  background: var(--white);
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform .3s;
}
.modal.open .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.8rem;
  color: var(--gray);
  transition: color var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--navy-dark); }
.modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.modal-body h3 {
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin: 1.5rem 0 .5rem;
}
.modal-body p {
  font-size: .9rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: .75rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-down"] { transform: translateY(-30px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-mosaic { grid-template-columns: repeat(2, 1fr); }
  .project-item.large { grid-column: span 2; grid-row: span 1; }
  .project-item.large img { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    padding: calc(var(--header-h) + 2rem) 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link {
    display: block;
    padding: .85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-light);
  }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: 100svh; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 2rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image img { height: 300px; }
  .about-highlights { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .projects-mosaic { grid-template-columns: 1fr; }
  .project-item.large { grid-column: span 1; }
  .project-overlay { opacity: 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}

@media (max-width: 480px) {
  .value-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-badge { font-size: .65rem; padding: .4rem 1rem; }
  .contact-form { padding: 1.5rem; }
}
