﻿:root {
  --ink: #151411;
  --muted: #69655f;
  --paper: #fffaf2;
  --surface: #ffffff;
  --line: #e8dcc8;
  --gold: #c49a3a;
  --gold-dark: #8a641d;
  --green: #234137;
  --clay: #b9825d;
  --shadow: 0 24px 60px rgba(25, 20, 12, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(20, 54, 43, 0.94);
  border-bottom: 1px solid rgba(196, 154, 58, 0.32);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(9, 20, 16, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand img {
  width: clamp(176px, 20vw, 260px);
  height: 84px;
  object-fit: contain;
  object-position: left center;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.96);
  opacity: 1;
  filter:
    saturate(1.12)
    contrast(1.16)
    brightness(0.94)
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 14px;
  font-weight: 700;
}
nav a { color: rgba(255, 255, 255, 0.86); }
nav a:hover { color: var(--gold); }
.contact-btn {
  background: var(--gold);
  color: #151411 !important;
  padding: 10px 16px;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 166px clamp(20px, 5vw, 76px) 80px;
  overflow: hidden;
  background: #1f2720;
}
.hero-slides, .hero-slides img, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slides {
  overflow: hidden;
}
.hero-slides img {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroElevationSlide 30s infinite;
}
.hero-slides img:nth-child(1) { animation-delay: 0s; }
.hero-slides img:nth-child(2) { animation-delay: 6s; }
.hero-slides img:nth-child(3) { animation-delay: 12s; }
.hero-slides img:nth-child(4) { animation-delay: 18s; }
.hero-slides img:nth-child(5) { animation-delay: 24s; }
.hero-shade {
  background: linear-gradient(90deg, rgba(9, 20, 16, 0.78), rgba(9, 20, 16, 0.38) 46%, rgba(9, 20, 16, 0.05)), linear-gradient(0deg, rgba(9, 20, 16, 0.44), transparent 44%);
}
@keyframes heroElevationSlide {
  0% { opacity: 0; transform: scale(1.02); }
  5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}
.hero-tag, .investment-tag, .section-mini-title, .mini-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.hero h1 {
  margin: 16px 0 18px;
  max-width: 850px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p {
  max-width: 690px;
  margin: 0 0 30px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(16px, 2vw, 20px);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.btn, button, .form-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  background: var(--gold);
  color: #16120b;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.btn-dark { background: var(--green); color: #fff; }
.hero-floating-card {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 68px;
  z-index: 3;
  width: min(310px, calc(100% - 40px));
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow);
}
.hero-floating-card strong { display: block; margin-top: 8px; font-size: 20px; line-height: 1.28; }

section:not(.hero) { padding: 88px clamp(20px, 5vw, 76px); }
.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--surface);
}
h2 { margin: 10px 0 14px; font-size: clamp(30px, 4vw, 54px); line-height: 1.05; letter-spacing: 0; }
p { color: var(--muted); font-size: 17px; }
.experience-content p { font-size: 18px; max-width: 560px; }
.experience-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.experience-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.experience-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 250, 242, 0.92);
  border-radius: 8px;
}
.experience-number { color: var(--gold-dark); font-size: 34px; font-weight: 800; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: var(--green);
}
.trust-box {
  padding: 34px 24px;
  background: var(--green);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.16);
}
.trust-box h2 { margin: 0 0 6px; color: var(--gold); font-size: 38px; }
.trust-box p { margin: 0; color: rgba(255,255,255,0.82); }

.section-title { max-width: 780px; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(40, 33, 22, 0.08);
}
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-content { padding: 20px; }
h3 { margin: 0 0 10px; font-size: 23px; line-height: 1.18; }
.card p, .facility-grid p { margin: 0; }

.facilities { background: #f3eadc; }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.facility-grid div {
  min-height: 176px;
  padding: 24px;
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}
.facility-grid p { font-size: 16px; }

.investment { background: var(--surface); }
.investment-banner {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
}
.investment-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.investment-content {
  position: relative;
  max-width: 680px;
  padding: clamp(28px, 6vw, 72px);
  color: #fff;
}
.investment-content p { color: rgba(255,255,255,0.86); font-size: 18px; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(40, 33, 22, 0.1);
}
.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(9, 20, 16, 0.88);
}
.gallery-lightbox[aria-hidden="false"] {
  display: grid;
}
.gallery-lightbox img {
  max-width: min(1180px, 100%);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}
.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 10px 14px;
  background: var(--gold);
  color: #151411;
  box-shadow: 0 12px 30px rgba(0,0,0,0.24);
}
.lightbox-open {
  overflow: hidden;
}
.brand-card {
  display: flex;
  min-height: 168px;
  padding: 18px 12px 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}
.brand-card img {
  width: min(100%, 172px);
  height: 96px;
  padding: 12px 16px;
  object-fit: contain;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(196, 154, 58, 0.45), rgba(35, 65, 55, 0.16)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 10px 24px rgba(40, 33, 22, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.brand-card span {
  display: block;
  max-width: 100%;
  min-height: 36px;
}
.brand-initials {
  display: grid;
  place-items: center;
  width: 76px;
  height: 58px;
  border-radius: 8px;
  background: var(--green);
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
}

.contact {
  background: linear-gradient(180deg, #fffaf2, #efe1cd);
}
.contact-box {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 46px);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}
.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.instagram-icon {
  background: #fbe7f0;
  color: #c13584;
}
.maps-icon {
  background: #e7f0ff;
  color: #1a73e8;
}
.whatsapp-icon {
  background: #e5f8ed;
  color: #128c4a;
}
.email-icon {
  background: #fff1dc;
  color: var(--gold-dark);
}
.contact-links a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fffdf9;
}
textarea { min-height: 130px; resize: vertical; }
button { width: fit-content; }
.form-whatsapp-btn { width: fit-content; }

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
  background: #151411;
  color: rgba(255,255,255,0.78);
  text-align: center;
}
footer img {
  width: 184px;
  height: 98px;
  object-fit: contain;
  opacity: 0.96;
  filter:
    saturate(1.12)
    contrast(1.22)
    brightness(0.84)
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.48))
    drop-shadow(0 8px 20px rgba(196, 154, 58, 0.34));
}
footer p { margin: 0; color: inherit; }

@media (max-width: 1040px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero { padding-top: 190px; }
  .hero-floating-card { position: relative; right: auto; bottom: auto; margin-bottom: 22px; }
  .experience, .cards, .facility-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header { position: static; padding: 14px 18px; }
  .brand img { width: 190px; height: 88px; }
  nav { gap: 8px 12px; font-size: 13px; }
  .contact-btn { padding: 8px 12px; }
  .hero { min-height: auto; padding: 70px 20px; }
  .hero h1 { font-size: 42px; }
  .hero-buttons, footer { align-items: stretch; flex-direction: column; }
  .btn, button, .form-whatsapp-btn { width: 100%; }
  section:not(.hero) { padding: 60px 20px; }
  .experience, .cards, .facility-grid, .trust { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-item, .gallery-item img { min-height: 220px; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-card { min-height: 148px; font-size: 14px; padding: 14px 8px; }
  .brand-card img { width: min(100%, 142px); height: 78px; padding: 9px 12px; border-radius: 13px; }
  .contact-links { grid-template-columns: 1fr; }
  .experience-overlay { position: static; border-radius: 0; }
  .investment-banner { min-height: auto; }
  .investment-content { padding: 34px 22px; }
}

/* Accessibility & small-screen tweaks */
@media (prefers-reduced-motion: reduce) {
  .hero-slides img { animation: none !important; }
}

/* Avoid fixed header covering anchored sections */
section { scroll-margin-top: 120px; }
@media (max-width: 680px) {
  section { scroll-margin-top: 20px; }
}

/* Larger touch targets for navigation links */
nav a { padding: 8px 10px; border-radius: 6px; }

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 170px clamp(20px, 5vw, 76px) 72px;
  overflow: hidden;
  background: var(--green);
  color: #fff;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 20, 16, 0.82), rgba(9, 20, 16, 0.32));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.page-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
}
.page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.86);
  font-size: 19px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  min-height: 190px;
  padding: 26px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(40, 33, 22, 0.08);
}
.info-card h3 { color: var(--green); }
.map-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}
.map-frame {
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  width: 100%;
  box-shadow: var(--shadow);
}
.cta-band {
  background: var(--green);
  color: #fff;
  text-align: center;
}
.cta-band p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.82);
}
.large-contact {
  max-width: 980px;
}

@media (max-width: 1040px) {
  .info-grid, .map-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .page-hero { min-height: auto; padding: 70px 20px; }
  .page-hero h1 { font-size: 42px; }
  .info-card { min-height: auto; }
}

/* Center the floating hero card on medium screens */
@media (max-width: 1040px) {
  .hero-floating-card { left: 50%; transform: translateX(-50%); right: auto; width: calc(100% - 40px); }
}

/* Footer layout improvements for small screens */
@media (max-width: 680px) {
  footer { flex-direction: column; gap: 10px; padding: 20px; }
  footer img { width: 140px; height: auto; }
}
