/* ============================================================
   REINHALD – Main Stylesheet
   Warm Scandinavian Luxury: cream + sage + gold
   ============================================================ */
:root {
  --cream: #f5f2ed;
  --cream-dark: #ede8e0;
  --sage: #4a7c6b;
  --sage-light: #6a9e8b;
  --sage-dark: #2e5a4c;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --charcoal: #1e2420;
  --warm-grey: #6b6560;
  --mid-grey: #9e9690;
  --border: #ddd8d0;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(30,36,32,0.08);
  --shadow-lg: 0 12px 48px rgba(30,36,32,0.14);
  --tr: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--white); color: var(--charcoal); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* TOP BAR */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; padding: 0.45rem 1.5rem;
  font-size: 0.77rem; letter-spacing: 0.02em; flex-wrap: wrap;
}

/* HEADER */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,242,237,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 3rem;
  transition: var(--tr);
}
.header.scrolled { box-shadow: var(--shadow); }
.logo { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--charcoal); letter-spacing: -0.02em; flex-shrink: 0; }
.logo-dot { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav-link { font-size: 0.8rem; font-weight: 400; color: var(--warm-grey); letter-spacing: 0.06em; text-transform: uppercase; transition: var(--tr); position: relative; white-space: nowrap; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: var(--tr); }
.nav-link:hover, .nav-link.active { color: var(--charcoal); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--charcoal); padding: 0.25rem; line-height: 1; }

/* MOBILE NAV — hidden by default */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); padding: 0.9rem 0; border-bottom: 1px solid var(--border); display: block; }
.mobile-nav a:last-child { border-bottom: none; }

/* BUTTONS */
.btn-primary {
  background: var(--sage); color: var(--white) !important;
  padding: 0.65rem 1.55rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--tr); display: inline-block; border: 2px solid var(--sage);
  cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,124,107,0.28); }
.btn-ghost { background: transparent; color: var(--charcoal); padding: 0.65rem 1.55rem; border-radius: 50px; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: var(--tr); display: inline-block; border: 2px solid var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 0.9rem; }
.btn-full { width: 100%; text-align: center; }

/* LAYOUT */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-eyebrow { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.6rem; }
.section-header .section-eyebrow { justify-content: center; }
.section-eyebrow::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.18; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.section-title em { font-style: italic; color: var(--sage); }
.section-title.left { text-align: left; }
.section-sub { color: var(--warm-grey); font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 3rem 5rem;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-shape { position: absolute; border-radius: 50%; animation: floatShape 9s ease-in-out infinite; }
.s1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(201,169,110,0.18), transparent 70%); top: -160px; right: -80px; }
.s2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(74,124,107,0.14), transparent 70%); bottom: -60px; left: 35%; animation-delay: 3s; }
.s3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,169,110,0.10), transparent 70%); top: 40%; left: -40px; animation-delay: 5.5s; }
@keyframes floatShape { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-22px) scale(1.04); } }

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 600; line-height: 1.1; color: var(--charcoal); margin-bottom: 1.4rem; letter-spacing: -0.02em; }
.hero-title em { font-style: italic; color: var(--sage); }
.hero-sub { font-size: 1rem; color: var(--warm-grey); max-width: 460px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 0.1rem; }
.trust-num { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.trust-label { font-size: 0.72rem; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 0.07em; }
.trust-divider { width: 1px; height: 34px; background: var(--border); }

/* hero visual */
.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.hero-img-block { width: 100%; max-width: 460px; }
.hero-img-inner { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream-dark); aspect-ratio: 5/4; width: 100%; }
.img-placeholder { width: 100%; height: 100%; display: block; }
.hero-card { position: absolute; background: var(--white); border-radius: var(--radius); padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.65rem; box-shadow: var(--shadow-lg); }
.hc1 { top: 8%; left: -6%; animation: cardFloat 6s ease-in-out infinite; }
.hc2 { bottom: 8%; right: -6%; animation: cardFloat 6s ease-in-out infinite 2s; }
.hc-icon { font-size: 1.35rem; }
.hc-title { font-weight: 600; font-size: 0.86rem; color: var(--charcoal); line-height: 1.3; }
.hc-sub { font-size: 0.72rem; color: var(--mid-grey); }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--tr); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--sage); transform: scaleX(0); transition: var(--tr); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--sage); border-color: var(--sage); }
.service-card.featured h3, .service-card.featured p { color: rgba(255,255,255,0.92); }
.service-card.featured .service-link { color: var(--gold-light); }
.service-card.featured::after { background: var(--gold); }
.service-badge { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.09em; padding: 0.2rem 0.7rem; border-radius: 50px; margin-bottom: 0.75rem; font-weight: 600; }
.service-icon { font-size: 1.8rem; margin-bottom: 0.85rem; display: block; }
.service-card h3 { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; margin-bottom: 0.55rem; color: var(--charcoal); }
.service-card p { font-size: 0.87rem; color: var(--warm-grey); line-height: 1.65; margin-bottom: 1.2rem; }
.service-link { font-size: 0.83rem; font-weight: 500; color: var(--sage); transition: var(--tr); }
.service-link:hover { letter-spacing: 0.07em; }

/* RUT BANNER */
.rut-banner { background: var(--gold); padding: 3rem 2rem; }
.rut-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.rut-text h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.rut-text p { color: rgba(255,255,255,0.88); font-size: 0.9rem; max-width: 520px; }
.rut-banner .btn-primary { background: var(--white); color: var(--sage-dark) !important; border-color: var(--white); white-space: nowrap; flex-shrink: 0; }
.rut-banner .btn-primary:hover { background: var(--cream); border-color: var(--cream); }

/* HOW IT WORKS */
.how { background: var(--cream); }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: start; }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 2.25rem 1.75rem; border: 1px solid var(--border); transition: var(--tr); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 1rem; }
.step h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--charcoal); }
.step p { font-size: 0.87rem; color: var(--warm-grey); line-height: 1.65; }
.step-arrow { font-size: 1.4rem; color: var(--gold); margin-top: 3.2rem; text-align: center; }

/* AREAS */
.areas { background: var(--white); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.area-tag { background: var(--cream); border: 1px solid var(--border); border-radius: 50px; padding: 0.45rem 1.3rem; font-size: 0.87rem; color: var(--warm-grey); transition: var(--tr); cursor: default; }
.area-tag:hover { background: var(--sage); color: var(--white); border-color: var(--sage); transform: translateY(-2px); }

/* TESTIMONIALS */
.testimonials { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); transition: var(--tr); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.9rem; letter-spacing: 0.06em; }
.review-card p { font-size: 0.9rem; color: var(--warm-grey); line-height: 1.72; margin-bottom: 1rem; font-style: italic; }
.reviewer { font-size: 0.78rem; font-weight: 600; color: var(--sage); letter-spacing: 0.04em; }

/* CTA */
.cta-section { background: var(--charcoal); padding: 6rem 2rem; text-align: center; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.72; }
.cta-section .btn-primary { background: var(--gold); border-color: var(--gold); font-size: 0.95rem; }
.cta-section .btn-primary:hover { background: #b89058; border-color: #b89058; }

/* FOOTER */
.footer { background: #111714; padding: 4rem 0 0; color: rgba(255,255,255,0.58); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.85rem; line-height: 1.72; margin-top: 0.75rem; max-width: 250px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.9rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.5); margin-bottom: 0.48rem; transition: var(--tr); line-height: 1.5; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 2rem; text-align: center; font-size: 0.77rem; color: rgba(255,255,255,0.28); }

/* PAGE HERO */
.page-hero { background: var(--cream); padding: 7rem 2rem 5rem; border-bottom: 1px solid var(--border); }
.page-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 0.75rem; line-height: 1.1; }
.page-subtitle { font-size: 1rem; color: var(--warm-grey); max-width: 540px; line-height: 1.75; }

/* ABOUT STORY */
.story-section { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-visual { position: relative; }
.story-img-block { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cream-dark); }
.story-accent-card { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--sage); color: var(--white); border-radius: var(--radius); padding: 1.5rem 1.75rem; text-align: center; box-shadow: var(--shadow-lg); }
.acc-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.acc-label { font-size: 0.77rem; opacity: 0.9; margin-top: 0.2rem; }
.story-text p { color: var(--warm-grey); line-height: 1.8; margin-bottom: 1rem; font-size: 0.94rem; }
.story-text .section-title { margin-bottom: 1.2rem; }
.story-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 2rem; }
.sv-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.87rem; color: var(--charcoal); font-weight: 500; }
.sv-icon { font-size: 1.1rem; }

/* VALUES */
.values-section { background: var(--cream); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); transition: var(--tr); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 0.55rem; color: var(--charcoal); }
.value-card p { font-size: 0.87rem; color: var(--warm-grey); line-height: 1.65; }

/* TEAM */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; padding: 2.5rem 1.75rem; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--cream); transition: var(--tr); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.25rem; overflow: hidden; border: 3px solid var(--white); box-shadow: 0 4px 12px rgba(74,124,107,0.18); }
.team-card h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.2rem; }
.team-role { font-size: 0.74rem; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.86rem; color: var(--warm-grey); line-height: 1.65; }

/* LEGAL */
.legal-section { background: var(--white); }
.legal-container { display: grid; grid-template-columns: 250px 1fr; gap: 5rem; align-items: start; }
.legal-toc { background: var(--cream); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 90px; border: 1px solid var(--border); }
.legal-toc h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.legal-toc ol { padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-toc a { font-size: 0.83rem; color: var(--warm-grey); transition: var(--tr); }
.legal-toc a:hover { color: var(--sage); }
.legal-body h2 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--charcoal); margin: 2.5rem 0 0.75rem; padding-top: 2rem; border-top: 1px solid var(--border); scroll-margin-top: 100px; }
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0.5rem; }
.legal-intro { font-size: 0.94rem; background: var(--cream); border-left: 3px solid var(--sage); padding: 1.2rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; line-height: 1.78; margin-bottom: 2rem; color: var(--charcoal); }
.legal-body p { font-size: 0.91rem; color: var(--warm-grey); line-height: 1.8; margin-bottom: 1rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { font-size: 0.91rem; color: var(--warm-grey); line-height: 1.8; margin-bottom: 0.35rem; }
.legal-body a { color: var(--sage); text-decoration: underline; }
.legal-box { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.5rem; margin: 1rem 0; }
.legal-box p { margin: 0; font-size: 0.88rem; line-height: 1.72; }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.form-sub { color: var(--warm-grey); font-size: 0.88rem; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.38rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.78rem 1rem; font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal); transition: var(--tr); outline: none; width: 100%; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); background: var(--white); box-shadow: 0 0 0 3px rgba(74,124,107,0.11); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.83rem; color: var(--warm-grey); line-height: 1.55; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--sage); }
.form-check a { color: var(--sage); text-decoration: underline; }
.form-success { display: none; background: #e8f5e9; color: #2e7d32; border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.9rem; font-weight: 500; margin-top: 0.5rem; }
.form-success.visible { display: block; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 1.2rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.ci-item { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 0.85rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(221,216,208,0.5); }
.ci-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.ci-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid-grey); margin-bottom: 0.12rem; }
.ci-item a { font-size: 0.87rem; color: var(--sage); }
.ci-item span { font-size: 0.87rem; color: var(--charcoal); }
.faq-item { margin-bottom: 0.85rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(221,216,208,0.5); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-q { font-weight: 600; font-size: 0.86rem; color: var(--charcoal); margin-bottom: 0.28rem; }
.faq-a { font-size: 0.83rem; color: var(--warm-grey); line-height: 1.62; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .header { padding: 0.9rem 2rem; }
  .hero { padding: 5rem 2rem 4rem; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-visual { max-width: 440px; }
  .legal-container { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav, .header .btn-primary { display: none; }
  .hamburger { display: block; }
  .topbar { display: none; }
  .services-grid, .reviews-grid, .team-grid, .values-grid { grid-template-columns: 1fr; }
  .team-grid { max-width: 340px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .rut-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-trust { gap: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .header { padding: 0.85rem 1.25rem; }
}
