/* =========================================================
   SERENITAS — Funeraria
   Stylesheet principal
   ========================================================= */

/* --- TOKENS & RESET --- */
:root {
  --cream:       #f8f4ef;
  --cream-dark:  #ede8e0;
  --warm-white:  #fdfaf7;
  --gold:        #c9a96e;
  --gold-light:  #e8c988;
  --gold-dark:   #a07840;
  --charcoal:    #2c2825;
  --brown:       #5a4030;
  --brown-light: #8b6f47;
  --green-sage:  #7a9e7e;
  --text-main:   #3a3228;
  --text-muted:  #7a6e62;
  --text-light:  #b0a090;
  --shadow-sm:   0 2px 12px rgba(44,40,37,.07);
  --shadow-md:   0 8px 40px rgba(44,40,37,.12);
  --shadow-lg:   0 24px 64px rgba(44,40,37,.18);
  --radius:      16px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--gold-dark); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 1.2rem auto 0;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 100px 0; }

/* ===================== NAVBAR ===================== */

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(253,250,247,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}
.nav-container {
  max-width: 100%; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background-color:white;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  font-size: 1.4rem; color: var(--gold);
  animation: spin-gentle 8s linear infinite;
}
@keyframes spin-gentle {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; letter-spacing: .04em;
  color: var(--charcoal);
}
.logo-tagline {
  display: block;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light);
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: #0a0a0f;
  border-radius: 8px;
  padding: 4px 8px;
}
.footer-logo-img {
  height: 140px;
  background: #0a0a0f;
  border-radius: 12px;
  padding: 8px 14px;
}

/* ===================== PRELOADER ===================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #08080e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  height: 240px;
  width: auto;
  animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.4));
  }
  50% {
    opacity: 0.6;
    transform: scale(0.95);
    filter: drop-shadow(0 0 5px rgba(201, 169, 110, 0.1));
  }
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-link {
  font-size: .9rem; color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--charcoal); }
.nav-cta {
  font-size: .85rem; font-weight: 500;
  padding: .55rem 1.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--warm-white);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px;
}
.hamburger span {
  height: 2px; background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: 
    url('assets/hero_landscape.png') center/cover no-repeat;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,40,37,.75) 0%,
    rgba(44,40,37,.45) 50%,
    rgba(90,64,48,.6) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 780px;
  animation: fade-up .9s ease both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-size: .78rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,.4);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  margin-top: 30px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  max-width: 56ch; margin: 0 auto 2.5rem; line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,169,110,.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,.5);
}
.btn-primary.light {
  background: var(--warm-white);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-primary.light:hover {
  background: var(--gold-light);
}
.btn-primary.full-width { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff; font-weight: 400; font-size: .9rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .75rem 1.5rem;
}
.phone-icon { font-size: 1.2rem; animation: ring 3s ease-in-out infinite; }
@keyframes ring {
  0%,100% { transform: rotate(0); }
  10%,30% { transform: rotate(-12deg); }
  20%,40% { transform: rotate(12deg); }
  50%      { transform: rotate(0); }
}
.phone-label { font-size: .7rem; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.phone-number { font-size: 1rem; font-weight: 600; color: var(--gold-light); letter-spacing: .04em; }
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 8px; height: 8px; background: rgba(255,255,255,.5);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(12px); opacity: .4; }
}

/* ===================== TRUST BAR ===================== */

.trust-bar {
  background: var(--charcoal);
  padding: 2.5rem 0;
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 500;
  color: var(--gold-light); line-height: 1;
}
.trust-label { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .08em; margin-top: .3rem; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ===================== PHILOSOPHY ===================== */

.philosophy { background: var(--cream); }
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.philosophy-img-frame {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.img-ornament {
  position: absolute; inset: 16px;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.philosophy-quote {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.5;
}
.philosophy-text {
  color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8;
}
.philosophy-values {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.value-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.value-icon { font-size: 1.4rem; margin-top: .1rem; }
.value-name { font-weight: 600; font-size: .95rem; color: var(--charcoal); }
.value-desc { font-size: .88rem; color: var(--text-muted); }

/* ===================== SERVICES ===================== */

.services { background: var(--warm-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  position: relative;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.service-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.service-card.featured .service-name,
.service-card.featured .service-desc,
.service-card.featured .service-features li { color: rgba(255,255,255,.88); }
.service-card.featured .service-features li::before { color: var(--gold-light); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-badge {
  position: absolute; top: -12px; left: 2rem;
  background: var(--gold);
  color: var(--charcoal); font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.service-card.featured .service-icon-wrap {
  background: rgba(255,255,255,.08);
}
.service-icon { font-size: 1.6rem; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: .7rem;
}
.service-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.7; }
.service-features {
  list-style: none; display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem;
}
.service-features li {
  font-size: .85rem; color: var(--text-muted);
  display: flex; align-items: center; gap: .5rem;
}
.service-features li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; }
.service-link {
  font-size: .82rem; font-weight: 600; color: var(--gold-dark);
  letter-spacing: .04em;
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }

/* ===================== PROCESS ===================== */

.process { background: var(--cream); }
.process-timeline {
  display: flex; flex-direction: column;
  gap: 0; max-width: 780px; margin: 0 auto;
}
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; align-items: start;
  padding: 2.5rem 0;
  position: relative;
}

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--gold-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: .6rem;
}
.step-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.75; }

/* ===================== GALLERY ===================== */

.gallery-section { background: var(--charcoal); padding: 80px 0; height: 1250px; }
.gallery-section .section-label { color: var(--gold-light); }
.gallery-section .section-title { color: #fff; }
.gallery-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem; height: 500px;
}
.gallery-col { display: flex; flex-direction: column; gap: 1.5rem; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex: 1;
}
.gallery-item img {
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,40,37,.8));
  color: rgba(255,255,255,.9);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 2rem 1.2rem .9rem;
}

/* ===================== TESTIMONIALS ===================== */

.testimonials { background: var(--warm-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured {
  background: var(--cream);
  border-color: var(--gold-light);
  transform: scale(1.02);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
blockquote.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--text-main); line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: .9rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.author-role { font-size: .78rem; color: var(--text-light); }

/* ===================== PREPLAN ===================== */

.preplan {
  background: linear-gradient(135deg, var(--brown) 0%, var(--charcoal) 100%);
  padding: 0;
}
.preplan-inner {
  max-width: 800px; margin: 0 auto;
  padding: 100px 2rem;
  text-align: center;
}
.preplan-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2;
  color: #fff; margin-bottom: 1.5rem;
}
.preplan-title em { font-style: italic; color: var(--gold-light); }
.preplan-text { color: rgba(255,255,255,.78); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.8; }
.preplan-benefits {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .75rem; margin: 0 auto 2.5rem;
  max-width: 420px;
  text-align: left;
}
.preplan-benefit { color: rgba(255,255,255,.85); font-size: .95rem; }

/* ===================== FAQ ===================== */

.faq { background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; max-width: 900px; margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  font-size: .95rem; font-weight: 500; color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  font-size: 1.3rem; color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  font-size: .9rem; color: var(--text-muted); line-height: 1.75;
}

/* ===================== CONTACT ===================== */

.contact { background: var(--warm-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-title { margin-bottom: 1rem; }
.contact-desc { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { font-size: 1.2rem; margin-top: .1rem; }
.contact-detail-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: .25rem; }
.contact-detail-value { font-weight: 500; color: var(--charcoal); font-size: .97rem; }
a.contact-detail-value:hover { color: var(--gold-dark); }

/* FORM */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 1.8rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
input, select, textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
textarea { resize: vertical; min-height: 110px; }
.form-privacy {
  font-size: .78rem; color: var(--text-light);
  text-align: center; margin-top: 1rem; line-height: 1.5;
}
.form-privacy a { color: var(--gold-dark); text-decoration: underline; }

/* ===================== FOOTER ===================== */

.footer { background: var(--charcoal); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-text { color: rgba(255,255,255,.55); font-size: .88rem; margin: 1.2rem 0 1.5rem; line-height: 1.7; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 600;
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-col-title {
  font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.emergency-label { font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.emergency-number { display: block; font-size: 1.2rem; font-weight: 600; color: var(--gold-light); margin-bottom: .8rem; }
.emergency-wa {
  display: inline-block;
  font-size: .8rem; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: .4rem 1rem; border-radius: 50px;
  transition: all var(--transition);
}
.emergency-wa:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: .82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold-light); }

/* Logo in footer */
.footer .logo-name { color: #fff; }
.footer .logo-icon { color: var(--gold); }
.footer .logo-tagline { color: rgba(255,255,255,.4); }

/* ===================== FLOATING BUTTON ===================== */

.floating-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(201,169,110,.5);
  transition: all var(--transition);
  overflow: hidden;
}
.floating-btn:hover {
  width: auto; padding: 0 1.5rem; border-radius: 50px;
}
.floating-btn:hover .floating-label { display: block; }
.floating-label {
  display: none;
  font-size: .85rem; font-weight: 600; color: var(--charcoal);
  white-space: nowrap; margin-left: .5rem;
}

/* ===================== TOAST ===================== */

.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120px);
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-sage);
  color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.toast-title { font-weight: 600; font-size: .95rem; color: var(--charcoal); }
.toast-desc { font-size: .82rem; color: var(--text-muted); }

/* ===================== SCROLL REVEAL ===================== */

[data-reveal] {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(253,250,247,.97); padding: 1.5rem; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .philosophy-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-grid         { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: 1fr; height: auto; }
  .gallery-item.large { height: 260px; }
  .gallery-item { height: 200px; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .process-step     { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step-number      { width: 60px; height: 60px; font-size: 1.2rem; }
  .process-step:not(:last-child)::after { left: 29px; top: calc(2.5rem + 30px); }
  .trust-divider    { display: none; }
  .hero-actions     { flex-direction: column; align-items: center; }
  .section { padding: 70px 0; }
}
