
:root {
  --bg: #f5ede6;
  --bg-2: #efe3d8;
  --surface: rgba(255, 249, 244, 0.74);
  --surface-strong: rgba(255, 249, 244, 0.94);
  --surface-dark: rgba(55, 23, 17, 0.92);
  --stroke: rgba(94, 53, 37, 0.12);
  --stroke-strong: rgba(94, 53, 37, 0.2);
  --text: #34170f;
  --muted: #7a5f52;
  --gold: #cfad72;
  --gold-strong: #b98439;
  --gold-soft: rgba(207, 173, 114, 0.16);
  --copper: #b5654c;
  --rose: #d8b1a0;
  --espresso: #4b2415;
  --shadow: 0 24px 80px rgba(77, 34, 19, 0.14);
  --shadow-soft: 0 16px 42px rgba(77, 34, 19, 0.09);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0 ;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207,173,114,0.18), transparent 25%),
    radial-gradient(circle at 85% 12%, rgba(181,101,76,0.16), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, #f9f4ef 42%, #f2e6db 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1.2em; height: 1.2em; fill: currentColor; flex: 0 0 auto; }

.ambient,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ambient-a { background: radial-gradient(circle at 8% 0%, rgba(207,173,114,0.18), transparent 26%); }
.ambient-b { background: radial-gradient(circle at 100% 12%, rgba(181,101,76,0.14), transparent 24%); }
.grain {
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section { padding: clamp(72px, 8vw, 110px) 0; }
.center { text-align: center; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(249, 243, 237, 0.78);
  border-bottom: 1px solid rgba(75,36,21,0.08);
}
.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-monogram {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(181,101,76,.16));
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a:not(.btn):not(.icon-link) { color: var(--muted); font-weight: 700; font-size: .94rem; }
.site-nav a:not(.btn):not(.icon-link):hover { color: var(--espresso); }
.nav-socials { display: flex; align-items: center; gap: 8px; }
.icon-link,
.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(94,53,37,.11);
  color: var(--espresso);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.icon-link:hover,
.footer-socials a:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: rgba(255,255,255,.88); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.66);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--espresso); border-radius: 999px; margin: 4px auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, var(--copper), var(--gold-strong));
  box-shadow: 0 18px 38px rgba(181,101,76,.24);
}
.btn-secondary { background: rgba(255,255,255,.6); color: var(--espresso); border-color: rgba(94,53,37,.12); }

.herovideo {
  position: relative;
  width: 100%;
  height: clamp(440px, 75vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d170f;
}
.hero-gridvideo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.brand-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.herovideo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35,16,10,.42), rgba(35,16,10,.18) 45%, rgba(35,16,10,.55));
  z-index: 1;
}

.marquee-wrap { border-top: 1px solid rgba(94,53,37,.08); border-bottom: 1px solid rgba(94,53,37,.08); overflow: hidden; background: rgba(255,255,255,.38); }
.marquee-track {
  display: flex;
  gap: 40px;
  padding: 18px 24px;
  min-width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--espresso);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .02em;
}
.marquee-track span::before { content: "✦"; color: var(--gold-strong); margin-right: 18px; font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.tag,
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(185,132,57,.18);
  color: var(--gold-strong);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head h2,
.experience-copy h2,
.contact-card h2,
.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .96;
  letter-spacing: -.04em;
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.section-head p,
.experience-copy p,
.contact-card p { margin: 0; color: var(--muted); line-height: 1.9; font-size: 1.04rem; }

.cta-box {
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(207,173,114,.24), transparent 34%),
    linear-gradient(135deg, #fef8f2, #f0dfd1);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.cta-box h2 { font-size: clamp(2.3rem, 4vw, 4.4rem); }
.cta-box p { margin: 0; color: var(--muted); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 288px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,247,241,.54)),
    radial-gradient(circle at top right, rgba(207,173,114,.2), transparent 34%);
  border: 1px solid rgba(181,101,76,.13);
  box-shadow: 0 16px 40px rgba(77,34,19,.08);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(207,173,114,.14);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(181,101,76,.22); }
.service-index { color: var(--gold-strong); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 900; }
.service-card h3 { margin: 18px 0 12px; font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.2; }
.service-card p { margin: 0; color: var(--muted); line-height: 1.8; }
.price-ribbon {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(75,36,21,.97), rgba(126,74,56,.92));
  color: #fff8f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 22px 50px rgba(75,36,21,.14);
}
.price-ribbon strong { display: block; margin-bottom: 5px; font-size: 1.08rem; }
.price-ribbon span { color: rgba(255,248,244,.82); line-height: 1.6; }

.experience-feature {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}
.experience-photo {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: rgba(255,255,255,.45);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}
.experience-photo::before {
  content: "";
  position: absolute;
  inset: -18px 22px auto auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(207,173,114,.22);
  z-index: -1;
}
.experience-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: calc(var(--radius-xl) - 12px); }
.experience-copy {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.56);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}
.experience-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.experience-badges span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(207,173,114,.14);
  border: 1px solid rgba(185,132,57,.18);
  color: var(--espresso);
  font-weight: 800;
  font-size: .9rem;
}

.team-section { background: linear-gradient(to bottom, transparent, rgba(75,36,21,0.035)); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin-top: 46px; }
.team-card {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(94,53,37,.11);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: var(--shadow-soft);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(181,101,76,.18); }
.team-image { aspect-ratio: 4 / 5; overflow: hidden; background: #ead7c7; }
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.team-card:hover .team-image img { transform: scale(1.04); }
.team-content { padding: 22px; }
.team-content h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(1.75rem, 3vw, 2.15rem); line-height: 1; }
.team-role { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-strong); font-weight: 900; margin: 10px 0 12px; line-height: 1.45; }
.team-content p { margin: 0; font-size: .94rem; line-height: 1.75; color: var(--muted); }

.gallery-toolbar { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--stroke);
  font-weight: 800;
  color: var(--espresso);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.social-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.buk-mark {
  width: 1.4em;
  height: 1.4em;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--espresso);
  color: #fffaf3;
  font-size: .78em;
  font-weight: 900;
  line-height: 1;
}
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gallery-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff7f1, #f1dfd2);
  border: 1px solid rgba(181,101,76,.14);
  box-shadow: 0 16px 40px rgba(77,34,19,.08);
}
.gallery-card a { display: block; width: 100%; height: 100%; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card::after { content: ""; position: absolute; inset: auto 0 0; height: 52%; background: linear-gradient(180deg, transparent, rgba(29,13,8,.72)); pointer-events: none; }
.gallery-card .caption { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; color: #fff8f1; }
.gallery-card .caption span { display: block; opacity: .82; font-size: .78rem; margin-bottom: 6px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800; }
.gallery-card .caption strong { display: block; font-size: .98rem; line-height: 1.35; }

.partners-section { position: relative; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  align-items: stretch;
}
.partner-chip {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  border: 1px solid rgba(94,53,37,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.18));
  box-shadow: 0 18px 42px rgba(77,34,19,.07);
  padding: 18px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
  backdrop-filter: blur(10px);
}
.partner-chip:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(181,101,76,.18); background: rgba(255,255,255,.46); }
.partner-chip img { max-width: 132px; max-height: 64px; object-fit: contain; filter: saturate(.9) contrast(1.04); opacity: .9; transition: transform .3s ease, opacity .3s ease, filter .3s ease; }
.partner-chip:hover img { opacity: 1; filter: saturate(1.08) contrast(1.06); transform: scale(1.04); }

.contacts-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.contact-card,
.map-card { padding: clamp(24px, 4vw, 38px); background: rgba(255,255,255,.66); border: 1px solid var(--stroke); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.contact-card h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(94,53,37,.08);
  color: var(--espresso);
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.contact-list a:hover { transform: translateX(4px); background: rgba(255,255,255,.9); box-shadow: 0 12px 28px rgba(77,34,19,.08); }
.contact-list svg { color: var(--gold-strong); }
.map-card { min-height: 430px; padding: 14px; }
.map-card iframe { width: 100%; min-height: 100%; height: 100%; border: 0; border-radius: calc(var(--radius-xl) - 12px); }

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(94,53,37,.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(207,173,114,.18), transparent 28%),
    rgba(255,255,255,.42);
}
.footer-wrap { display: grid; grid-template-columns: 1.2fr auto auto auto; gap: 24px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(181,101,76,.16)); }
.footer-brand strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; line-height: 1; }
.footer-brand p,
.footer-wrap p { margin: 6px 0 0; color: var(--muted); }
.footer-socials { display: flex; gap: 10px; align-items: center; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; font-weight: 800; color: var(--muted); }
.footer-links a:hover { color: var(--espresso); }
.copyright { margin: 0; white-space: nowrap; }

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(37,211,102,.36);
  border: 1px solid rgba(255,255,255,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp svg { width: 1.45em; height: 1.45em; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 48px rgba(37,211,102,.44); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.btn):not(.icon-link) { font-size: .9rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-wrap { grid-template-columns: 1fr; justify-items: start; }
}

@media (max-width: 900px) {
  body{margin: 0 10px;}
  .nav-shell { min-height: 64px; }
  .menu-toggle { display: inline-block; }
  .brand-monogram { width: 50px; height: 50px; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255,248,243,.98);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn):not(.icon-link) { padding: 12px 10px; border-radius: 14px; }
  .site-nav a:not(.btn):not(.icon-link):hover { background: rgba(207,173,114,.1); }
  .nav-socials { justify-content: flex-start; padding: 6px 4px; }
  .site-nav .btn { width: 100%; margin-top: 6px; }
  .herovideo { height: 58vh; min-height: 360px; }
  .cta-box,
  .price-ribbon { flex-direction: column; align-items: flex-start; }
  .cta-actions { justify-content: flex-start; width: 100%; }
  .experience-feature,
  .contacts-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 340px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  body{margin: 0 10px;}
  .container { width: min(100% - 24px, var(--container)); }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 28px; }
  .services-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-card { display: grid; grid-template-columns: 120px 1fr; min-height: 160px; }
  .team-image { aspect-ratio: auto; height: 100%; min-height: 160px; }
  .team-content { padding: 18px; }
  .team-content h3 { font-size: 1.65rem; }
  .team-content p { font-size: .9rem; line-height: 1.62; }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .partner-chip { min-height: 100px; padding: 14px; border-radius: 20px; }
  .partner-chip img { max-width: 112px; max-height: 58px; }
  .contact-list a { align-items: flex-start; }
  .footer-brand { align-items: flex-start; }
  .footer-links { gap: 12px; }
  .floating-whatsapp { padding: 14px; right: 14px; bottom: 14px; }
  .floating-whatsapp span { display: none; }
}

@media (max-width: 420px) {
  body{margin: 0 10px;}
  .team-card { grid-template-columns: 1fr; }
  .team-image { aspect-ratio: 4 / 5; min-height: auto; }
  .cta-actions .btn { width: 100%; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
}
