:root {
  --black: #080809;
  --black-soft: #111113;
  --charcoal: #1b1a1c;
  --cream: #f2ece3;
  --cream-2: #e7ded3;
  --white: #ffffff;
  --muted: #aaa3a0;
  --wine: #6d2039;
  --wine-soft: #8c3d56;
  --border-dark: rgba(255,255,255,.12);
  --border-light: rgba(20,17,18,.16);
  --container: min(1180px, calc(100% - 44px));
  --shadow: 0 24px 70px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 108px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--cream); color: var(--charcoal); }

.skip-link {
  position: fixed; left: 14px; top: -70px; z-index: 9999;
  background: var(--white); color: var(--black); padding: 10px 14px;
  border-radius: 8px; transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(7,7,8,.74); border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(7,7,8,.96); border-color: var(--border-dark); box-shadow: 0 10px 36px rgba(0,0,0,.18); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-symbol {
  width: 49px; height: 55px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.8); clip-path: polygon(50% 0, 94% 24%, 94% 76%, 50% 100%, 6% 76%, 6% 24%);
  background: #070708;
}
.brand-symbol span { font-size: 12px; letter-spacing: .1em; }
.brand-text { display: grid; line-height: 1; gap: 5px; }
.brand-text strong { letter-spacing: .14em; font-size: 17px; font-weight: 620; }
.brand-text small { font-size: 10px; letter-spacing: .23em; color: #cfc9c4; }
.site-nav { margin-left: auto; display: flex; gap: 28px; align-items: center; }
.site-nav a { font-size: 13px; color: #d1cdca; position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--cream); transition: width .2s ease; }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: #fff; transition: transform .25s ease, opacity .25s ease; }

.btn {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-size: 12px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: #0a0a0b; }
.btn-light:hover { background: var(--cream); }
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-soft); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.02); }
.btn-outline:hover { background: #fff; color: #0a0a0b; border-color: #fff; }
.btn-dark { background: #111114; color: #fff; }
.btn-wine { background: var(--wine); color: #fff; }
.small-btn { margin-top: 24px; min-height: 44px; }

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  padding: 138px 0 88px; background: linear-gradient(115deg,#050506 0%,#0d0c0e 45%,#171012 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(16px); opacity: .45; }
.glow-one { width: 620px; height: 620px; right: -180px; top: 4%; background: radial-gradient(circle, rgba(150,75,70,.55), rgba(109,32,57,.12) 54%, transparent 72%); }
.glow-two { width: 460px; height: 460px; left: 24%; bottom: -210px; background: radial-gradient(circle, rgba(239,222,198,.14), transparent 68%); }
.hero-bg .line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.21), transparent); }
.line-one { width: 74%; left: 8%; top: 28%; transform: rotate(-9deg); }
.line-two { width: 58%; right: -8%; bottom: 22%; transform: rotate(14deg); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 16px; font-size: 11px; font-weight: 820; letter-spacing: .19em; text-transform: uppercase; color: #d7cec8; }
.eyebrow.dark { color: #635b5d; }
.hero-title-panel { position: relative; max-width: 730px; margin: 0 0 28px; padding: 34px 36px; background: rgba(18,18,20,.66); border-left: 2px solid rgba(255,255,255,.72); box-shadow: var(--shadow); }
.hero-title-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg,rgba(255,255,255,.035),transparent); pointer-events: none; }
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -.035em; }
h1 { font-size: clamp(46px, 6.2vw, 82px); font-weight: 520; text-transform: uppercase; }
h2 { font-size: clamp(36px, 5vw, 66px); font-weight: 560; }
h3 { font-size: 30px; font-weight: 640; }
.hero-lead { max-width: 700px; margin: 0 0 30px; color: #d6d0cc; font-size: clamp(17px,2vw,21px); }
.hero-lead strong { color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-contact-mini { margin-top: 34px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--border-dark); }
.hero-contact-mini a { padding: 18px 22px 0 0; display: grid; gap: 4px; min-width: 0; }
.hero-contact-mini span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #918b89; }
.hero-contact-mini strong { font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }

.hero-art { position: relative; min-height: 580px; }
.hex-outline { position: absolute; clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%); background: rgba(255,255,255,.8); padding: 1px; }
.hex-outline::after { content: ""; position: absolute; inset: 1px; clip-path: inherit; background: #111013; }
.hex-big { width: 370px; height: 420px; right: 4%; top: 4%; transform: rotate(2deg); opacity: .52; }
.hex-small { width: 215px; height: 245px; left: 4%; bottom: 1%; opacity: .28; }
.brand-card { position: absolute; z-index: 5; left: 6%; top: 15%; width: 270px; min-height: 320px; padding: 44px 36px; background: rgba(5,5,6,.93); border: 1px solid rgba(255,255,255,.26); box-shadow: 0 30px 70px rgba(0,0,0,.38); }
.brand-card span { display: block; font-size: 36px; letter-spacing: .12em; font-weight: 300; }
.brand-card strong { display: block; margin-top: 5px; font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 22px; font-weight: 400; }
.brand-card i { display: block; width: 56px; height: 1px; margin: 28px 0 24px; background: #fff; opacity: .7; }
.brand-card p { margin: 0; color: #aaa3a1; font-size: 12px; letter-spacing: .15em; line-height: 1.9; }
.family-scene { position: absolute; z-index: 3; right: 0; bottom: 2%; width: 78%; height: 66%; overflow: hidden; border: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg,rgba(238,221,197,.11),rgba(109,32,57,.13)); }
.horizon-sun { position: absolute; width: 140px; height: 140px; right: 11%; top: 13%; border-radius: 50%; background: radial-gradient(circle at 34% 30%,#f5dfc4,#b27664 68%,#6d2c43); box-shadow: 0 0 74px rgba(224,182,147,.22); }
.horizon-rule { position: absolute; left: 0; right: 0; top: 55%; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent); }
.person { position: absolute; bottom: -26%; border-radius: 48% 48% 0 0; }
.person-a { right: 5%; width: 48%; height: 67%; background: linear-gradient(145deg,#772644,#2a101a); transform: rotate(-7deg); }
.person-a::before { content: ""; position: absolute; width: 38%; aspect-ratio: 1; border-radius: 48%; left: 26%; top: -24%; background: linear-gradient(145deg,#2d2223,#6f4050); }
.person-b { right: 35%; bottom: 8%; width: 34%; height: 30%; border-radius: 70px 70px 28px 35px; background: linear-gradient(145deg,#efeae1,#c9bba8); transform: rotate(18deg); }
.person-b::before { content: ""; position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; left: -2%; top: -62%; background: linear-gradient(145deg,#9b7c63,#3b2a29); }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 24px; transform: translateX(-50%); width: 28px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; }
.scroll-cue span { position: absolute; width: 4px; height: 4px; left: 50%; top: 10px; margin-left: -2px; border-radius: 50%; background: #fff; animation: scrollDot 1.7s infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(0)} 35%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

.statement-strip { background: var(--cream); color: var(--charcoal); border-bottom: 1px solid var(--border-light); }
.statement-grid { min-height: 106px; display: grid; grid-template-columns: .8fr 1.1fr 1.1fr; align-items: center; gap: 30px; }
.statement-grid > * { min-width: 0; }
.statement-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #746b6c; }
.statement-grid strong { font-size: clamp(20px,2.5vw,32px); font-weight: 610; }
.statement-grid span:last-child { text-align: right; color: #716a69; }

.section-heading { max-width: 820px; margin-bottom: 52px; }
.section-heading h2 { color: #161416; }
.section-heading > p:last-child { max-width: 690px; margin: 22px 0 0; font-size: 18px; color: #625c5d; }
.services-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.service-card { position: relative; min-height: 410px; padding: 36px; overflow: hidden; background: #fff; border: 1px solid var(--border-light); box-shadow: 0 16px 48px rgba(32,24,25,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(32,24,25,.13); border-color: rgba(109,32,57,.32); }
.service-topline { display: flex; align-items: center; gap: 18px; color: #7d7476; font-size: 11px; letter-spacing: .18em; }
.service-topline i { flex: 1; height: 1px; background: rgba(30,26,27,.13); }
.service-icon { width: 58px; margin: 70px 0 26px; color: var(--wine); }
.service-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.service-card h3 { color: #171517; }
.service-card > p { margin: 12px 0 5px; font-size: 18px; color: #564f50; }
.service-note { display: block; color: #847b7c; font-size: 14px; }
.text-link { position: absolute; left: 36px; bottom: 32px; display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.message-section { position: relative; min-height: 650px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(120deg,#080809 0%,#100d0f 50%,#1d1116 100%); }
.message-content { position: relative; z-index: 2; max-width: 920px; padding: 110px 0; }
.message-content h2 { max-width: 850px; text-transform: uppercase; }
.message-content > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 30px; color: #cbc5c1; font-size: 18px; }
.message-decoration { position: absolute; inset: 0; pointer-events: none; }
.deco-hex { position: absolute; width: 420px; height: 480px; right: 6%; top: 9%; clip-path: polygon(50% 0,95% 25%,95% 75%,50% 100%,5% 75%,5% 25%); background: rgba(255,255,255,.2); padding: 1px; opacity: .36; }
.deco-hex::after { content: ""; position: absolute; inset: 1px; clip-path: inherit; background: #140e11; }
.deco-line { position: absolute; width: 72%; height: 1px; right: -12%; bottom: 26%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent); transform: rotate(-14deg); }

.contact-section { background: #eee6dc; color: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.contact-copy { position: sticky; top: 118px; }
.contact-copy h2 { color: #171517; }
.contact-copy > p:last-of-type { color: #665e60; font-size: 18px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.contact-panel { border-top: 1px solid #201d1e; }
.contact-row { display: grid; grid-template-columns: .72fr 1.25fr auto; gap: 20px; align-items: center; padding: 28px 4px; border-bottom: 1px solid rgba(29,25,26,.18); transition: background .2s ease, padding .2s ease; }
.contact-row:not(.static):hover { background: rgba(255,255,255,.4); padding-left: 12px; }
.contact-row > span { font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; color: #756c6e; }
.contact-row strong { font-size: clamp(17px,2vw,23px); font-weight: 560; overflow-wrap: anywhere; }
.contact-row b { font-size: 20px; color: var(--wine); }

.location-email { padding: 0 0 108px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { position: relative; min-height: 320px; padding: 42px; background: #faf7f3; border: 1px solid var(--border-light); color: #1a1819; }
.info-card .card-number { position: absolute; right: 30px; top: 28px; font-size: 12px; letter-spacing: .16em; color: #8c8383; }
.info-card h2 { margin-bottom: 22px; font-size: clamp(34px,4vw,50px); }
.info-card > p:last-child { font-size: 18px; color: #60595a; }
.dark-card { background: #111012; color: #fff; border-color: rgba(255,255,255,.08); }
.dark-card .card-number { color: #716c6d; }
.dark-card h2 { color: #fff; }
.dark-card > a:first-of-type { display: inline-block; max-width: 100%; font-size: clamp(17px,2vw,23px); overflow-wrap: anywhere; color: #d6d0cd; }

.final-cta { position: relative; overflow: hidden; padding: 110px 0; text-align: center; }
.final-cta::before { content: ""; position: absolute; width: 600px; height: 600px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle,rgba(109,32,57,.38),transparent 66%); }
.final-cta-inner { position: relative; max-width: 860px; }
.final-cta-inner > p:not(.eyebrow) { margin: 20px auto 30px; color: #cec8c5; font-size: 18px; }

.site-footer { background: #050506; color: #fff; padding: 70px 0 26px; border-top: 1px solid var(--border-dark); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .7fr 1.2fr; gap: 52px; }
.footer-nav, .footer-contact { display: grid; align-content: start; gap: 12px; }
.footer-nav a, .footer-contact a, .footer-contact span { color: #b8b3b0; font-size: 14px; overflow-wrap: anywhere; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; color: #757173; font-size: 12px; letter-spacing: .08em; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--wine); color: #fff; box-shadow: 0 16px 40px rgba(64,17,34,.42); transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); background: var(--wine-soft); }
.floating-whatsapp svg { width: 31px; fill: currentColor; }

/* The page remains fully visible even if JavaScript does not run. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .nav-cta { display: none; }
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; }
  .hero-art { min-height: 470px; max-width: 670px; width: 100%; margin-inline: auto; }
  .statement-grid { grid-template-columns: 1fr; gap: 6px; padding: 28px 0; }
  .statement-grid span:last-child { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-copy { position: static; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1180px); }
  html { scroll-padding-top: 74px; }
  .nav-wrap { min-height: 74px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 9px; }
  .brand-symbol { width: 43px; height: 48px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 74px 0 auto 0; margin: 0; display: grid; gap: 0; padding: 12px 14px 22px; background: rgba(7,7,8,.985); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-125%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .28s ease, opacity .28s ease, visibility .28s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .site-nav a { padding: 15px 10px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding: 112px 0 68px; }
  .hero-title-panel { padding: 24px 20px; }
  h1 { font-size: clamp(38px,12vw,60px); }
  h2 { font-size: clamp(34px,10vw,52px); }
  .hero-contact-mini { grid-template-columns: 1fr; }
  .hero-art { min-height: 360px; }
  .hex-big { width: 255px; height: 290px; right: 0; }
  .hex-small { width: 150px; height: 170px; left: -28px; }
  .brand-card { width: 214px; min-height: 252px; left: 3%; top: 13%; padding: 30px 25px; }
  .brand-card span { font-size: 27px; }
  .brand-card strong { font-size: 18px; }
  .brand-card i { margin: 20px 0 16px; }
  .family-scene { width: 78%; height: 61%; }
  .horizon-sun { width: 94px; height: 94px; }
  .scroll-cue { display: none; }
  .section { padding: 78px 0; }
  .services-grid, .info-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; padding: 30px; }
  .service-icon { margin-top: 54px; }
  .text-link { left: 30px; bottom: 28px; }
  .message-section { min-height: 580px; }
  .message-content { padding: 82px 0; }
  .deco-hex { width: 280px; height: 320px; right: -90px; top: 12%; }
  .contact-row { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .contact-row > span { grid-column: 1 / -1; }
  .contact-row strong { font-size: 17px; }
  .info-card { min-height: 280px; padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .floating-whatsapp { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (max-width: 430px) {
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .hero-art { min-height: 320px; }
  .brand-card { width: 195px; min-height: 230px; padding: 26px 22px; }
  .family-scene { width: 82%; right: -5%; }
  .person-a { width: 52%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
