:root {
  --forest: #0d3b24;
  --deep: #062416;
  --leaf: #2f8f46;
  --fresh: #6fbd45;
  --cream: #fff8e8;
  --gold: #f4c430;
  --orange: #f47c20;
  --ink: #1b2b22;
  --muted: #65756a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 36, 22, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf6 0%, #f7f6e9 48%, #ffffff 100%);
  line-height: 1.65;
}
img { display: block; width: 100%; height: 100%; object-fit: contain; background: #fffdf5; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.04; letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 8vw, 6.8rem); max-width: 980px; }
h2 { font-size: clamp(2.1rem, 5vw, 4.1rem); color: var(--forest); }
h3 { line-height: 1.2; letter-spacing: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 14px 22px;
  transition: 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 40px rgba(6, 36, 22, 0.14);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(1380px, 100%);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(6, 36, 22, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 270px;
}
.brand-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: radial-gradient(circle at 28% 20%, var(--fresh), var(--forest));
  box-shadow: 0 10px 24px rgba(47, 143, 70, 0.35);
}
.brand strong { display: block; color: var(--forest); font-size: 0.98rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: 0.72rem; line-height: 1.1; }
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-menu a {
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.25s ease;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(47, 143, 70, 0.12);
  color: var(--leaf);
}
.nav-call, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.nav-call {
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #ffad32);
  box-shadow: 0 14px 26px rgba(244, 124, 32, 0.28);
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  padding: 170px 6vw 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 34px;
  align-content: end;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(244, 196, 48, 0.28), transparent 28%),
    linear-gradient(120deg, #041f12 0%, #0d3b24 54%, #1f6d3a 100%);
}
.hero::after, .page-hero::after, .enquiry-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(244, 196, 48, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.25;
}
.hero-content, .hero-stats, .hero-poster, .page-hero-inner, .enquiry-panel {
  position: relative;
  z-index: 2;
}
.hero-content p { max-width: 900px; font-size: 1.15rem; color: rgba(255,255,255,0.9); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 0.98rem;
  transition: 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  box-shadow: 0 18px 32px rgba(47, 143, 70, 0.32);
}
.btn-light { color: var(--forest); background: var(--white); }
.btn-whatsapp { color: var(--white); background: #22c55e; box-shadow: 0 18px 32px rgba(34, 197, 94, 0.3); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(790px, 100%);
  margin-top: 60px;
}
.hero-poster {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(14px);
}
.hero-poster img {
  height: min(64vh, 720px);
  border-radius: 8px;
  object-fit: contain;
}
.hero-stats div, .subsidy-row div, .counter-card {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
}
.hero-stats strong, .subsidy-row strong, .counter-card strong { display: block; font-size: 2rem; line-height: 1; }
.hero-stats span, .subsidy-row span, .counter-card p { color: rgba(255,255,255,0.78); margin: 8px 0 0; }
.sun-orbit {
  position: absolute;
  right: 7vw;
  top: 24%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,48,0.9), rgba(244,196,48,0.08) 66%, transparent);
  animation: breathe 4.5s ease-in-out infinite;
}
.leaf-field span {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 32px;
  border-radius: 18px 0 18px 0;
  background: rgba(111, 189, 69, 0.72);
  animation: floatLeaf 12s linear infinite;
}
.leaf-field span:nth-child(1) { left: 12%; top: 18%; animation-delay: 0s; }
.leaf-field span:nth-child(2) { left: 34%; top: 12%; animation-delay: -3s; }
.leaf-field span:nth-child(3) { left: 58%; top: 18%; animation-delay: -6s; }
.leaf-field span:nth-child(4) { left: 76%; top: 10%; animation-delay: -2s; }
.leaf-field span:nth-child(5) { left: 88%; top: 38%; animation-delay: -7s; }

.section {
  width: min(1240px, calc(100% - 38px));
  margin: auto;
  padding: 92px 0;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head p:not(.eyebrow) { color: var(--muted); }
.image-strip { padding: 34px 0 72px; }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.strip-card, .service-card, .why-card, .contact-card, .info-card, .testimonial {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}
.strip-card {
  min-height: 360px;
  position: relative;
  color: var(--white);
  border: 1px solid rgba(47,143,70,0.18);
  background: #fffdf5;
}
.strip-card::after, .gallery-item::after, .why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,36,22,0.85));
  pointer-events: none;
}
.strip-card h3, .gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  margin: 0;
}
.strip-card:hover, .service-card:hover, .why-card:hover, .contact-card:hover, .info-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 80px rgba(47, 143, 70, 0.25);
}
.strip-card:hover img, .gallery-item:hover img, .service-card:hover img, .why-card:hover img { transform: scale(1.01); }
.strip-card img, .gallery-item img, .service-card img, .why-card img { transition: 0.45s ease; }

.about-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.section-media {
  height: 580px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: #fffdf5;
}
.section-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 8px;
}
.section-copy p { color: var(--muted); font-size: 1.04rem; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 12px;
  color: var(--forest);
  font-weight: 800;
}
.feature-list i { color: var(--leaf); margin-right: 9px; }

.services-band {
  width: 100%;
  max-width: none;
  padding: 100px max(19px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 16% 14%, rgba(244,196,48,0.14), transparent 26%),
    linear-gradient(135deg, rgba(6,36,22,0.98), rgba(13,59,36,0.92));
}
.services-band h2, .services-band .section-head p { color: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  background: #fffdf5;
  border: 1px solid rgba(244,196,48,0.22);
  padding-bottom: 24px;
}
.service-card img { height: 260px; object-fit: contain; padding: 8px; }
.service-card i, .why-card i, .info-card i, .contact-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: -25px 22px 14px;
  position: relative;
  z-index: 2;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 12px 26px rgba(244, 124, 32, 0.3);
}
.service-card h3, .service-card p, .service-card a { margin-left: 22px; margin-right: 22px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--leaf);
  font-weight: 900;
}

.nhb-section { text-align: center; }
.info-grid, .why-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.info-card {
  padding: 30px 22px;
  border: 1px solid rgba(47,143,70,0.13);
}
.info-card i {
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
}
.info-card h3 { color: var(--forest); margin-bottom: 0; }
.info-card p { color: var(--muted); margin-bottom: 0; }
.subsidy-row {
  margin: 42px auto 0;
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  color: var(--white);
}
.subsidy-row div {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
}
.subsidy-row p {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  min-height: 560px;
  background: #fffdf5;
}
.gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
.gallery-item figcaption {
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s ease;
  font-weight: 900;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item i { color: var(--gold); animation: breathe 2s ease-in-out infinite; }

.why-grid { grid-template-columns: repeat(3, 1fr); }
.why-card {
  position: relative;
  min-height: 560px;
  color: var(--white);
  background: #fffdf5;
}
.why-card img { position: absolute; inset: 0; }
.why-card i, .why-card h3, .why-card p {
  position: relative;
  z-index: 2;
}
.why-card i { margin: 360px 24px 18px; }
.why-card h3, .why-card p { margin-left: 24px; margin-right: 24px; }
.why-card p { color: rgba(255,255,255,0.82); }

.counter-band {
  padding: 58px 19px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--forest));
}
.counter-grid {
  width: min(1160px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.counter-card { text-align: center; }
.counter-card strong { font-size: 2.2rem; color: var(--gold); }

.testimonial-wrap {
  width: min(780px, 100%);
  margin: auto;
  position: relative;
}
.testimonial {
  display: none;
  padding: 38px;
  text-align: center;
}
.testimonial.active { display: block; }
.testimonial > i { font-size: 2.3rem; color: var(--orange); }
.testimonial p { font-size: 1.12rem; color: var(--muted); }
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 10px; }
.testimonial span { display: block; color: var(--muted); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(47,143,70,0.28);
  cursor: pointer;
}
.slider-dots button.active { background: var(--leaf); }

.contact-grid { grid-template-columns: repeat(4, 1fr); }
.contact-card {
  padding: 32px 22px;
  min-height: 210px;
  text-align: center;
  overflow-wrap: anywhere;
}
.contact-card i {
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
}
.contact-card h3 { color: var(--forest); }
.contact-card p { color: var(--muted); margin-bottom: 8px; }
.contact-card small { color: var(--orange); font-weight: 800; }

.enquiry-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 19px;
  background:
    radial-gradient(circle at 80% 16%, rgba(244,196,48,0.26), transparent 28%),
    linear-gradient(135deg, rgba(6,36,22,0.96), rgba(244,124,32,0.72));
}
.enquiry-panel {
  width: min(1120px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 36px;
  align-items: center;
  color: var(--white);
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}
.enquiry-panel h2 { color: var(--white); }
.enquiry-panel p { color: rgba(255,255,255,0.84); }
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  outline: none;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font: inherit;
}
.enquiry-form textarea, .enquiry-form button { grid-column: 1 / -1; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244,196,48,0.18);
}

.footer {
  padding: 72px 19px 0;
  color: rgba(255,255,255,0.78);
  background: #04180f;
}
.footer-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 38px;
}
.footer h3, .footer h4 { color: var(--white); margin-bottom: 16px; }
.footer a { display: block; margin-bottom: 10px; transition: 0.2s ease; }
.footer a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.footer-bottom {
  width: min(1240px, 100%);
  margin: 46px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.62);
}

.float-btn {
  position: fixed;
  z-index: 60;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  animation: pulse 2.2s ease-in-out infinite;
}
.call-float { left: 24px; background: linear-gradient(135deg, var(--orange), var(--gold)); }
.whatsapp-float { right: 24px; background: #22c55e; }

.page-hero {
  min-height: 58vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 150px 19px 76px;
  color: var(--white);
  text-align: center;
}
.page-hero.about-page { background: radial-gradient(circle at 16% 20%, rgba(244,196,48,0.22), transparent 26%), linear-gradient(135deg, #04180f, #0d3b24 62%, #2f8f46); }
.page-hero.services-page { background: radial-gradient(circle at 82% 24%, rgba(244,196,48,0.2), transparent 26%), linear-gradient(135deg, #04180f, #0d3b24 60%, #1f6d3a); }
.page-hero.contact-page { background: radial-gradient(circle at 18% 28%, rgba(244,196,48,0.22), transparent 26%), linear-gradient(135deg, #04180f, #0d3b24 58%, #f47c20); }
.page-hero-inner { width: min(980px, 100%); }
.page-hero p:not(.eyebrow) { color: rgba(255,255,255,0.88); font-size: 1.08rem; }
.values-section, .process-section { padding-top: 24px; }
.contact-form-section { padding-top: 80px; }

.poster-section { padding-top: 34px; }
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.poster-card {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #fffdf5;
  border: 1px solid rgba(47,143,70,0.14);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}
.poster-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(47, 143, 70, 0.25);
}
.poster-card img {
  height: 650px;
  border-radius: 8px;
  object-fit: contain;
}
.compact-posters .poster-card img { height: 560px; }
.poster-card figcaption {
  padding: 14px 4px 2px;
  color: var(--forest);
  font-weight: 900;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal, .page-hero .reveal {
  opacity: 1;
  transform: none;
}
.hero-content {
  text-shadow: 0 2px 24px rgba(0,0,0,0.32);
}

@keyframes floatLeaf {
  0% { transform: translate3d(0, -70px, 0) rotate(0deg); opacity: 0; }
  14% { opacity: 0.85; }
  100% { transform: translate3d(-55px, 760px, 0) rotate(260deg); opacity: 0; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.76; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
  50% { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(47,143,70,0.35); }
}

@media (max-width: 1180px) {
  .nav-shell { border-radius: 28px; }
  .nav-call { display: none; }
  .service-grid, .info-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid, .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-poster { grid-column: auto; grid-row: auto; width: min(620px, 100%); }
}

@media (max-width: 900px) {
  .site-header { padding: 10px; }
  .nav-shell { justify-content: space-between; }
  .brand { min-width: 0; }
  .brand strong { font-size: 0.9rem; }
  .brand small { font-size: 0.66rem; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform-origin: top;
    transform: scaleY(0.94) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }
  .nav-menu.open {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hero { min-height: 92vh; padding: 138px 19px 58px; }
  .hero-stats, .counter-grid, .about-split, .enquiry-panel, .footer-grid { grid-template-columns: 1fr; }
  .section { width: min(100% - 30px, 720px); padding: 72px 0; }
  .section-media { height: 390px; }
  .strip-grid, .why-grid { grid-template-columns: 1fr; }
  .strip-card { min-height: 420px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .gallery-item { min-height: 620px; }
  .contact-grid, .info-grid, .service-grid { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr; }
  .poster-card img, .compact-posters .poster-card img { height: 640px; }
  .subsidy-row, .enquiry-form { grid-template-columns: 1fr; }
  .subsidy-row p, .enquiry-form textarea, .enquiry-form button { grid-column: auto; }
  .enquiry-panel { padding: 26px; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2rem; }
  .brand-icon { width: 40px; height: 40px; }
  .brand small { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 10px; }
  .hero-stats div { padding: 18px; }
  .hero-poster img { height: 520px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .gallery-item { min-height: 520px; }
  .poster-card img, .compact-posters .poster-card img { height: 540px; }
  .service-card img { height: 320px; }
  .why-card { min-height: 520px; }
  .why-card i { margin-top: 330px; }
  .footer { padding-bottom: 74px; }
  .float-btn { width: 52px; height: 52px; bottom: 16px; }
  .call-float { left: 16px; }
  .whatsapp-float { right: 16px; }
}
