/* Homepage-specific stylesheet trimmed to the landing page only. */

:root {
  --gold: #c0c0c0;
  --gold-light: #ece8df;
  --gold-dark: #d2cabd;
  --dark: #000000;
  --dark-2: #080808;
  --dark-3: #101010;
  --dark-4: #1a1a1a;
  --text-light: #f2ece3;
  --text-muted: #b2aa9e;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.35);
  --transition: 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: #000;
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: #7a746d; border-radius: 3px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 192, 192, 0.22); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.5); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(17, 17, 17, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: '';
  display: block;
  height: 1px;
  margin-top: 2px;
  border-radius: 1px;
  background: var(--gold);
}
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(192, 192, 192, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    #000;
}
.hero-content {
  position: relative;
  max-width: 820px;
  padding: 0 24px;
  text-align: center;
}
.hero-tagline {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-tagline::before, .hero-tagline::after { content: '──'; margin: 0 12px; opacity: 0.5; }
.hero-title {
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 9vw, 6.6rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  max-width: 580px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.9;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

.about-strip {
  background: #000;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
  border-bottom: 1px solid rgba(192, 192, 192, 0.12);
  padding: 18px 24px;
}
.strip-items {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.strip-icon { font-size: 0.6rem; opacity: 0.6; }

.section { padding: 100px 0; }
.section-dark { background: var(--dark-2); }
.section-header { margin-bottom: 56px; text-align: center; }
.section-header-light .section-eyebrow { color: var(--gold); }
.section-header-light .section-title { color: var(--white); }
.section-eyebrow {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.section-title {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
}
.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.home-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.home-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 32px;
  color: var(--text-light);
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.home-tile::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.home-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(210, 202, 189, 0.24);
}
.home-tile:hover::before { transform: scaleX(1); }
.home-tile-gold { background: #000; border-color: rgba(210, 202, 189, 0.22); }
.home-tile-icon { font-size: 2rem; }
.home-tile h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--white); }
.home-tile p { flex: 1; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.tile-arrow { color: var(--gold-dark); font-size: 1.2rem; transition: transform var(--transition); }
.home-tile:hover .tile-arrow { transform: translateX(6px); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(210, 202, 189, 0.25); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.review-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.78;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.review-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(210, 202, 189, 0.12);
  border: 1px solid rgba(210, 202, 189, 0.25);
  border-radius: 50%;
}
.review-author strong { display: block; color: var(--white); }
.review-author span { color: var(--text-muted); font-size: 0.8rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}
.contact-icon { font-size: 1.5rem; line-height: 1; }
.contact-copy { min-width: 0; }
.contact-label {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-card p, .contact-card a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  padding: 10px 24px;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--dark); }
.contact-map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
}

.footer {
  background: #0a0a0a;
  padding: 32px 0;
  border-top: 1px solid rgba(192, 192, 192, 0.15);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-brand { color: var(--gold); font-family: var(--font-serif); font-size: 1.1rem; letter-spacing: 0.06em; }
.footer-copy { color: rgba(255, 255, 255, 0.42); font-size: 0.78rem; letter-spacing: 0.05em; }
.footer-privacy-link {
  font-size:.75rem; color:rgba(255,255,255,.35); letter-spacing:.03em;
  transition: color var(--transition);
}
.footer-privacy-link:hover { color: var(--gold); }
.footer-powered { font-size:.7rem; color:rgba(255,255,255,.22); letter-spacing:.03em; margin-top:4px; }
.footer-powered a { color:rgba(255,255,255,.35); text-decoration:none; transition: color var(--transition); }
.footer-powered a:hover { color: var(--gold); }

/* ═══════════ COOKIE BANNER ═══════════ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 620px;
  background: rgba(20, 20, 20, .97);
  border: 1px solid rgba(192,192,192,.12);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  padding: 24px 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
  animation: cookieSlideUp .4s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateX(-50%) translateY(30px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
  display: flex; flex-direction: column; gap: 16px;
}
.cookie-text {
  font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.65;
}
.cookie-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.cookie-link {
  font-size: .78rem; color: var(--gold); text-decoration: underline;
  transition: color var(--transition); margin-right: auto;
}
.cookie-link:hover { color: var(--gold-light); }
.cookie-btn {
  padding: 10px 24px; border-radius: 100px; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; transition: all var(--transition); cursor: pointer;
}
.cookie-btn-accept {
  background: var(--gold); color: #000; border: 1px solid var(--gold);
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-reject {
  background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.18);
}
.cookie-btn-reject:hover {
  color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.35);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ═══════════ FLOATING PORTFOLIO MINI-GALLERY ═══════════ */
.floating-portfolio {
  position: fixed;
  bottom: 156px;
  right: 28px;
  z-index: 9990;
  width: 68px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.floating-portfolio:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(0,0,0,.45);
}
.floating-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: fpFadeIn .5s ease;
}
@keyframes fpFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.floating-portfolio-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3px 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}

/* ═══════════ FLOATING SOCIAL BUTTONS ═══════════ */
.floating-socials {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .3s ease, box-shadow .3s ease;
}
.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(0,0,0,.4);
}
.floating-btn-whatsapp {
  background: #25d366;
}
.floating-btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ═══════════ LIGHT SECTIONS (below hero) ═══════════ */
.section-light {
  background: #faf7f4;
}
.section-light .section-eyebrow { color: #a09890; }
.section-light .section-title { color: #1a1a1a; }
.section-light .section-desc { color: #666; }

.section-light .home-tile {
  background: #fff;
  border-color: rgba(0,0,0,.06);
  color: #1a1a1a;
}
.section-light .home-tile:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-color: rgba(0,0,0,.12);
}
.section-light .home-tile h3 { color: #1a1a1a; }
.section-light .home-tile p { color: #666; }
.section-light .home-tile-gold {
  background: #f5f0e8;
  border-color: rgba(0,0,0,.08);
}
.section-light .home-tile-gold h3 { color: #1a1a1a; }
.section-light .home-tile-gold p { color: #777; }
.section-light .tile-arrow { color: #888; }

.section-light .review-card {
  background: #fff;
  border-color: rgba(0,0,0,.06);
}
.section-light .review-card:hover {
  border-color: rgba(0,0,0,.15);
}
.section-light .review-stars { color: #c8a96e; }
.section-light .review-text { color: #555; }
.section-light .review-author {
  border-top-color: rgba(0,0,0,.06);
}
.section-light .review-author strong { color: #1a1a1a; }
.section-light .review-author span { color: #888; }
.section-light .review-avatar {
  background: rgba(200,169,110,.1);
  border-color: rgba(200,169,110,.25);
  color: #c8a96e;
}

/* About strip transition */
.about-strip-light {
  background: linear-gradient(180deg, #000 0%, #faf7f4 100%);
  border-top: 1px solid rgba(192,192,192,.12);
  border-bottom: none;
}
.about-strip-light .strip-item { color: #c8a96e; }
.about-strip-light .strip-icon { opacity: .8; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 280px;
    padding: 80px 24px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--dark);
    border-left: 1px solid rgba(210, 202, 189, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-link { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .nav-burger { display: flex; }
  .section { padding: 72px 0; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 4.8rem); }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
}

@media (max-width: 640px) {
  .home-tiles,
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 18px 18px; }
  .cookie-banner { width: calc(100% - 24px); padding: 20px; bottom: 12px; }
  .cookie-actions { justify-content: center; width: 100%; }
  .cookie-link { margin-right: 0; text-align: center; width: 100%; }
}

@media (max-width: 480px) {
  .floating-socials { bottom: 18px; right: 18px; }
  .floating-btn { width: 48px; height: 48px; }
  .floating-btn svg { width: 22px; height: 22px; }
  .floating-portfolio { bottom: 138px; right: 18px; width: 58px; height: 70px; border-radius: 12px; }
}