/* ============================================
   HONEST RENOVATIONS — Shared Stylesheet
   ============================================ */

:root {
  --navy:       #1B2D5B;
  --navy-dark:  #0F1B3A;
  --navy-mid:   #243570;
  --gold:       #C8952A;
  --gold-light: #E8C870;
  --gold-pale:  #F5EDD0;
  --off-white:  #F8F7F2;
  --border:     #E5E2D8;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #777777;
  --white:      #FFFFFF;
  --shadow:     0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.15);
  --radius:     5px;
  --ease:       0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem,2vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section     { padding: 80px 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 { margin-bottom: .6rem; }
.section-header p  { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.eyebrow {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-left { text-align: left; }

.gold-line      { width: 56px; height: 3px; background: var(--gold); margin: .9rem auto 0; }
.gold-line-left { width: 56px; height: 3px; background: var(--gold); margin: .9rem 0 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .4px;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
}
.btn-gold          { background: var(--gold);  color: var(--white);  border-color: var(--gold); }
.btn-gold:hover    { background: #a37220; border-color: #a37220; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover  { background: var(--navy); color: var(--white); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-dark);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .4px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
}
.nav-links li { position: relative; }

.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 .85rem;
  height: 68px;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--ease);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 68px; left: 0;
  background: var(--navy);
  min-width: 210px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: .75rem 1.25rem;
  color: rgba(255,255,255,.82);
  font-size: .87rem;
  transition: background var(--ease), color var(--ease);
}
.nav-dropdown-menu li a:hover, .nav-dropdown-menu li a.active {
  background: var(--navy-mid);
  color: var(--gold);
}

.nav-cta { margin-left: 1rem; }

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-left: .75rem;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: .28rem .55rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
  min-height: unset;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(200,149,42,.12); }
.lang-sep { color: rgba(255,255,255,.2); font-size: .7rem; }

/* Hide Google Translate toolbar */
.goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip { display: none !important; }
.goog-te-menu-value:hover { text-decoration: none !important; }
body { top: 0 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--ease);
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  background: var(--navy-dark);
  padding: 1rem 2rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,.82);
  padding: .75rem 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-height: 44px;
  line-height: 1;
  display: flex;
  align-items: center;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ── Hero (home) ── */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,45,0.90) 0%, rgba(27,45,91,0.84) 55%, rgba(10,20,45,0.88) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 2rem;
  text-align: center;
}
.hero-inner h1    { color: var(--white); max-width: 820px; margin: 0 auto 1.25rem; }
.hero-subtitle    { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.5rem; }
.hero-actions     { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.18);
  flex-wrap: wrap;
}
.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label { color: rgba(255,255,255,.65); font-size: .83rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: 68px;
  min-height: 45vh;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,45,0.88) 0%, rgba(27,45,91,0.82) 60%, rgba(10,20,45,0.85) 100%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 2rem;
}
.page-hero-inner h1  { color: var(--white); max-width: 700px; margin-bottom: .9rem; }
.page-hero-inner > p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 620px; margin-bottom: 1.75rem; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 7px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon { font-size: 2.1rem; color: var(--gold); margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: .65rem; }
.service-card p  { flex: 1; font-size: .95rem; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  margin-top: 1.25rem;
  transition: gap var(--ease);
}
.service-card .card-link:hover { gap: .75rem; }

/* ── Pillars ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.pillar { text-align: center; padding: 2rem 1.5rem; }
.pillar-icon {
  width: 68px; height: 68px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.55rem;
  color: var(--gold);
}
.pillar h3 { margin-bottom: .5rem; }

/* ── Portfolio Preview (homepage) ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  aspect-ratio: 4/3;
  display: block;
  background: var(--off-white);
}
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.78) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1.25rem;
  transition: opacity var(--ease);
}
.portfolio-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
}
.portfolio-cta { text-align: center; margin-top: 2.5rem; }

/* ── What's Included ── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.include-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.include-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .95rem;
}
.include-item h4 { font-size: 1rem; margin-bottom: .25rem; }
.include-item p  { font-size: .88rem; margin: 0; }

/* ── Service Photos ── */
.service-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.service-photo {
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--off-white);
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.service-photo:hover img { transform: scale(1.05); }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  counter-increment: steps;
}
.process-step::before {
  content: counter(steps);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}
.process-step h4 { margin-bottom: .4rem; }

/* ── Quote Section ── */
.quote-section {
  background: var(--navy);
  padding: 70px 0;
  text-align: center;
}
.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: .7;
  margin-bottom: .75rem;
  display: block;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--white);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.quote-source {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 80px 0;
  text-align: center;
}
.cta-section h2  { color: var(--white); margin-bottom: .9rem; }
.cta-section p   { color: rgba(255,255,255,.72); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions     { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3      { margin-bottom: .5rem; }
.contact-item         { display: flex; align-items: flex-start; gap: 1rem; margin-top: 1.75rem; }
.contact-item-icon    {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-text strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: .15rem;
}
.contact-item-text span { font-size: .95rem; }

/* Form */
.contact-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: 7px;
}
.form-group        { margin-bottom: 1.2rem; }
.form-group label  {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: .35rem;
  letter-spacing: .3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── About Page ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.founder-card {
  background: var(--white);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.founder-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}
.founder-info  { padding: 2rem; }
.founder-info h3 { margin-bottom: .3rem; }
.founder-role {
  display: block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Expertise cards */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.expertise-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: var(--ease);
}
.expertise-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.expertise-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.expertise-card h4 { font-size: 1.1rem; margin-bottom: .65rem; color: var(--navy); }
.expertise-card p  { font-size: .93rem; }

/* ── Gallery Page ── */
.gallery-category { margin-bottom: 4.5rem; }
.gallery-category:last-child { margin-bottom: 0; }

.gallery-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
}
.gallery-category-header h3 { margin: 0; }
.gallery-count {
  color: var(--text-light);
  font-size: .85rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--off-white);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(10,20,50,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover i { color: #fff; font-size: 1.8rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,10,25,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,.7);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-caption {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  text-align: center;
  white-space: nowrap;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 990;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.65);
  color: #fff;
}
.whatsapp-fab .fab { line-height: 1; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.2rem; }
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin-top: .9rem;
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
  letter-spacing: .4px;
}
.footer-col ul li           { margin-bottom: .55rem; }
.footer-col ul li a         { color: rgba(255,255,255,.58); font-size: .87rem; transition: color var(--ease); }
.footer-col ul li a:hover   { color: var(--gold); }
.footer-contact-item        { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.58); font-size: .87rem; margin-bottom: .7rem; }
.footer-contact-item i      { color: var(--gold); width: 14px; }
.footer-contact-item a      { color: rgba(255,255,255,.58); transition: color var(--ease); }
.footer-contact-item a:hover{ color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger       { display: flex; }
  .contact-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .founders-grid       { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .service-photos      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section          { padding: 56px 0; }
  .hero-stats       { gap: 1.75rem; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .portfolio-grid   { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .service-photos   { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .whatsapp-fab     { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 1.55rem; }
  .page-hero        { min-height: 38vh; }
  .page-hero-inner  { padding: 48px 1.5rem; }
  .container        { padding: 0 1.25rem; }
  .contact-form     { padding: 1.5rem; }
}

@media (max-width: 400px) {
  .portfolio-grid  { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .service-photos  { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; }
}
