/* ===== ROOT VARIABLES ===== */
:root {
  --onyx: #1a1a1a;
  --sage: #7d9b76;
  --gold: #c9a84c;
  --beige: #f5f0e8;
  --beige-dark: #ede7d9;
  --white: #ffffff;
  --text-muted: #666;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--beige);
  color: var(--onyx);
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.75rem; }
.section-title span { color: var(--gold); }
.section-sub { color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; }

.divider { width: 50px; height: 3px; background: var(--gold); margin-bottom: 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold { background: var(--gold); color: var(--onyx); }
.btn-gold:hover { background: #b8943e; transform: translateY(-2px); }

.btn-sage { background: var(--sage); color: var(--white); }
.btn-sage:hover { background: #6a8763; transform: translateY(-2px); }

.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--onyx); }

.btn-outline-dark { background: transparent; border-color: var(--onyx); color: var(--onyx); font-size: 0.8rem; padding: 0.6rem 1.4rem; }
.btn-outline-dark:hover { background: var(--onyx); color: var(--white); }

.full-width { width: 100%; text-align: center; }

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

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.nav-links { display: flex; align-items: center; gap: 0.25rem; }

.nav-links .nav-link {
  color: var(--beige);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: var(--transition);
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--gold); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--onyx);
  min-width: 220px;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
  z-index: 100;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--beige);
  font-size: 0.85rem;
  transition: var(--transition);
}

.dropdown-menu li a:hover { background: rgba(201,168,76,0.1); color: var(--gold); padding-left: 1.6rem; }

.nav-cta { font-size: 0.8rem; padding: 0.6rem 1.4rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--beige); transition: var(--transition); }
.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.92) 50%, rgba(125,155,118,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 0 calc((100% - 1200px) / 2 + 2rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--gold); }

.hero > .hero-content > p {
  font-size: 1.05rem;
  color: #ccc;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-pillars li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--beige);
  font-size: 0.9rem;
}

.hero-pillars li i { color: var(--sage); }

.hero blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: #aaa;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== HERO BRAND ANIMATION ===== */

/* Pass 1 & 2: slide right to left */
@keyframes slidePass {
  0%   { transform: translateX(110vw); opacity: 1; }
  100% { transform: translateX(-110vw); opacity: 1; }
}

/* Pass 3 left word: comes from left, stops left of center */
@keyframes meetFromLeft {
  0%   { transform: translateX(-110vw); opacity: 1; }
  40%  { transform: translateX(0); opacity: 1; }
  70%  { transform: translateX(0) scaleY(1); opacity: 1; }
  85%  { transform: translateX(0) scaleY(0.05); opacity: 0.6; }
  100% { transform: translateX(0) scaleY(0); opacity: 0; }
}

/* Pass 3 right word: comes from right, stops right of center */
@keyframes meetFromRight {
  0%   { transform: translateX(110vw); opacity: 1; }
  40%  { transform: translateX(0); opacity: 1; }
  70%  { transform: translateX(0) scaleY(1); opacity: 1; }
  85%  { transform: translateX(0) scaleY(0.05); opacity: 0.6; }
  100% { transform: translateX(0) scaleY(0); opacity: 0; }
}

.hero-brand-animate {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.75rem, 1.6vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  pointer-events: none;
}

.hero-brand-animate .pass {
  display: block;
  position: absolute;
  left: 0; right: 0;
  text-align: center;
  opacity: 0;
}

/* Pass 1 */
.hero-brand-animate .pass-1 {
  animation: slidePass 10s linear forwards;
  animation-delay: 0s;
}

/* Pass 2 */
.hero-brand-animate .pass-2 {
  animation: slidePass 10s linear forwards;
  animation-delay: 10.8s;
}

/* Pass 3 split words */
.hero-brand-animate .pass-3-left {
  display: inline-block;
  position: absolute;
  left: 0; right: 0;
  text-align: right;
  padding-right: 51%;
  opacity: 0;
  animation: meetFromLeft 6s ease-in-out forwards;
  animation-delay: 13.6s;
}

.hero-brand-animate .pass-3-right {
  display: inline-block;
  position: absolute;
  left: 0; right: 0;
  text-align: left;
  padding-left: 51%;
  opacity: 0;
  animation: meetFromRight 6s ease-in-out forwards;
  animation-delay: 13.6s;
  transform-origin: center bottom;
}

/* ===== SECTIONS SHARED ===== */
section { padding: 5rem 0; }

/* ===== WHO WE ARE ===== */
.who-we-are { background: var(--white); }

.col-image { position: relative; }

.image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img { width: 100%; height: 620px; object-fit: cover; }

.image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--onyx);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 3px;
  line-height: 1.5;
}

.col-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ===== SERVICES ===== */
.services-section { background: var(--beige); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-top: 4px solid var(--sage);
  padding: 2rem;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { border-top-color: var(--gold); background: var(--onyx); color: var(--white); }
.service-card.featured p { color: #bbb; }
.service-card.featured .service-list li { color: #ccc; }
.service-card.featured .service-list li::before { color: var(--gold); }

.service-icon { font-size: 2rem; color: var(--sage); }
.service-card.featured .service-icon { color: var(--gold); }

.service-card h3 { font-size: 1.4rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

.service-list { padding-left: 0; margin-top: 0.25rem; }
.service-list li { font-size: 0.85rem; color: var(--text-muted); padding: 0.2rem 0; padding-left: 1rem; position: relative; }
.service-list li::before { content: '—'; position: absolute; left: 0; color: var(--sage); }

.service-card .btn { margin-top: auto; align-self: flex-start; }

/* ===== WHY US ===== */
.why-us { background: var(--onyx); color: var(--white); }
.why-us .section-label { color: var(--sage); }
.why-us .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold);
  padding: 1.75rem;
  border-radius: 3px;
  transition: var(--transition);
}

.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-card i { font-size: 1.75rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.why-card h4 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; color: #aaa; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.about-card {
  background: var(--beige);
  padding: 2rem;
  border-radius: 4px;
  border-bottom: 3px solid var(--sage);
  transition: var(--transition);
}

.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-card i { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.about-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.about-card p { font-size: 0.9rem; color: var(--text-muted); }

.who-we-serve { text-align: center; padding: 3rem 2rem; background: var(--beige); border-radius: 4px; }
.who-we-serve h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.who-we-serve > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.serve-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.serve-tags span {
  background: var(--white);
  border: 1px solid var(--sage);
  color: var(--onyx);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.serve-tags span:hover { background: var(--sage); color: var(--white); }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--beige-dark); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}

.video-placeholder { border-radius: 4px; overflow: hidden; }

.video-thumb {
  background: var(--onyx);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.video-thumb:hover { background: #2a2a2a; }
.video-thumb i { font-size: 3rem; color: var(--gold); }
.video-thumb p { color: #aaa; font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item { border: 1px solid var(--beige-dark); border-radius: 4px; overflow: hidden; }

.faq-question {
  width: 100%;
  background: var(--beige);
  border: none;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--onyx);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover { background: var(--beige-dark); }
.faq-question.open { background: var(--onyx); color: var(--gold); }
.faq-question.open i { transform: rotate(45deg); color: var(--gold); }
.faq-question i { transition: var(--transition); color: var(--sage); }

.faq-answer { display: none; padding: 1.25rem 1.5rem; background: var(--white); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-section { background: var(--beige); }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.2rem;
  width: 20px;
  flex-shrink: 0;
}

.contact-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-item strong { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--sage); }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--onyx); }
.contact-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--onyx);
  color: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--onyx); }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.contact-form h3 { font-size: 1.6rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: var(--beige);
  color: var(--onyx);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-note { font-size: 0.78rem; color: #999; text-align: center; margin-top: 0.75rem; }
.form-note i { color: var(--sage); }

/* ===== CHATBOT ===== */
#chatbot-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; }

#chatbot-toggle {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--onyx);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

#chatbot-toggle:hover { background: #b8943e; transform: scale(1.05); }

#chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#chatbot-window.hidden { display: none; }

.chatbot-header {
  background: var(--onyx);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.chatbot-header i { color: var(--gold); margin-right: 0.5rem; }

.chatbot-header button { background: none; border: none; color: #aaa; cursor: pointer; font-size: 1rem; }
.chatbot-header button:hover { color: var(--white); }

.chatbot-body { padding: 1rem; min-height: 200px; max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.75rem; }

.chat-msg {
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  max-width: 85%;
  line-height: 1.5;
}

.chat-msg.bot { background: var(--beige); color: var(--onyx); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-msg.user { background: var(--gold); color: var(--onyx); align-self: flex-end; border-bottom-right-radius: 3px; }

.chatbot-input { display: flex; border-top: 1px solid #eee; }

.chatbot-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 0.85rem;
  font-family: 'Lato', sans-serif;
  outline: none;
}

.chatbot-input button {
  background: var(--gold);
  border: none;
  padding: 0 1rem;
  color: var(--onyx);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.chatbot-input button:hover { background: #b8943e; }

/* ===== FOOTER ===== */
footer { background: var(--onyx); }

.footer-top { padding: 4rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo { height: 90px; width: auto; margin-bottom: 1rem; }

.footer-brand p { font-size: 0.88rem; color: #888; line-height: 1.8; margin-bottom: 1.25rem; }

.footer-links h4,
.footer-contact h4 { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }

.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul a { color: #888; font-size: 0.88rem; transition: var(--transition); }
.footer-links ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact p { color: #888; font-size: 0.88rem; margin-bottom: 0.75rem; line-height: 1.7; }
.footer-contact i { color: var(--gold); margin-right: 0.4rem; }
.footer-contact a { color: #888; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p { color: #555; font-size: 0.82rem; line-height: 1.8; }

/* ===== ERROR PAGE ===== */
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.error-container { max-width: 600px; }

.error-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--onyx);
  line-height: 1;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.error-zero { color: var(--gold); font-size: 0.7em; }

.error-container h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-container p { color: var(--text-muted); margin-bottom: 2rem; }

.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

.error-links p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.error-links ul { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.error-links ul a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage);
  font-size: 0.88rem;
  transition: var(--transition);
}
.error-links ul a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 90px; left: 0; right: 0; background: var(--onyx); padding: 1rem 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 0.85rem 2rem; border-radius: 0; }
  .dropdown-menu { position: static; border-top: none; box-shadow: none; background: rgba(255,255,255,0.05); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-content { margin: 0; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .error-actions { flex-direction: column; align-items: center; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.93) 55%, rgba(125,155,118,0.55) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 0 calc((100% - 1200px) / 2 + 2rem);
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin: 0.4rem 0 0.75rem;
}

.page-hero-content h1 span { color: var(--gold); }
.page-hero-content p { color: #ccc; font-size: 1rem; max-width: 500px; }

/* ===== SERVICE MODEL BAR ===== */
.service-model-bar {
  background: var(--onyx);
  padding: 1.25rem 0;
  border-bottom: 2px solid var(--gold);
}

.service-model-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-model-grid div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--beige);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-model-grid i { color: var(--gold); font-size: 1rem; }

/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section { padding: 5rem 0; }
.bg-white { background: var(--white); }
.bg-beige { background: var(--beige); }
.bg-onyx { background: var(--onyx); }

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.service-detail-icon {
  width: 60px; height: 60px;
  background: rgba(125,155,118,0.12);
  border: 2px solid var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sage);
  margin-bottom: 1rem;
}

.service-detail-icon.gold {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.service-detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.25rem 0 1.75rem;
}

.service-detail-cols h4 {
  font-size: 1rem;
  color: var(--onyx);
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.service-detail-image {
  height: 420px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.15);
}

.bg-sage-light { background: linear-gradient(135deg, #7d9b76, #5a7a54); }
.bg-onyx-light { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); }
.bg-gold-light { background: linear-gradient(135deg, #c9a84c, #a8873a); }

/* ===== ABOUT STORY / MVP ===== */
.about-story { background: var(--white); }
.mvp-section { background: var(--beige); }
.serve-section { background: var(--white); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--onyx);
  padding: 4rem 0;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-inner h2 span { color: var(--gold); }
.cta-inner p { color: #aaa; margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ CATEGORIES ===== */
.faq-page { background: var(--beige); }

.faq-category { margin-bottom: 3rem; }

.faq-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--onyx);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-cat-title i { color: var(--gold); font-size: 1.2rem; }

/* ===== CONTACT PAGE ===== */
.contact-page { background: var(--beige); }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(125,155,118,0.1);
  border-left: 3px solid var(--sage);
  padding: 1rem 1.25rem;
  border-radius: 3px;
  margin-top: 1.5rem;
}

.contact-note i { color: var(--sage); margin-top: 0.2rem; flex-shrink: 0; }
.contact-note p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== MAP ===== */
.map-section { background: var(--white); }
.map-wrapper { border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .page-hero-content { margin: 0; }
  .two-col.reverse { direction: ltr; }
  .service-detail-cols { grid-template-columns: 1fr; }
  .service-model-grid { justify-content: flex-start; gap: 1.25rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ===== SERVE TAGS INTERACTIVE ===== */
.serve-tag {
  background: var(--white);
  border: 1px solid var(--sage);
  color: var(--onyx);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.serve-tag:hover { background: var(--sage); color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(125,155,118,0.3); }
.serve-tag.active { background: var(--gold); color: var(--onyx); border-color: var(--gold); }

/* ===== SERVE MODAL ===== */
.serve-modal {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.75);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.serve-modal.hidden { display: none; }

.serve-modal-box {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  border-top: 4px solid var(--gold);
  animation: modalIn 0.25s ease;
}

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

.serve-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #aaa;
  cursor: pointer;
  transition: var(--transition);
}

.serve-modal-close:hover { color: var(--onyx); }

.serve-modal-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.serve-modal-box h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.serve-modal-box p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.modal-list { margin-bottom: 1.5rem; }
.modal-list li { font-size: 0.88rem; color: var(--text-muted); padding: 0.25rem 0 0.25rem 1rem; position: relative; }
.modal-list li::before { content: '—'; position: absolute; left: 0; color: var(--sage); }

/* ===== SERVING AREA ===== */
.serving-area { background: var(--onyx); padding: 5rem 0; }
.serving-area .section-label { color: var(--sage); }
.serving-area .section-title { color: var(--white); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.area-card:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.area-card i { color: var(--gold); font-size: 0.9rem; }
.area-card span { color: var(--beige); font-size: 0.88rem; font-weight: 700; }
.area-card-more { border-style: dashed; }
.area-card-more span { color: #888; }

.area-note { font-size: 0.88rem; color: #888; text-align: center; }
.area-note a { color: var(--gold); text-decoration: underline; }

/* ===== SERVICES CTA ===== */
.services-cta { text-align: center; margin-top: 2.5rem; }
