/* =============================================
   AM CONCIERGERIE PLUS — COMPLETE STYLESHEET
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --beige-light: #F5ECD7;
  --beige-dark: #E8D5B0;
  --gold: #C9A84C;
  --gold-dark: #A07830;
  --black: #1A1A1A;
  --off-white: #FDFAF4;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--beige-light);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--black);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
.gold { color: var(--gold); }
.text-center { text-align: center; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--black);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 2rem;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--beige-dark); }
.section-dark { background: var(--black); color: var(--off-white); }
.section-dark .section-title { color: var(--off-white); }
.section-dark p { color: #ccc; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--off-white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-brand img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
.brand-text .tagline {
  font-size: 0.75rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
nav ul li a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
  color: var(--black);
}
nav ul li a:hover, nav ul li a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.4) 100%),
    url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
.hero-content { max-width: 800px; }
.hero h1 {
  color: var(--off-white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}
.btn-secondary:hover {
  background: var(--off-white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--off-white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Cards Grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(201,168,76,0.15);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.card h3 { margin-bottom: 0.8rem; color: var(--black); }
.card p { color: #555; font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Advantage Cards ---------- */
.advantage-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.advantage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.advantage-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.advantage-card h3 { color: var(--black); margin-bottom: 0.8rem; }
.advantage-card p { color: #666; font-size: 0.9rem; }

/* ---------- Review Cards ---------- */
.review-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-style: italic; color: #444; margin-bottom: 1.2rem; font-size: 0.95rem; }
.reviewer { font-weight: 600; color: var(--black); font-size: 0.85rem; }
.reviewer span { color: var(--gold); font-weight: 400; }

/* ---------- Pricing Block ---------- */
.pricing-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}
.pricing-card.featured { border-color: var(--gold); transform: scale(1.03); }
.pricing-card:hover { border-color: var(--gold); }
.pricing-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.pricing-unit { font-size: 1rem; color: #666; margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin: 1.5rem 0; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  color: #444;
}
.pricing-features li::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ---------- Info Band ---------- */
.info-band {
  background: var(--black);
  color: var(--off-white);
  padding: 60px 0;
}
.info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.info-item .icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; }
.info-item h4 { color: var(--gold); margin-bottom: 0.5rem; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.info-item p { color: #ccc; font-size: 0.9rem; margin: 0; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  color: var(--off-white);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--off-white); margin-bottom: 1rem; }
.cta-section p { color: #ccc; margin-bottom: 2rem; font-size: 1.1rem; }

/* ---------- Blog Cards ---------- */
.blog-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-content { padding: 24px; }
.blog-date { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.blog-card h3 { margin-bottom: 0.8rem; font-size: 1.1rem; }
.blog-card p { color: #666; font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ---------- Article Page ---------- */
.article-hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.5) 100%),
    url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1200&q=80') center/cover no-repeat;
  padding: 100px 20px 80px;
  text-align: center;
}
.article-hero h1 { color: var(--off-white); max-width: 900px; margin: 0 auto 1rem; }
.article-hero .meta { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
}
.article-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--black);
}
.article-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.8rem; color: var(--gold-dark); }
.article-body p { color: #444; line-height: 1.8; }
.article-body ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-body ul li { list-style: disc; color: #444; margin-bottom: 0.5rem; }
.article-cta {
  background: var(--beige-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 2rem 0;
}
.article-cta p { margin-bottom: 1rem; font-weight: 600; }

/* ---------- Estimator ---------- */
.estimator-wrap {
  max-width: 750px;
  margin: 0 auto;
}
.step { display: none; }
.step.active { display: block; }
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: 2px solid var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #888;
  transition: var(--transition);
}
.step-dot.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.step-dot.done { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.step-connector { width: 60px; height: 2px; background: var(--beige-dark); margin: auto; border-radius: 2px; }
.estimator-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--black);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
select, input[type="text"], input[type="number"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--beige-dark);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; /* iOS min 16px */
  background: var(--white);
  color: var(--black);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
select:focus, input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--beige-dark);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}
.radio-option:hover { border-color: var(--gold); }
.radio-option input[type="radio"] { accent-color: var(--gold); }
.radio-option.selected { border-color: var(--gold); background: rgba(201,168,76,0.1); }

/* Results */
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 2rem 0; }
.result-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.result-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.result-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 0.5rem; }
.result-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}
.result-note { font-size: 0.8rem; color: #888; margin-top: 0.4rem; }
.result-card.special { background: var(--black); }
.result-card.special .result-label { color: #888; }
.result-card.special .result-value { color: var(--gold); }
.result-card.special .result-note { color: #666; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.contact-info { }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.contact-info-item .icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
textarea { resize: vertical; min-height: 130px; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.checkbox-group label { font-size: 0.85rem; color: #555; line-height: 1.5; }
.btn-block { width: 100%; text-align: center; }

/* ---------- Merci Page ---------- */
.merci-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.merci-icon { font-size: 5rem; color: var(--gold); margin-bottom: 1.5rem; }

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--beige-dark);
}
.legal-content p, .legal-content li { color: #444; line-height: 1.8; }
.legal-content ul { margin: 0.8rem 0 1.2rem 1.5rem; }
.legal-content ul li { list-style: disc; margin-bottom: 0.4rem; }
.legal-updated { font-size: 0.85rem; color: #888; margin-bottom: 2rem; }

/* ---------- Avis Page ---------- */
.rating-banner {
  background: var(--black);
  color: var(--off-white);
  text-align: center;
  padding: 60px 20px;
}
.rating-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { font-size: 2.5rem; color: var(--gold); letter-spacing: 4px; margin: 0.5rem 0; }
.rating-count { color: #888; font-size: 0.9rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(26,26,26,0.6)),
    url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=1200&q=80') center/cover no-repeat;
  padding: 80px 20px 60px;
  text-align: center;
  color: var(--off-white);
}
.page-hero h1 { color: var(--off-white); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--beige-dark);
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #666;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ---------- Table ---------- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.styled-table th {
  background: var(--black);
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.styled-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--beige-dark);
  color: #444;
}
.styled-table tr:hover td { background: rgba(201,168,76,0.05); }

/* ---------- Chatbot Widget ---------- */
#chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  z-index: 2000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#chatbot-toggle:hover { background: var(--gold-dark); transform: scale(1.1); }
#chatbot-window {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 340px;
  max-height: 480px;
  background: var(--off-white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 1999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}
#chatbot-window.open { display: flex; }
.chatbot-header {
  background: var(--black);
  color: var(--off-white);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-header-icon { font-size: 1.3rem; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--beige-dark);
  color: var(--black);
  align-self: flex-start;
  border-radius: 0 12px 12px 12px;
}
.chat-msg.user {
  background: var(--gold);
  color: var(--black);
  align-self: flex-end;
  border-radius: 12px 0 12px 12px;
}
.chatbot-input {
  display: flex;
  border-top: 1px solid var(--beige-dark);
  padding: 10px;
  gap: 8px;
}
.chatbot-input input {
  flex: 1;
  border: 1px solid var(--beige-dark);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  background: var(--white);
}
.chatbot-input button {
  background: var(--gold);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-input button:hover { background: var(--gold-dark); }

/* ---------- Footer ---------- */
footer {
  background: var(--black);
  color: var(--off-white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 50px;
}
.footer-brand img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}
.footer-brand .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--off-white);
  margin-bottom: 0.3rem;
}
.footer-brand .tagline { color: var(--gold); font-size: 0.8rem; font-style: italic; margin-bottom: 1rem; }
.footer-brand p { color: #888; font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  color: #888;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { color: #888; font-size: 0.85rem; line-height: 1.7; margin-bottom: 0; }
.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-dark); }

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- Misc ---------- */
.badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.highlight-box {
  background: var(--beige-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.highlight-box p { margin: 0; color: #444; }
.icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: #444;
  font-size: 0.9rem;
}
.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Blog card sub-classes ---------- */
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.blog-card-title { margin-bottom: 0.8rem; font-size: 1.1rem; }
.blog-card-excerpt { color: #666; font-size: 0.9rem; margin-bottom: 1.2rem; }

/* ---------- Article sub-classes ---------- */
.article-hero-overlay { /* overlay handled via background gradient on .article-hero */ }
.article-hero-meta { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 0.8rem; }
.article-category {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.article-layout { max-width: 820px; margin: 0 auto; padding: 60px 20px; }
.article-intro { font-size: 1.1rem; color: #444; font-style: italic; border-left: 4px solid var(--gold); padding-left: 20px; margin-bottom: 2rem; }

/* ---------- Review sub-classes ---------- */
.review-author { margin-top: 1rem; }
.review-name { font-weight: 700; color: var(--black); font-size: 0.9rem; }
.review-detail { color: var(--gold); font-size: 0.8rem; font-weight: 400; }
.review-stars { color: var(--gold); font-size: 1.3rem; margin-bottom: 1rem; letter-spacing: 2px; }

/* ---------- Rating banner sub-classes ---------- */
.rating-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.rating-label { color: #888; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; }

/* ---------- Google review section ---------- */
.google-review-section { text-align: center; padding: 60px 20px; background: var(--beige-dark); }
.google-review-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.google-review-box p { color: #555; margin-bottom: 1.5rem; }

/* ---------- Calculation table ---------- */
.calc-table {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.5rem 0;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--beige-dark);
  font-size: 0.95rem;
}
.calc-header {
  background: var(--black);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calc-label { color: #444; }
.calc-value { font-weight: 600; color: var(--black); }
.calc-total {
  background: var(--beige-dark);
  font-weight: 700;
}
.calc-total .calc-label { color: var(--black); font-weight: 700; }
.calc-total .calc-value { color: var(--gold-dark); font-size: 1.1rem; }
.calc-gain {
  background: var(--gold);
}
.calc-gain .calc-label, .calc-gain .calc-value { color: var(--black); font-weight: 700; }

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 50px 0; }

  /* Header */
  .hamburger { display: flex; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-top: 2px solid var(--gold);
    display: none;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; }
  nav ul li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  .header-inner { position: relative; }

  /* Grids → 1 col */
  .grid-3, .grid-2, .grid-4, .info-band-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }

  /* Hero */
  .hero { min-height: 70vh; }
  .cta-group .btn { width: 100%; text-align: center; }

  /* Estimator */
  .estimator-card { padding: 24px 20px; }

  /* Pricing */
  .pricing-card.featured { transform: none; }

  /* Chatbot */
  #chatbot-window {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 100px;
  }
  #chatbot-toggle { right: 20px; bottom: 20px; }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr 1fr; }
  .brand-text .name { font-size: 1rem; }
  .header-brand img { height: 52px; width: 52px; }
  .contact-form-wrap { padding: 24px 16px; }
  .article-body { padding: 40px 16px; }
  .legal-content { padding: 40px 16px; }
}
