@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400&display=swap');

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; font-weight: 300; background: #f7f4f0; color: #1c1917; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CSS VARIABLES ────────────────────────────────── */
:root {
  --cream:    #f7f4f0;
  --warm:     #ede8e1;
  --dark:     #1c1917;
  --dark2:    #141110;
  --mid:      #4a4340;
  --muted:    #6b5f56;
  --soft:     #a09386;
  --border:   #ece6df;
  --border2:  #e8e2db;
  --serif:    'Cormorant Garamond', serif;
  --sans:     'Jost', sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ─── CUSTOM CURSOR ────────────────────────────────── */
body { cursor: none; }
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px; background: #f7f4f0;
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(247,244,240,.6);
  border-radius: 50%; position: absolute;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, width .25s, height .25s;
}
body:not(.no-cursor) a:hover ~ .cursor .cursor-ring,
body:not(.no-cursor) button:hover ~ .cursor .cursor-ring { width: 52px; height: 52px; }

/* ─── TYPOGRAPHY ────────────────────────────────────── */
.serif { font-family: var(--serif); }
.eyebrow {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--soft);
  font-family: var(--sans); font-weight: 400;
}

/* ─── NAVIGATION ────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,240,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border2);
  padding: 0 60px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(28,25,23,.06); }
.nav-logo .logo-name {
  font-family: var(--serif); font-size: 21px;
  font-weight: 300; letter-spacing: .14em; color: var(--dark);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-size: 8px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--soft);
  margin-top: 1px;
}
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-size: 12px; letter-spacing: .1em; color: var(--muted);
  position: relative; padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--dark);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-divider { width: 1px; height: 14px; background: #d4cec8; }
.nav-lang { font-size: 11px; color: var(--soft); letter-spacing: .08em; cursor: pointer; }
.nav-lang span { transition: color var(--transition); }
.nav-lang span.active { color: var(--dark); }
.nav-lang span:hover { color: var(--dark); }

/* ─── HAMBURGER ─────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--dark); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--dark); flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif); font-size: 42px; font-weight: 300;
  color: var(--cream); letter-spacing: .06em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--soft); }
.mobile-menu .mobile-lang { font-size: 12px; color: var(--soft); letter-spacing: .18em; margin-top: 8px; }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 300;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 13px 32px; border: none; cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.08); opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--mid); }
.btn-ghost { background: transparent; color: var(--dark); border: 1px solid rgba(28,25,23,.3); }
.btn-ghost:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(247,244,240,.4); }
.btn-ghost-light:hover { background: rgba(247,244,240,.1); }

/* ─── SCROLL ANIMATIONS ─────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── IMAGE HOVER ───────────────────────────────────── */
.img-hover { overflow: hidden; }
.img-hover img { transition: transform .7s cubic-bezier(.4,0,.2,1), filter .5s; }
.img-hover:hover img { transform: scale(1.04); filter: brightness(.9) saturate(.85); }

/* ─── SECTION SHARED ────────────────────────────────── */
.section-pad { padding: 80px 60px; }
.section-pad-sm { padding: 56px 60px; }

/* ─── FOOTER ────────────────────────────────────────── */
footer { background: var(--dark2); padding: 48px 60px 28px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid #2e2825; }
.footer-brand .logo-name { font-family: var(--serif); font-size: 20px; font-weight: 300; letter-spacing: .14em; color: #7a736c; }
.footer-brand .logo-sub  { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: #4a4340; margin-top: 2px; }
.footer-brand p { font-size: 11px; color: #4a4340; margin-top: 14px; line-height: 1.8; font-weight: 300; }
.footer-col-title { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: #4a4340; margin-bottom: 14px; display: block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: #7a736c; font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: var(--cream); }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a { font-size: 12px; color: #7a736c; font-weight: 300; transition: color .2s; }
.footer-contact-list a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; }
.footer-copy { font-size: 10px; color: #3a3330; letter-spacing: .08em; }
@media (max-width: 768px) {
  footer { padding: 36px 20px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── COOKIE BANNER ─────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 500; background: var(--dark); color: var(--cream);
  padding: 18px 28px; display: flex; align-items: center; gap: 28px;
  max-width: 640px; width: calc(100% - 40px);
  border: 1px solid #2e2825; opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  transform: translateX(-50%) translateY(20px);
}
.cookie-banner.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cookie-banner.hide { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.cookie-text { font-size: 12px; font-weight: 300; color: #a09386; line-height: 1.7; flex: 1; }
.cookie-text a { color: var(--cream); border-bottom: 1px solid #4a4340; }
.cookie-accept {
  background: var(--cream); color: var(--dark); border: none;
  padding: 9px 22px; font-family: var(--sans); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  white-space: nowrap; transition: background var(--transition);
  font-weight: 400;
}
.cookie-accept:hover { background: #e8e2db; }

/* ─── PHONE LINK ────────────────────────────────────── */
a[href^="tel"] { border-bottom: 1px solid var(--border); transition: border-color var(--transition); }
a[href^="tel"]:hover { border-color: var(--dark); }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .nav { padding: 0 36px; }
  .section-pad { padding: 64px 36px; }
  .section-pad-sm { padding: 44px 36px; }
  footer { padding: 20px 36px; }
}

/* Mobile nav trigger */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-divider, .nav-lang { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .section-pad { padding: 52px 24px; }
  .section-pad-sm { padding: 36px 24px; }
  footer { padding: 18px 24px; flex-direction: column; gap: 8px; text-align: center; }
  .cookie-banner { flex-direction: column; gap: 14px; text-align: center; bottom: 16px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 44px 20px; }
  .section-pad-sm { padding: 30px 20px; }
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(37,211,102,.45); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 768px) { .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; } }
