/* ==============================================
   Laurentia Construction
   ============================================== */

:root {
  --blue: #5A7F94;
  --blue-light: #6B8FA3;
  --blue-pale: #dce9f0;
  --blue-50: #eef4f8;
  --teal: #5B8A72;
  --teal-50: #f0f7f3;
  --cream: #FDFBF7;
  --white: #ffffff;
  --dark: #1a2d38;
  --dark-light: #243a47;
  --g100: #f0eee9;
  --g200: #e0ddd6;
  --g300: #c8c4bb;
  --g400: #9e9a91;
  --g500: #6e6a61;
  --g800: #2d2b27;
  --g900: #1a1917;

  --font-h: 'DM Serif Display', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --r: 16px;
  --rs: 12px;
  --max: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-b); background: var(--cream); color: var(--g800); line-height: 1.6; overflow-x: hidden; }
::selection { background: var(--blue-pale); color: var(--blue); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--blue); }


/* ===========================================================
   NAV — transparent, overlays hero
   =========================================================== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  background: transparent;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-name { font-family: var(--font-h); font-size: 18px; color: white; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.nav-logo-sub { font-size: 10px; color: rgba(255,255,255,.55); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,.3); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500; transition: color .2s; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.nav-links a:hover { color: white; }

.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 700 !important;
  color: white !important;
}

.phone-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:.5; transform:scale(.85); } 50% { opacity:1; transform:scale(1.15); } }

.nav-cta {
  background: rgba(255,255,255,.12) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 10px;
  font-weight: 600 !important;
  transition: all .2s !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  backdrop-filter: blur(8px);
}
.nav-cta:hover { background: rgba(255,255,255,.2) !important; border-color: rgba(255,255,255,.35) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform .3s; }
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(3px,3px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(3px,-3px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link { font-size: 22px; font-weight: 600; color: white; }
.mobile-phone { font-size: 18px; font-weight: 700; color: var(--blue-light); margin-top: 4px; }
.mobile-cta { margin-top: 8px; }


/* ===========================================================
   BUTTONS
   =========================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--rs); font-size: 15px; font-weight: 600; font-family: var(--font-b); cursor: pointer; border: none; transition: all .25s var(--ease); text-align: center; line-height: 1.3; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 2px 16px rgba(90,127,148,.2); }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(90,127,148,.3); }

.btn-hero-primary { background: white; color: var(--g900); padding: 16px 36px; font-size: 15px; font-weight: 700; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.15); letter-spacing: .2px; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,0,0,.25); }

.btn-hero-secondary { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.25); color: white; padding: 16px 36px; font-size: 15px; font-weight: 600; border-radius: 10px; backdrop-filter: blur(8px); letter-spacing: .2px; }
.btn-hero-secondary:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }

.btn-full { width: 100%; }


/* ===========================================================
   HERO — crossfading slideshow, fast transitions
   =========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: opacity .6s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: heroDrift 4.5s ease-in-out forwards;
}

@keyframes heroDrift {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.05) translate(-0.4%, -0.2%); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .5);
}

.hero-content {
  position: relative; max-width: var(--max);
  margin: 0 auto; padding: 60px 24px 80px; width: 100%;
}

.hero-text { max-width: 640px; }
.anim-hero { opacity: 0; transform: translateY(28px); animation: heroIn .9s var(--ease) var(--d) forwards; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero h1 { font-family: var(--font-h); font-size: clamp(2.6rem,5.5vw,4.8rem); font-weight: 400; color: white; line-height: 1.08; margin-bottom: 28px; }
.hero .accent { color: #a8d4b8; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 44px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }


/* ===========================================================
   SECTIONS
   =========================================================== */
.section { padding: 112px 0; }
.section-white { background: var(--white); }
.section-intro { max-width: 520px; margin-bottom: 56px; }
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; }
.tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
h2 { font-family: var(--font-h); font-size: clamp(1.85rem,3.5vw,2.6rem); font-weight: 400; color: var(--g900); line-height: 1.15; margin-bottom: 16px; }
.section-intro p, .contact-info > div > p { font-size: 16px; color: var(--g500); line-height: 1.75; }


/* ===========================================================
   SERVICES
   =========================================================== */
.services-header {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}
.services-header .section-intro { margin-bottom: 0; flex: 1; max-width: 560px; }
.services-header .section-intro h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); }

.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.services-banner-logo {
  max-width: 420px;
  height: auto;
  opacity: .7;
  transition: opacity .3s;
}
.services-banner-logo:hover { opacity: .9; }


.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.service-card {
  display: flex; flex-direction: column;
  border-radius: var(--r); overflow: hidden;
  background: var(--cream);
  transition: all .4s var(--ease); text-decoration: none;
  border: 1px solid var(--g100);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.1);
  border-color: var(--blue-pale);
}

.service-img {
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.08); }

.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.service-label {
  font-family: var(--font-h); font-size: 13px; color: var(--blue);
  letter-spacing: 1px; margin-bottom: 8px; opacity: .6;
}

.service-card h3 {
  font-size: 18px; font-weight: 700; color: var(--g900);
  margin-bottom: 8px; transition: color .2s;
}
.service-card:hover h3 { color: var(--blue); }

.service-card p {
  font-size: 13px; color: var(--g500); line-height: 1.7; flex: 1;
}


/* ===========================================================
   GALLERY
   =========================================================== */
.section-dark {
  background: linear-gradient(160deg, #1a2d38 0%, #223847 30%, #1e3342 60%, #162a35 100%);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90,127,148,.12) 0%, transparent 70%);
  pointer-events: none;
}
.section-dark::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91,138,114,.1) 0%, transparent 70%);
  pointer-events: none;
}
.section-dark .tag { color: var(--blue-light); }
.section-dark h2 { color: white; }
.section-dark .accent { color: rgba(168,212,184,.7); }

.gallery { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,400px); gap: 16px; position: relative; z-index: 1; }
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 45%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity .4s var(--ease); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.gallery-overlay h3 { font-family: var(--font-h); font-size: 20px; color: white; }

.lightbox { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.92); backdrop-filter: blur(20px); align-items: center; justify-content: center; padding: 40px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: white; font-size: 36px; cursor: pointer; opacity: .6; transition: opacity .2s; line-height: 1; }
.lightbox-close:hover { opacity: 1; }


/* ===========================================================
   BEFORE & AFTER
   =========================================================== */
.ba-slider { position: relative; max-width: 1100px; margin: 0 auto; border-radius: 20px; overflow: hidden; cursor: default; user-select: none; aspect-ratio: 16/9; box-shadow: 0 24px 64px rgba(0,0,0,.12); touch-action: pan-y; }
.ba-image { position: absolute; inset: 0; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-label { position: absolute; bottom: 20px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: white; background: rgba(0,0,0,.45); backdrop-filter: blur(8px); padding: 8px 18px; border-radius: 100px; }
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 4px; z-index: 10; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.ba-handle-line { flex: 1; width: 3px; background: white; box-shadow: 0 0 8px rgba(0,0,0,.3); }
.ba-handle-circle { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(12px); border: 3px solid white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.25); flex-shrink: 0; }


/* ===========================================================
   REVIEWS — full width, prominent
   =========================================================== */
.reviews-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  flex: 1; min-width: 0;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}

.review-stars { display: flex; gap: 4px; color: #e5a84b; font-size: 22px; margin-bottom: 24px; justify-content: center; }

.review-card blockquote { font-size: 18px; color: var(--g800); line-height: 1.85; margin-bottom: 32px; min-height: 100px; font-style: italic; }

.review-author { display: flex; align-items: center; gap: 14px; justify-content: center; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 17px; flex-shrink: 0; }
.review-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--g900); text-align: left; }
.review-author span { font-size: 13px; color: var(--g400); text-align: left; }

.review-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--g200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--g500);
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  flex-shrink: 0;
}
.review-arrow:hover { background: var(--blue-50); border-color: var(--blue-pale); color: var(--blue); transform: scale(1.08); }

.review-dots-wrap { display: flex; justify-content: center; margin-top: 32px; }
.review-dots { display: flex; gap: 8px; }
.review-dot { width: 10px; height: 10px; border-radius: 100px; background: var(--g200); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.review-dot.active { background: var(--blue); width: 28px; }




/* ===========================================================
   CONTACT
   =========================================================== */
.contact-wrapper { background: var(--blue-50); border: 1px solid var(--blue-pale); border-radius: 24px; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-info { padding: 52px; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; }
.contact-info h2 { margin-bottom: 12px; }
.contact-links { display: flex; flex-direction: column; gap: 18px; }
.cl-item { display: flex; align-items: center; gap: 14px; }
.cl-icon { width: 46px; height: 46px; background: rgba(90,127,148,.1); border-radius: var(--rs); display: flex; align-items: center; justify-content: center; color: var(--blue); transition: all .2s; flex-shrink: 0; }
a.cl-item:hover .cl-icon { background: var(--blue); color: white; }
.cl-item small { display: block; font-size: 12px; color: var(--g400); margin-bottom: 2px; }
.cl-item strong { display: block; font-size: 15px; font-weight: 600; color: var(--g900); }
.contact-form { background: var(--white); padding: 48px; border-radius: 20px; margin: 14px; box-shadow: 0 2px 16px rgba(0,0,0,.04); }
.contact-form h3 { font-size: 18px; font-weight: 700; color: var(--g900); margin-bottom: 28px; }
.form-fields { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 15px 18px; background: var(--white); border: 1px solid var(--g200); border-radius: var(--rs); font-size: 15px; font-family: var(--font-b); color: var(--g800); outline: none; transition: border-color .2s, box-shadow .2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--g400); }
.contact-form select { appearance: none; color: var(--g400); cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239e9a91' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(90,127,148,.1); }
.contact-form textarea { resize: vertical; }
.form-note { font-size: 13px; color: var(--g400); text-align: center; margin-top: 16px; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 52px 0; text-align: center; }
.form-success-icon { width: 56px; height: 56px; background: var(--teal-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 4px; }
.form-success p { color: var(--g500); font-size: 14px; margin-bottom: 16px; }


/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: linear-gradient(180deg, #1a2d38 0%, #152530 100%);
  color: white;
  padding: 0;
  position: relative;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue-light));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding: 64px 0 56px;
}

.footer-brand { max-width: 360px; }

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

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

.footer-name { font-family: var(--font-h); font-size: 22px; color: white; }
.footer-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); font-weight: 500; }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.8; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; color: rgba(255,255,255,.55); }
.footer-col > a { font-size: 14px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col > a:hover { color: white; }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
a.footer-contact-link:hover { color: white; }
a.footer-contact-link:hover svg { opacity: .8; }
.footer-contact-link svg { flex-shrink: 0; opacity: .45; transition: opacity .2s; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.2); }


/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header-right { align-items: flex-start; flex-direction: row; gap: 24px; align-items: center; }
  .services-banner-logo { max-width: 240px; }
  .gallery { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,300px); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav-inner { height: 68px; }
  .section { padding: 72px 0; }
  .section-intro { margin-bottom: 40px; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Hero */
  .hero { height: 100svh; min-height: 480px; }
  .hero-content { padding: 40px 24px 60px; }
  .hero h1 { font-size: clamp(2rem,8vw,3rem); margin-bottom: 20px; }
  .hero-desc { font-size: 16px; margin-bottom: 32px; line-height: 1.7; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; min-height: 52px; font-size: 15px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 16px 28px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-img { height: 160px; }
  .service-card h3 { font-size: 16px; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,240px); }
  .gallery-overlay { opacity: 1; }

  /* Before/After */
  .ba-slider { aspect-ratio: 4/3; border-radius: 14px; }

  /* Reviews */
  .review-arrow { display: none; }
  .reviews-wrapper { gap: 0; }
  .review-card { padding: 32px 24px; }
  .review-card blockquote { font-size: 16px; min-height: 70px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-info { padding: 36px; }
  .contact-form { padding: 36px; border-radius: 14px; }
  .contact-wrapper { border-radius: 16px; }
  /* 16px font prevents iOS Safari from zooming into inputs */
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; padding: 14px 16px; }
  .btn-primary { min-height: 52px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .banner-logo { max-width: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* Hero */
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-desc { font-size: 15px; max-width: 100%; }

  /* Services — single column for readability */
  .services-grid { grid-template-columns: 1fr; }
  .service-img { height: 180px; }
  .service-body { padding: 20px; }
  .services-banner-logo { max-width: 200px; }

  /* Gallery */
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(6,220px); }

  /* Before/After */
  .ba-slider { aspect-ratio: 3/4; border-radius: 12px; }
  .ba-handle-circle { width: 40px; height: 40px; }
  .ba-label { font-size: 11px; padding: 6px 14px; }

  /* Reviews */
  .review-card { padding: 24px 18px; border-radius: 16px; }
  .review-card blockquote { font-size: 15px; min-height: auto; line-height: 1.75; }
  .review-stars { font-size: 18px; margin-bottom: 16px; }
  .review-dots-wrap { margin-top: 24px; }

  /* Contact */
  .contact-info { padding: 24px; }
  .contact-form { padding: 24px; margin: 8px; }
  .contact-wrapper { border-radius: 14px; margin: 0 -4px; }
  .cl-icon { width: 40px; height: 40px; }

  /* Footer */
  .footer-grid { gap: 28px; padding: 40px 0 36px; }
  .footer-brand > p { font-size: 13px; }
  .banner-logo { max-width: 180px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-actions .btn { font-size: 14px; padding: 14px 20px; }
  .service-body { padding: 16px; }
  .service-card h3 { font-size: 15px; }
  .contact-form h3 { font-size: 16px; }
}
