/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F7F0E6;
  --cream-dark: #EDE0CC;
  --beige: #E8D5B5;
  --beige-mid: #D4C4A8;
  --beige-dark: #C4AF90;
  --brown-dark: #2E2020;
  --brown-mid: #5C4A42;
  --brown-light: #8B6F5E;
  --brown-warm: #7A5C4E;
  --gold: #C9A96E;
  --gold-light: #E8C98A;
  --white: #FFFFFF;
  --off-white: #FDFAF6;
  --text-dark: #1C1410;
  --text-mid: #4A3C36;
  --text-light: #8A7A72;
  --shadow-xs: 0 1px 4px rgba(46,32,32,0.06);
  --shadow-sm: 0 4px 16px rgba(46,32,32,0.08);
  --shadow-md: 0 12px 40px rgba(46,32,32,0.12);
  --shadow-lg: 0 24px 64px rgba(46,32,32,0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 240, 230, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(92,74,66,0.12);
  transition: var(--transition);
}

.navbar.scrolled::before {
  background: rgba(247, 240, 230, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brown-dark);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--brown-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  z-index: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.nav-links a:hover {
  background: var(--brown-dark);
  color: var(--beige);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 28px 80px;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,74,66,0.08) 0%, transparent 70%);
  bottom: -80px; left: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,32,32,0.06);
  border: 1px solid rgba(46,32,32,0.12);
  color: var(--brown-mid);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 12px 32px rgba(46,32,32,0.18));
  animation: floatLogo 5s ease-in-out infinite;
  position: relative;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}

.title-main {
  font-weight: 900;
  font-size: clamp(3.2rem, 9vw, 6rem);
  color: var(--brown-dark);
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
}

.title-sub {
  font-weight: 300;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  color: var(--brown-light);
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
  position: relative;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.hero-desc {
  max-width: 560px;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  position: relative;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
  position: relative;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--beige);
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(46,32,32,0.28);
}

.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(46,32,32,0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--brown-dark);
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(46,32,32,0.3);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--brown-dark);
  color: var(--beige);
  border-color: var(--brown-dark);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(92,74,66,0.12);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 40px;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(92,74,66,0.12);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--brown-light);
  border-bottom: 1.5px solid var(--brown-light);
  transform: rotate(45deg);
  animation: bounce 2.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 1; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(201,169,110,0.25);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header h2 em {
  font-style: italic;
  color: var(--brown-mid);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about {
  padding: 110px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(92,74,66,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(92,74,66,0.15);
}

.about-card:hover::after {
  transform: scaleX(1);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.about-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.about-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
}

.about-note {
  background: linear-gradient(135deg, #FDF6E8, #FAF0D8);
  border: 1px solid rgba(201,169,110,0.3);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.note-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.about-note p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ===== SERVICES ===== */
.services {
  padding: 110px 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(92,74,66,0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(92,74,66,0.15);
}

.service-card.featured {
  background: var(--brown-dark);
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 0 40px;
  padding: 44px 48px;
}

.service-card.featured .service-icon { grid-row: 1; grid-column: 1; }
.service-card.featured h3 { grid-row: 2; grid-column: 1; }
.service-card.featured p { grid-row: 3; grid-column: 1; }
.service-card.featured .service-link {
  grid-row: 1 / 4;
  grid-column: 2;
  align-self: center;
  white-space: nowrap;
}

.service-card.featured h3,
.service-card.featured p { color: var(--beige); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.72;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.service-link:hover {
  background: var(--gold-light);
  transform: translateX(3px);
}

/* ===== NEURO SECTION ===== */
.neuro-section {
  padding: 110px 0;
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.neuro-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.neuro-section::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,74,66,0.15) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

.section-header.light h2 { color: var(--beige); }
.section-header.light h2 em { color: var(--gold); }
.light-tag {
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  border-color: rgba(201,169,110,0.2);
}
.light-desc { color: rgba(232,213,181,0.65); }

/* ===== CHAT WIDGET ===== */
.chat-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  height: 600px;
  position: relative;
  z-index: 1;
}

.chat-header {
  background: linear-gradient(135deg, #2E2020 0%, #4A3028 100%);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(201,169,110,0.4);
}

.chat-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.chat-info { flex: 1; }

.chat-info h3 {
  color: var(--beige);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(232,213,181,0.6);
  font-size: 0.75rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #6FCF97;
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.chat-badge {
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  border: 1px solid rgba(201,169,110,0.2);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F9F5EF;
  scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--beige-dark); border-radius: 3px; }

.message {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  animation: msgIn 0.28s ease;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bot-message { flex-direction: row; }
.user-message { flex-direction: row-reverse; }

.msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--beige-dark);
}

.msg-avatar img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.msg-bubble {
  max-width: 74%;
  padding: 13px 17px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.65;
  position: relative;
}

.bot-message .msg-bubble {
  background: var(--white);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(92,74,66,0.07);
}

.user-message .msg-bubble {
  background: var(--brown-dark);
  color: var(--beige);
  border-bottom-right-radius: 4px;
}

.msg-bubble p { margin-bottom: 5px; }
.msg-bubble p:last-of-type { margin-bottom: 0; }

.msg-time {
  display: block;
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 6px;
  text-align: right;
}

.user-message .msg-time { color: rgba(232,213,181,0.5); }

/* Typing indicator */
.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 18px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: var(--brown-light);
  border-radius: 50%;
  animation: typingDot 1.3s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.typing-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* Suggestions */
.chat-suggestions {
  padding: 10px 16px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  background: var(--white);
  border-top: 1px solid rgba(92,74,66,0.07);
  flex-shrink: 0;
}

.suggestion-btn {
  background: var(--cream);
  border: 1px solid rgba(92,74,66,0.15);
  color: var(--brown-mid);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.suggestion-btn:hover {
  background: var(--brown-dark);
  color: var(--beige);
  border-color: var(--brown-dark);
}

/* Chat Input */
.chat-input-area {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid rgba(92,74,66,0.08);
  flex-shrink: 0;
}

#chatInput {
  flex: 1;
  border: 1.5px solid rgba(92,74,66,0.15);
  border-radius: 50px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}

#chatInput:focus {
  border-color: var(--brown-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(92,74,66,0.07);
}

#chatInput::placeholder { color: var(--text-light); }

#sendBtn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

#sendBtn svg {
  width: 17px;
  height: 17px;
  color: var(--beige);
}

#sendBtn:hover {
  background: var(--brown-mid);
  transform: scale(1.06);
}

#sendBtn:active { transform: scale(0.94); }

.neuro-disclaimer {
  max-width: 780px;
  margin: 18px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.neuro-disclaimer p {
  color: rgba(232,213,181,0.4);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
  padding: 110px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(92,74,66,0.08);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(92,74,66,0.15);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.contact-card h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--text-mid);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.contact-link {
  color: var(--brown-mid);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
  word-break: break-all;
  transition: var(--transition);
  border-bottom: 1px solid rgba(92,74,66,0.2);
  padding-bottom: 2px;
}

.contact-link:hover {
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}

/* ===== FOOTER ===== */
.footer {
  background: #1C1410;
  color: var(--beige);
  padding: 64px 0 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232,213,181,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--beige);
  letter-spacing: 1px;
}

.footer-name span {
  font-weight: 300;
  font-size: 0.75rem;
  display: block;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232,213,181,0.45);
  margin-top: 3px;
}

.footer-tagline {
  color: rgba(232,213,181,0.4);
  font-size: 0.82rem;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: var(--beige);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.7;
}

.footer-col a {
  color: rgba(232,213,181,0.45);
  text-decoration: none;
  font-size: 0.86rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--beige); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(232,213,181,0.3);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.footer-note {
  color: rgba(232,213,181,0.2) !important;
  font-size: 0.7rem !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 36px 32px;
  }
  .service-card.featured .service-icon,
  .service-card.featured h3,
  .service-card.featured p,
  .service-card.featured .service-link {
    grid-column: 1;
    grid-row: auto;
  }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .contact-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(92,74,66,0.12);
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 16px 40px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-card:last-child { grid-column: span 1; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .chat-wrapper { height: 540px; }
}

@media (max-width: 480px) {
  .chat-suggestions { display: none; }
  .hero-stats { width: 100%; }
}