/* ============================================================
   Cherishing Events — stylesheet
   Palette: white/charcoal primary, gold/beige/rose-gold accents
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

:root {
  --white: #FFFFFF;
  --charcoal: #1F2937;
  --charcoal-soft: #4b5563;
  --charcoal-muted: #6b7280;
  --charcoal-faint: #9ca3af;
  --footer-bg: #16202e;
  --gold: #C8A45D;
  --beige: #F8F5F0;
  --rose: #D8A7A7;
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--rose));
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-w: 1240px;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: #fff; }

a { color: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.container--narrow { max-width: 820px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 400;
  background: var(--charcoal); color: #fff; padding: 12px 20px;
  border-radius: 8px; text-decoration: none; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  color: var(--gold); font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; font-size: 13px; margin: 0 0 16px;
}
.section-title {
  font-family: var(--font-heading); font-weight: 800; letter-spacing: -1px;
  font-size: clamp(30px, 3.6vw, 48px); line-height: 1.12; margin: 0 0 18px;
  text-wrap: balance;
}
.section-title--narrow { max-width: 16ch; margin-bottom: 0; }
.section-title--light { color: #fff; margin: 0; }
.section-desc { color: var(--charcoal-muted); font-size: 17px; line-height: 1.7; margin: 0; }
.lead-text { color: var(--charcoal-muted); font-size: 17px; line-height: 1.7; margin: 0 0 30px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.link-arrow { text-decoration: none; color: var(--gold); font-weight: 600; font-size: 15px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 600; font-family: var(--font-body);
  border-radius: 100px; border: none; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, background .3s ease, color .3s ease;
  font-size: 16px;
}
.btn--primary {
  color: #fff; background: var(--gradient-gold);
  box-shadow: 0 14px 40px rgba(200,164,93,.4);
  padding: 17px 36px;
}
.btn--primary:hover { box-shadow: 0 20px 50px rgba(200,164,93,.6); transform: translateY(-3px); }
.btn--nav { padding: 12px 24px; font-size: 14px; box-shadow: 0 8px 24px rgba(200,164,93,.35); }
.btn--nav:hover { box-shadow: 0 12px 30px rgba(200,164,93,.55); transform: translateY(-2px); }
.btn--ghost {
  color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3); padding: 17px 34px;
}
.btn--ghost:hover { color: var(--charcoal); background: #fff; border-color: #fff; }
.btn--lg { font-size: 16px; }
.btn--block { width: 100%; justify-content: center; padding: 17px; font-size: 16px; font-family: var(--font-heading); box-shadow: 0 12px 30px rgba(200,164,93,.4); }
.btn--block:hover { box-shadow: 0 18px 40px rgba(200,164,93,.6); transform: translateY(-2px); }

/* ---------- Animations ---------- */
@keyframes ce-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes ce-float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes ce-kenburns { 0% { transform: scale(1.08); } 100% { transform: scale(1.2); } }
@keyframes ce-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.reveal-in { display: inline-block; animation: ce-rise .9s ease both; }
.reveal-in--delay1 { animation-delay: .15s; display: block; }
.reveal-in--delay2 { animation-delay: .3s; }
.reveal-in--delay3 { animation-delay: .45s; }

[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal-in, .reveal-in--delay1, .reveal-in--delay2, .reveal-in--delay3 { animation: none !important; }
  .hero__bg { animation: none !important; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gradient-gold); z-index: 200;
}

/* ---------- Nav ---------- */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 150;
}
.site-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px,5vw,64px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark {
  width: 50px; height: 50px; border-radius: 50%; overflow: hidden;
  background: #fff; box-shadow: 0 4px 16px rgba(31,41,55,.18); flex-shrink: 0;
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); }
.brand__text {
  font-family: var(--font-heading); font-weight: 700; font-size: 20px;
  letter-spacing: .3px; color: #fff; line-height: 1.1;
}
.brand__tagline { display: block; font-size: 10px; font-weight: 500; letter-spacing: 4px; opacity: .7; }
.brand__tagline--footer { opacity: .55; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) { text-decoration: none; color: #fff; font-size: 15px; font-weight: 500; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: none;
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex; flex-direction: column; gap: 4px; padding: 10px clamp(20px,5vw,64px) 24px;
  background: rgba(22,32,46,.92); backdrop-filter: blur(16px);
}
.mobile-menu a:not(.btn) {
  text-decoration: none; color: #fff; font-size: 16px; font-weight: 500;
  padding: 12px 6px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=2000&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
  animation: ce-kenburns 20s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(31,41,55,.82) 0%, rgba(31,41,55,.5) 45%, rgba(31,41,55,.25) 100%);
}
.hero__content { position: relative; z-index: 5; padding-top: 120px; padding-bottom: 80px; }

.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px;
  border-radius: 100px; background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22); color: var(--beige); font-size: 13px;
  letter-spacing: 2px; font-weight: 500; text-transform: uppercase; margin: 0 0 28px;
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.hero__title {
  font-family: var(--font-heading); color: #fff; font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.03; font-weight: 800; letter-spacing: -1.5px; margin: 0 0 26px;
  max-width: 15ch; text-wrap: balance;
}
.hero__title-accent {
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lead { color: rgba(255,255,255,.85); font-size: clamp(16px,1.5vw,20px); line-height: 1.6; max-width: 56ch; margin: 0 0 40px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(24px,4vw,60px); }
.hero__stat-num { font-family: var(--font-heading); font-size: clamp(30px,3.4vw,44px); font-weight: 800; color: #fff; }
.hero__stat-label { color: rgba(255,255,255,.7); font-size: 14px; letter-spacing: .5px; }
.hero__stat--float1 { animation: ce-float 6s ease-in-out infinite; }
.hero__stat--float2 { animation: ce-float2 7s ease-in-out infinite .5s; }
.hero__stat--float3 { animation: ce-float 6.5s ease-in-out infinite .8s; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: 3px;
}
.hero__scroll-line { width: 1px; height: 44px; background: linear-gradient(rgba(255,255,255,.6), transparent); }

/* ---------- About ---------- */
.about { padding: clamp(80px,10vw,140px) 0; background: #fff; }
.about__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
  gap: clamp(40px,6vw,90px); align-items: center;
}
.about__media { position: relative; }
.about__image {
  position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: 0 40px 80px rgba(31,41,55,.18);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -28px; left: -28px; background: rgba(255,255,255,.7);
  backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.6); border-radius: 22px;
  padding: 22px 26px; box-shadow: 0 24px 50px rgba(31,41,55,.15);
  display: flex; align-items: center; gap: 16px; animation: ce-float 6s ease-in-out infinite;
}
.about__badge-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-gold);
  display: grid; place-items: center; color: #fff; font-family: var(--font-heading);
  font-weight: 800; font-size: 22px;
}
.about__badge-rating { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--charcoal); }
.about__badge-label { font-size: 13px; color: var(--charcoal-muted); }

.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 36px; }
.about__card { background: var(--beige); border-radius: 18px; padding: 24px; }
.about__card-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 8px; color: var(--charcoal); }
.about__card-text { color: var(--charcoal-muted); font-size: 14.5px; line-height: 1.6; }

.about__stats { display: flex; flex-wrap: wrap; gap: 26px; }
.about__stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 36px; color: var(--gold); }
.about__stat-label { color: var(--charcoal-muted); font-size: 13px; }

@media (max-width: 480px) {
  .about__badge { position: static; margin-top: -40px; margin-inline: 12px; }
  .about__cards { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services { padding: clamp(80px,10vw,140px) 0; background: var(--beige); }
.services__grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 22px; }
.service-card {
  background: #fff; border-radius: 22px; padding: 32px 28px;
  border: 1px solid rgba(31,41,55,.06); box-shadow: 0 6px 20px rgba(31,41,55,.04);
  transition: transform .4s var(--ease-out), box-shadow .4s ease, border-color .4s ease;
}
.service-card:hover { border-color: rgba(200,164,93,.4); box-shadow: 0 24px 50px rgba(31,41,55,.14); transform: translateY(-8px); }
.service-card__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,164,93,.16), rgba(216,167,167,.16));
  color: var(--gold); display: grid; place-items: center; margin-bottom: 22px;
}
.service-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin: 0 0 10px; color: var(--charcoal); }
.service-card p { color: var(--charcoal-muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; }
.service-card a { text-decoration: none; color: var(--gold); font-weight: 600; font-size: 14px; }

/* ---------- Portfolio ---------- */
.portfolio { padding: clamp(80px,10vw,140px) 0; background: #fff; }
.portfolio__head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 44px;
}
.portfolio__filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  padding: 10px 20px; border-radius: 100px; border: 1px solid rgba(31,41,55,.14);
  background: #fff; color: var(--charcoal-soft); font-family: inherit; font-weight: 600;
  font-size: 14px; cursor: pointer; transition: all .3s ease;
}
.filter-btn.is-active { border-color: var(--gold); background: var(--gradient-gold); color: #fff; }

.portfolio__grid { columns: 3 300px; column-gap: 20px; }
.gallery-item {
  break-inside: avoid; margin-bottom: 20px; border-radius: 20px; overflow: hidden;
  position: relative; cursor: pointer; border: none; padding: 0; display: block; width: 100%;
  font-family: inherit; text-align: left;
}
.gallery-item img { width: 100%; display: block; transition: transform .7s var(--ease-out); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,41,55,.82) 0%, rgba(31,41,55,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; pointer-events: none;
}
.gallery-item__cat { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.gallery-item__title { font-family: var(--font-heading); color: #fff; font-weight: 700; font-size: 20px; }
.gallery-item__loc { color: rgba(255,255,255,.8); font-size: 13px; margin-top: 4px; }

/* ---------- Why choose us ---------- */
.why { padding: clamp(80px,10vw,140px) 0; background: var(--charcoal); position: relative; overflow: hidden; }
.why__glow {
  position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,164,93,.18), transparent 70%);
}
.why .container { position: relative; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 22px;
  padding: 32px; backdrop-filter: blur(6px); transition: all .4s ease;
}
.why-card:hover { background: rgba(255,255,255,.09); border-color: rgba(200,164,93,.4); transform: translateY(-6px); }
.why-card__icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--gradient-gold);
  color: #fff; display: grid; place-items: center; margin-bottom: 20px;
}
.why-card h3 { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: #fff; margin: 0 0 10px; }
.why-card p { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ---------- Process ---------- */
.process { padding: clamp(80px,10vw,140px) 0; background: var(--beige); }
.process__grid {
  position: relative; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px;
}
.process-step { text-align: center; position: relative; }
.process-step__icon {
  width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; background: #fff;
  border: 2px solid rgba(200,164,93,.35); display: grid; place-items: center; color: var(--gold);
  box-shadow: 0 12px 30px rgba(31,41,55,.08); position: relative; z-index: 2;
}
.process-step__num { font-family: var(--font-heading); color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.process-step h3 { font-family: var(--font-heading); font-weight: 700; font-size: 19px; margin: 0 0 8px; color: var(--charcoal); }
.process-step p { color: var(--charcoal-muted); font-size: 14px; line-height: 1.6; margin: 0; padding: 0 8px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: clamp(80px,10vw,140px) 0; background: #fff; position: relative; overflow: hidden; }
.testimonials__inner { max-width: 1000px; text-align: center; }
.testimonial-card {
  position: relative; background: linear-gradient(135deg, rgba(248,245,240,.9), rgba(255,255,255,.9));
  backdrop-filter: blur(14px); border: 1px solid rgba(200,164,93,.2); border-radius: 28px;
  padding: clamp(32px,5vw,60px); box-shadow: 0 30px 70px rgba(31,41,55,.1);
}
.testimonial-card__stars { color: var(--gold); font-size: 15px; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-card__quote {
  font-family: var(--font-heading); font-size: clamp(19px,2.4vw,28px); line-height: 1.5;
  font-weight: 500; color: var(--charcoal); margin: 0 0 32px; text-wrap: balance;
}
.testimonial-card__person { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-card__person img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 6px 16px rgba(31,41,55,.15); }
.testimonial-card__meta { text-align: left; }
.testimonial-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--charcoal); }
.testimonial-card__role { color: var(--charcoal-muted); font-size: 14px; }

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(31,41,55,.15);
  background: #fff; color: var(--charcoal); font-size: 18px; cursor: pointer; display: grid; place-items: center;
  transition: all .3s ease;
}
.carousel-btn:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.testimonials__dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 100px; border: none; cursor: pointer; padding: 0;
  transition: all .3s ease; background: rgba(31,41,55,.18);
}
.dot.is-active { width: 26px; background: var(--gradient-gold); }

/* ---------- Stats band ---------- */
.stats-band {
  padding: clamp(60px,8vw,110px) 0;
  background-image: linear-gradient(rgba(31,41,55,.9),rgba(31,41,55,.9)), url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?w=1800&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center; background-attachment: fixed;
}
@media (max-width: 768px) { .stats-band { background-attachment: scroll; } }
.stats-band__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 30px; text-align: center; max-width: 1100px; }
.stats-band__num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(40px,5vw,64px); color: #fff; }
.stats-band__label { color: var(--gold); letter-spacing: 1px; font-size: 15px; margin-top: 6px; }

/* ---------- Social ---------- */
.social { padding: clamp(80px,10vw,140px) 0; background: #fff; }
.social__grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap: 12px; }
.social-item { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden; cursor: pointer; }
.social-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.social-item__heart {
  position: absolute; inset: 0; background: rgba(31,41,55,.35); opacity: 0; transition: opacity .4s ease;
  display: grid; place-items: center; color: #fff; font-size: 26px;
}
.social-item:hover img { transform: scale(1.12); }
.social-item:hover .social-item__heart { opacity: 1; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(80px,10vw,140px) 0; background: var(--beige); }
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: 18px; border: 1px solid rgba(31,41,55,.06); overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--charcoal);
}
.faq-item__icon { font-size: 24px; color: var(--gold); font-weight: 400; transition: transform .3s ease; flex-shrink: 0; }
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; overflow: hidden; }
.faq-item[data-open="true"] .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a p { margin: 0; padding: 0 26px 26px; color: var(--charcoal-muted); font-size: 15px; line-height: 1.7; min-height: 0; }
.faq-item__a-inner { overflow: hidden; }

/* ---------- Contact ---------- */
.contact { padding: clamp(80px,10vw,140px) 0; background: #fff; }
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: clamp(30px,5vw,60px); }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__info-item { display: flex; align-items: center; gap: 16px; }
.contact__info-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--beige); color: var(--gold); display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.contact__info-label { font-size: 13px; color: var(--charcoal-faint); }
.contact__info-value { font-weight: 600; color: var(--charcoal); }
.contact__info-value a { text-decoration: none; color: inherit; }
.contact__map { margin-top: 30px; border-radius: 20px; overflow: hidden; height: 220px; border: 1px solid rgba(31,41,55,.08); }
.contact__map iframe { width: 100%; height: 100%; border: 0; }

.contact__panel { background: var(--beige); border-radius: 26px; padding: clamp(28px,4vw,44px); }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.contact__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .contact__form-row { grid-template-columns: 1fr; } }
.field input, .field select, .field textarea, .contact__form > input, .contact__form > select, .contact__form > textarea {
  width: 100%; padding: 15px 18px; border-radius: 12px; border: 1px solid rgba(31,41,55,.12);
  background: #fff; font-family: inherit; font-size: 15px; outline: none; color: var(--charcoal);
}
.field select { color: var(--charcoal-muted); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }

.contact__error {
  margin: 0; padding: 14px 18px; border-radius: 12px; background: rgba(216,167,167,.18);
  border: 1px solid rgba(216,167,167,.5); color: #9c4a4a; font-size: 14px; line-height: 1.5;
}

.contact__success { text-align: center; padding: 40px 10px; }
.contact__success-icon {
  width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; background: var(--gradient-gold);
  color: #fff; display: grid; place-items: center; font-size: 34px;
}
.contact__success h3 { font-family: var(--font-heading); font-size: 24px; margin: 0 0 10px; }
.contact__success p { color: var(--charcoal-muted); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #fff; padding: clamp(60px,8vw,90px) 0 32px; }
.site-footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__brand { max-width: 320px; }
.site-footer__brand .brand { margin-bottom: 20px; }
.site-footer__desc { color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.7; margin: 0 0 22px; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; text-decoration: none; font-size: 15px;
  transition: background .3s ease;
}
.site-footer__social a:hover { background: var(--gradient-gold); }
.site-footer__heading { font-family: var(--font-heading); font-weight: 700; margin-bottom: 18px; }
.site-footer__links { display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14.5px; }
.site-footer__links a:hover { color: #fff; }

.newsletter {
  display: flex; gap: 8px; background: rgba(255,255,255,.08); border-radius: 100px; padding: 6px 6px 6px 18px;
}
.newsletter input { flex: 1; min-width: 0; background: none; border: none; outline: none; color: #fff; font-family: inherit; font-size: 14px; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter button {
  border: none; cursor: pointer; padding: 10px 18px; border-radius: 100px; background: var(--gradient-gold);
  color: #fff; font-weight: 600; font-size: 13px;
}

.site-footer__bottom {
  padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: rgba(255,255,255,.4); font-size: 13.5px;
}
.site-footer__legal { display: flex; gap: 22px; }
.site-footer__legal a { color: rgba(255,255,255,.4); text-decoration: none; }
.site-footer__legal a:hover { color: #fff; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(16,22,30,.9); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 30px; animation: ce-rise .3s ease;
}
.lightbox__inner { max-width: 900px; width: 100%; text-align: center; }
.lightbox__inner img { max-width: 100%; max-height: 74vh; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.5); margin: 0 auto; }
.lightbox__title { color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 22px; margin-top: 18px; }
.lightbox__loc { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 4px; }
.lightbox__close {
  position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff;
  font-size: 16px; cursor: pointer;
}

/* ---------- Floating controls ---------- */
.whatsapp-btn {
  position: fixed; bottom: 26px; left: 26px; z-index: 180; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.5);
  text-decoration: none; animation: ce-float 4s ease-in-out infinite; transition: transform .3s ease, box-shadow .3s ease;
}
.whatsapp-btn:hover { box-shadow: 0 16px 40px rgba(37,211,102,.7); transform: scale(1.08); }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 180; width: 52px; height: 52px; border-radius: 50%;
  border: none; cursor: pointer; background: var(--charcoal); color: #fff; font-size: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
  box-shadow: 0 10px 26px rgba(31,41,55,.35);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:not(.is-visible) { transform: translateY(10px); }
