/* ============================================================
   TOKODI CSABA VBF — Global Stylesheet
   Color palette:
     Charcoal:      #171717
     Deep grey:     #2B2B2B
     Electric yellow: #FFC400
     Amber:         #D89000
     Off-white:     #F7F3E8
     Mid-grey:      #4A4A4A
     Light grey:    #8A8A8A
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal:  #171717;
  --deep:      #2B2B2B;
  --yellow:    #FFC400;
  --amber:     #D89000;
  --offwhite:  #F7F3E8;
  --midgrey:   #4A4A4A;
  --lightgrey: #8A8A8A;
  --white:     #FFFFFF;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--offwhite);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--white); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.25; color: var(--white); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; color: var(--white); }
h4 { font-size: 1rem; font-weight: 600; color: var(--yellow); text-transform: uppercase; letter-spacing: .08em; }
p { color: #C8C4BA; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .5rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(23, 23, 23, 0.97);
  border-bottom: 1px solid rgba(255, 196, 0, 0.15);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.logo span { color: var(--yellow); }

.main-nav { display: flex; align-items: center; gap: .15rem; }
.main-nav a {
  font-size: .82rem;
  font-weight: 500;
  color: #B0ABA2;
  padding: .4rem .55rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,196,0,.1); }

/* Dropdown nav */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: .82rem;
  font-weight: 500;
  color: #B0ABA2;
  padding: .4rem .55rem;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255,196,0,.1);
}
.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(-135deg); margin-top: 3px; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: rgba(23,23,23,.98);
  border: 1px solid rgba(255,196,0,.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
  z-index: 2000;
  padding: .4rem;
  flex-direction: column;
  gap: .1rem;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  font-size: .82rem;
  font-weight: 500;
  color: #B0ABA2;
  padding: .5rem .8rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  display: block;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,196,0,.1); }

.btn-call-header {
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 800;
  font-size: .85rem;
  padding: .5rem 1.1rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-call-header:hover { background: var(--amber); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--offwhite); border-radius: 2px; transition: var(--transition); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(23,23,23,.98);
  z-index: 999;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: .5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--offwhite);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: rgba(255,196,0,.1); color: var(--yellow); }

/* ---------- Sticky Mobile CTA Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--deep);
  border-top: 1px solid rgba(255,196,0,.2);
  padding: .6rem 1rem;
  gap: .6rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem .5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
}
.mobile-cta-bar .mcta-call { background: var(--yellow); color: var(--charcoal); }
.mobile-cta-bar .mcta-email { background: transparent; color: var(--yellow); border: 1.5px solid var(--yellow); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,196,0,.25); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--yellow);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,196,0,.1); transform: translateY(-2px); }

.cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

/* ---------- Hero Section ---------- */
.hero {
  padding: 2.5rem 0 3rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,196,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left { display: flex; flex-direction: column; justify-content: center; }
.hero-subtitle {
  font-size: 1.1rem;
  color: #B0ABA2;
  margin-top: .75rem;
  max-width: 520px;
  line-height: 1.6;
}
.hero-desc {
  margin-top: 1rem;
  font-size: .95rem;
  color: #8A8A8A;
  max-width: 480px;
}

/* ---------- Contact Panel (SVG/CSS) ---------- */
.contact-panel {
  background: linear-gradient(145deg, #1E1E1E, #252525);
  border: 1px solid rgba(255,196,0,.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,196,0,.07), inset 0 1px 0 rgba(255,255,255,.05);
  font-size: .88rem;
}
.contact-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.panel-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.panel-title::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 4px var(--yellow); }
  50% { box-shadow: 0 0 12px var(--yellow), 0 0 20px rgba(255,196,0,.4); }
}

.panel-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.panel-row:last-of-type { border-bottom: none; }

.panel-icon {
  width: 26px; height: 26px;
  background: rgba(255,196,0,.1);
  border: 1px solid rgba(255,196,0,.2);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  font-size: .78rem;
}

.panel-row-content { display: flex; flex-direction: column; }
.panel-row-label { font-size: .64rem; color: var(--lightgrey); text-transform: uppercase; letter-spacing: .1em; }
.panel-row-value { font-size: .85rem; font-weight: 600; color: var(--white); margin-top: .05rem; }
.panel-row-value a { color: var(--yellow); }
.panel-row-value a:hover { text-decoration: underline; }

.panel-badge {
  margin-top: .75rem;
  background: rgba(255,196,0,.08);
  border: 1px solid rgba(255,196,0,.2);
  border-radius: 6px;
  padding: .45rem .75rem;
  font-size: .72rem;
  color: var(--offwhite);
  text-align: center;
  line-height: 1.5;
}

/* SVG current lines on panel */
.panel-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .18;
}

/* ---------- Quick Decision Strip ---------- */
.decision-strip {
  background: var(--deep);
  border-top: 1px solid rgba(255,196,0,.12);
  border-bottom: 1px solid rgba(255,196,0,.12);
  padding: 1.5rem 0;
}
.decision-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ds-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .3rem;
  padding: .75rem;
  border-right: 1px solid rgba(255,255,255,.06);
}
.ds-item:last-child { border-right: none; }
.ds-icon { font-size: 1.4rem; color: var(--yellow); }
.ds-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--lightgrey); }
.ds-value { font-size: .95rem; font-weight: 700; color: var(--white); }

/* ---------- Services Bento ---------- */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}

.bento-card {
  background: linear-gradient(145deg, #1C1C1C, #222222);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
/* Subtle glow corner */
.bento-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,196,0,.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover {
  border-color: rgba(255,196,0,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(255,196,0,.08);
}
/* Bottom accent line */
.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,196,0,.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.bento-card:hover::after { opacity: 1; }

/* Featured card variant */
.bento-card.bento-featured {
  background: linear-gradient(145deg, #1E1C10, #221E0E);
  border-color: rgba(255,196,0,.2);
}
.bento-card.bento-featured::before { opacity: .6; }

.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-3 { grid-column: span 3; }

.bento-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
  width: 44px; height: 44px;
  background: rgba(255,196,0,.1);
  border: 1px solid rgba(255,196,0,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.bento-card h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.bento-card p { font-size: .85rem; color: #7A7A7A; line-height: 1.55; }
.bento-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,196,0,.08);
  border: 1px solid rgba(255,196,0,.18);
  border-radius: 4px;
  padding: .2rem .5rem;
  margin-bottom: .6rem;
}
.bento-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--yellow);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--transition);
}
.bento-link:hover { gap: .6rem; }
/* Circuit line decoration */
.bento-circuit {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  opacity: .06;
  pointer-events: none;
}

/* ---------- Process Timeline ---------- */
.process-timeline {
  position: relative;
  padding: 2rem 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,196,0,.4), rgba(255,196,0,.8), rgba(255,196,0,.4), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.timeline-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .tl-empty { grid-column: 3; }
.timeline-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .tl-empty { grid-column: 1; }

.tl-dot {
  grid-column: 2;
  width: 44px; height: 44px;
  background: var(--deep);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: var(--yellow);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(255,196,0,.2);
}

.tl-content h3 { margin-bottom: .3rem; }
.tl-content p { font-size: .9rem; }

/* ---------- Why Cards ---------- */
.why-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.why-card h3 { margin-bottom: .5rem; }
.why-card p { font-size: .9rem; }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-stars { color: var(--yellow); font-size: 1rem; letter-spacing: .1em; }
.review-text { font-size: .9rem; color: #C8C4BA; font-style: italic; line-height: 1.6; flex: 1; }
.review-author { font-size: .82rem; font-weight: 700; color: var(--lightgrey); }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.reviews-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.reviews-meta { display: flex; flex-direction: column; gap: .2rem; }
.reviews-meta strong { color: var(--white); }
.reviews-meta span { font-size: .85rem; color: var(--lightgrey); }

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,196,0,.3); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: .97rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--yellow); }
.faq-chevron {
  width: 20px; height: 20px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item.open .faq-chevron { transform: rotate(-135deg); margin-top: 4px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.25rem;
}
.faq-answer p { font-size: .92rem; color: #B0ABA2; padding-bottom: 1.1rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- Area / Map Block ---------- */
.area-block {
  background: var(--deep);
  border: 1px solid rgba(255,196,0,.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.area-text h2 { margin-bottom: 1rem; }
.area-text p { font-size: .95rem; margin-bottom: 1rem; }

/* SVG Map */
.map-panel {
  background: #1A1A1A;
  border: 1px solid rgba(255,196,0,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  position: relative;
}
.map-svg { width: 100%; max-width: 320px; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, #1E1E1E 0%, #252525 100%);
  border-top: 1px solid rgba(255,196,0,.15);
  border-bottom: 1px solid rgba(255,196,0,.15);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: .75rem; }
.cta-band p { color: #8A8A8A; margin-bottom: 2rem; }
.cta-band .cta-group { justify-content: center; }

/* ---------- Section Divider ---------- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,196,0,.2), transparent);
  margin: 0 auto;
  max-width: 800px;
}

/* ---------- Intro Text Block ---------- */
.intro-block {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.intro-block p { font-size: 1.05rem; color: #B0ABA2; }

/* ---------- Page Hero (service pages) ---------- */
.page-hero {
  padding: 2rem 0 2.5rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,196,0,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Jogszabalyok page ---------- */
.legal-section {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.legal-section h3 { margin-bottom: .75rem; }
.legal-section p { font-size: .95rem; margin-bottom: .75rem; }
.legal-note {
  background: rgba(255,196,0,.07);
  border: 1px solid rgba(255,196,0,.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .88rem;
  color: #B0ABA2;
  margin-bottom: 2rem;
}

/* ---------- Kapcsolat page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-card h3 { margin-bottom: 1.5rem; }
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 36px; height: 36px;
  background: rgba(255,196,0,.1);
  border: 1px solid rgba(255,196,0,.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.contact-row-text { display: flex; flex-direction: column; gap: .15rem; }
.contact-row-text span { font-size: .75rem; color: var(--lightgrey); text-transform: uppercase; letter-spacing: .08em; }
.contact-row-text strong { color: var(--white); font-size: .97rem; }
.contact-row-text a { color: var(--yellow); }
.contact-row-text a:hover { text-decoration: underline; }

.placeholder-box {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: .82rem;
  color: var(--lightgrey);
  font-style: italic;
  text-align: center;
  margin-top: .5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111111;
  border-top: 1px solid rgba(255,196,0,.1);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand p { font-size: .88rem; color: #6A6A6A; margin-top: .75rem; max-width: 280px; }
.footer-col h4 { color: var(--yellow); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul li a { font-size: .88rem; color: #6A6A6A; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--offwhite); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: #4A4A4A; }
.footer-bottom a { font-size: .8rem; color: #4A4A4A; }
.footer-bottom a:hover { color: var(--yellow); }

/* breadcrumb removed */

/* ---------- Highlight Number ---------- */
.highlight-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.highlight-label { font-size: .8rem; color: var(--lightgrey); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Caveat ---------- */
.caveat {
  font-size: .8rem;
  color: var(--lightgrey);
  font-style: italic;
  margin-top: .5rem;
}

/* ---------- Image Placeholder ---------- */
.img-placeholder {
  background: #1E1E1E;
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--lightgrey);
  font-size: .82rem;
  font-style: italic;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-5, .bento-card.span-7, .bento-card.span-8, .bento-card.span-4 { grid-column: span 6; }
  .bento-card.span-3 { grid-column: span 6; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-call-header { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .why-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .area-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .decision-strip .container { grid-template-columns: repeat(2,1fr); }

  .process-timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 1rem; }
  .timeline-item:nth-child(odd) .tl-content,
  .timeline-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .tl-empty,
  .timeline-item:nth-child(even) .tl-empty { display: none; }
  .tl-dot { grid-column: 1; }

  .services-bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span-5, .bento-card.span-7, .bento-card.span-8, .bento-card.span-4,
  .bento-card.span-6, .bento-card.span-3 { grid-column: span 1; }
}

@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-bento { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .decision-strip .container { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.7rem; }
  .hero { padding: 3rem 0 2.5rem; }
}
