:root {
  --dark:    #2B2B2B;
  --darker:  #1E1E1E;
  --card:    #363636;
  --orange:  #E8622A;
  --orange2: #FF7A3D;
  --light:   #F0ECE4;
  --muted:   #AAAAAA;
  --white:   #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* Full-bleed slabs (home sections) */
.home-slab {
  /* warmer/darker slab */
  background: linear-gradient(135deg, #121212 0%, #3A281C 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.home-slab--alt {
  /* cooler slate slab for contrast */
  background: linear-gradient(135deg, #0F141A 0%, #1C2430 100%);
}

.home-slab:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.home-slab .section {
  padding: 72px 24px;
}

.home-slab-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--darker);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0 20px;
  height: 56px;
  line-height: 56px;
  color: var(--light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--orange);
  color: var(--white);
}

.nav-interpreting-hidden {
  display: none !important;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--darker) 0%, #3A2E20 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,42,0.18) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.hero h1 span { color: var(--orange); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.hero-arrow {
  font-size: 1.4rem;
  color: var(--orange);
  margin: 4px 0 32px;
  letter-spacing: 4px;
}

.hero-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232,98,42,0.35);
}

.hero-cta:hover { background: var(--orange2); transform: translateY(-2px); }

/* ===== SECTION LAYOUT ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.section-tagline {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px 0 32px;
}

/* ===== ABOUT (HOME) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media(max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-card {
  background: var(--card);
  border-radius: 6px;
  padding: 36px;
  border-top: 3px solid var(--orange);
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.about-card p { color: var(--muted); font-size: 0.97rem; }

/* Photo placeholder */
.photo-box {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--darker);
  border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.naati-badge {
  display: inline-block;
  background: var(--darker);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.cpn-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cpn-item {
  font-family: 'Lato', monospace;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--darker);
  padding: 48px 24px 40px;
  border-bottom: 1px solid #444;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.page-header-split .page-header-lead {
  flex: 1 1 280px;
  min-width: 0;
}

.page-header-split .section-tagline {
  margin-bottom: 0;
}

.page-header-split .page-header-cta {
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .page-header-split {
    flex-direction: column;
    align-items: stretch;
  }
  .page-header-split .page-header-cta {
    width: 100%;
    text-align: center;
  }
}

.page-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}

/* ===== SERVICE CARDS ===== */
.service-intro { color: var(--muted); max-width: 680px; margin-bottom: 40px; font-size: 0.97rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--card);
  border-radius: 6px;
  padding: 32px 28px;
  border-top: 3px solid var(--orange);
}

.service-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card .sub {
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-list li {
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-list li::before {
  content: '✔';
  color: var(--orange);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.category-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  margin: 18px 0 8px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media(max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--card);
  border-radius: 6px;
  padding: 36px;
  border-top: 3px solid var(--orange);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover { background: var(--orange2); transform: translateY(-2px); }

.cta-btn.outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.cta-btn.outline:hover {
  background: var(--orange);
  color: var(--white);
}

.calendly-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  border-top: 1px solid #444;
  padding: 28px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-inner a {
  color: var(--orange);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1, .hero-sub, .hero-arrow, .hero-cta {
  animation: fadeUp 0.6s ease both;
}
.hero-sub   { animation-delay: 0.1s; }
.hero-arrow { animation-delay: 0.2s; }
.hero-cta   { animation-delay: 0.3s; }

/* ===== MOBILE NAV ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.whatsapp-float:focus {
  outline: 2px solid var(--light);
  outline-offset: 3px;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@media(max-width: 650px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--darker);
    border-top: 1px solid #444;
  }
  .nav-links.open { display: flex; }
  .nav-links a { height: auto; line-height: 1; padding: 16px 24px; border-bottom: 1px solid #333; }
}
