* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9922a;
  --gold-light: #e8c06a;
  --cream: #faf6ef;
  --dark: #1a1208;
  --mid: #3d2d10;
  --text: #2c2010;
  --muted: #8a7a60;
  --white: #ffffff;
  --pad: 5rem;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 4rem;
  background: rgba(250, 246, 239, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 146, 42, 0.15);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 10rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  text-decoration: none;
  background: var(--gold);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Jost", sans-serif;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--mid);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
}

.mobile-cta {
  text-decoration: none;
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  margin-top: 1rem;
}

.about-img-placeholder img {
  height: 100%;
  width: 100%;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  padding-top: 5rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-tag::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.8rem;
  line-height: 1.05;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  text-decoration: none;
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Jost", sans-serif;
}

.btn-primary:hover {
  background: var(--mid);
}

.btn-outline {
  text-decoration: none;
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Jost", sans-serif;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: #1a1208;
}

.hero-img-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 2px;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.8;
}

.hero-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* MARQUEE */
.marquee-strip {
  background: var(--dark);
  color: var(--gold-light);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
}

.marquee-inner span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.marquee-dot {
  color: var(--gold);
  font-size: 1rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about-img-side {
  position: relative;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.8rem;
}

.about-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* SERVICES */
.services {
  padding: 6rem var(--pad);
  background: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2a1e0a, #5a3a15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-placeholder img {
  transform: scale(1.08);
}

a.service-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 8, 0, 0.92) 0%,
    rgba(15, 8, 0, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

.service-arrow {
  margin-top: 1rem;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  position: relative;
  display: inline-block;
}

.service-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* GALLERY */
.gallery {
  padding: 6rem var(--pad);
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
}

.gallery-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  height: 340px;
  grid-column: span 1;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.gallery-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gallery-item:hover .gallery-ph {
  transform: scale(1.04);
}

.gallery-ph-text {
  color: rgba(201, 146, 42, 0.3);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* RANGE */
.range-section {
  padding: 6rem var(--pad);
  background: var(--dark);
}

.range-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.range-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.range-card {
  border: 1px solid rgba(201, 146, 42, 0.2);
  padding: 1.5rem;
}

.range-icon {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.range-icon-inner {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--gold);
  transform: rotate(45deg);
}

.range-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.range-desc {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials {
  padding: 6rem var(--pad);
  background: var(--white);
}

.test-header {
  text-align: center;
  margin-bottom: 4rem;
}

.test-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.test-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 146, 42, 0.15);
  position: relative;
}

.test-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.test-text {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--muted);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.test-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 500;
}

.test-event {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.2rem;
  letter-spacing: 0.08em;
}

/* CTA */
.quote-cta {
  padding: 7rem var(--pad);
  background: var(--gold);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.cta-body {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-white:hover {
  background: var(--dark);
  color: var(--white);
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-feat-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  flex-shrink: 0;
}

.cta-feat-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 4rem var(--pad) 2rem;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

.footer-heading {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250, 246, 239, 0.3);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.social-link {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(201, 146, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--gold);
  font-size: 0.7rem;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.pattern-divider {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 6px,
    transparent 6px,
    transparent 10px,
    var(--dark) 10px,
    var(--dark) 16px,
    transparent 16px,
    transparent 20px
  );
}

/* IMAGE COLOR PLACEHOLDERS */
.img-1 {
  background: linear-gradient(135deg, #8b1a1a, #c9922a 50%, #1a1208);
}
.img-2 {
  background: linear-gradient(160deg, #1a3a2a, #2a7a5a 50%, #1a1208);
}
.img-3 {
  background: linear-gradient(135deg, #1a1a6a, #4a4aaa 50%, #c9922a);
}
.img-4 {
  background: linear-gradient(160deg, #3a1a1a, #8a3a1a 50%, #1a1208);
}
.img-5 {
  background: linear-gradient(135deg, #1a4a1a, #3a8a3a 50%, #c9922a);
}
.img-6 {
  background: linear-gradient(160deg, #2a1a4a, #5a3a8a 50%, #1a1208);
}

.img-label {
  color: rgba(255, 255, 255, 0.2);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

/* LOCATION MAP */
.location-section {
  background: var(--cream);
  padding: 6rem var(--pad);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.location-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-detail-value {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}

.map-wrapper {
  border: 1px solid rgba(201, 146, 42, 0.2);
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: #fff;
  flex-shrink: 0;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65);
  }
}

/* ===== TABLET: 768px–1024px ===== */
@media (max-width: 1024px) {
  :root {
    --pad: 3rem;
  }

  nav {
    padding: 1.2rem 2.5rem;
  }

  .nav-logo img {
    width: 7rem;
  }

  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.68rem;
  }

  .nav-links {
    gap: 1.8rem;
  }

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

  .hero-left {
    padding: 8rem 3rem 4rem;
    text-align: center;
    align-items: center;
  }

  .hero-tag {
    justify-content: center;
  }
  .hero-tag::before {
    display: none;
  }
  .hero-title {
    font-size: 3.8rem;
  }

  .hero-desc {
    max-width: 480px;
    text-align: center;
  }

  .hero-right {
    min-height: 55vw;
  }

  .hero-img-grid {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge {
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .about {
    grid-template-columns: 1fr;
  }
  .about-img-side {
    min-height: 380px;
  }
  .about-img-placeholder {
    min-height: 380px;
  }
  .about-content {
    padding: 4rem 3rem;
  }
  .about-title {
    font-size: 2.6rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .gallery-item { height: 240px; grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; height: 240px; }

  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .test-card:last-child {
    grid-column: span 2;
  }

  .quote-cta {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===== MOBILE: up to 767px ===== */
@media (max-width: 767px) {
  :root {
    --pad: 1.5rem;
  }

  nav {
    padding: 1rem 1.5rem;
  }

  .nav-logo img {
    width: 5.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 7rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }
  .hero-desc {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.8rem 1.6rem;
    font-size: 0.74rem;
  }

  .hero-right {
    min-height: 70vw;
  }
  .hero-img-grid {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .hero-badge {
    font-size: 0.62rem;
    padding: 0.8rem 1rem;
    bottom: 1rem;
    left: 1rem;
  }
  .hero-badge strong {
    font-size: 1.1rem;
  }

  .marquee-inner span {
    font-size: 0.62rem;
  }

  .about {
    grid-template-columns: 1fr;
  }
  .about-img-placeholder {
    min-height: 280px;
  }
  .about-content {
    padding: 3rem 1.5rem;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .about-stats {
    gap: 2rem;
  }
  .stat-num {
    font-size: 2.2rem;
  }

  .services {
    padding: 4rem 1.5rem;
  }
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .services-title {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    aspect-ratio: 4/3;
  }
  .service-card {
    aspect-ratio: 4/3;
  }

  .gallery {
    padding: 4rem 1.5rem;
  }
  .gallery-title {
    font-size: 2.2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .gallery-item { height: 200px; grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 2; height: 200px; }
  .gallery-ph {
    min-height: 160px;
  }

  .range-section {
    padding: 4rem 1.5rem;
  }
  .range-title {
    font-size: 2.2rem;
  }
  .range-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .range-card {
    padding: 1.2rem;
  }

  .testimonials {
    padding: 4rem 1.5rem;
  }
  .test-title {
    font-size: 2.2rem;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .test-card:last-child {
    grid-column: span 1;
  }
  .test-card {
    padding: 2rem 1.5rem;
  }

  .quote-cta {
    padding: 4rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-title {
    font-size: 2.5rem;
  }

  footer {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-section {
    padding: 4rem 1.5rem;
  }
  .map-wrapper iframe {
    height: 280px;
  }
}

/* ===== VERY SMALL: up to 380px ===== */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .range-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    height: 220px;
  }
}

/* ===== WHATSAPP MOBILE ===== */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.75rem 1.3rem;
    font-size: 0.78rem;
  }
}
