/* =============================================
   MATHIAS AUTO LOCKSMITH — Global Stylesheet
   Stack: GitHub Pages + Cloudflare + Basin
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* === TOKENS === */
:root {
  --bg:         #1a1a1a;
  --bg-card:    #242424;
  --border:     #333333;
  --gold:       #c9962a;
  --gold-light: #dba83a;
  --text:       #ffffff;
  --text-muted: #9a9a9a;
  --radius:     4px;
  --ease:       0.2s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1  { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; }
h2  { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 700; }
h3  { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
p   { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
}

/* === LAYOUT === */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
section    { padding: 88px 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  border: none;
  line-height: 1;
}
.btn-primary           { background: var(--gold); color: #000; }
.btn-primary:hover     { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline           { background: transparent; color: var(--text); border: 1.5px solid #555; }
.btn-outline:hover     { border-color: var(--gold); color: var(--gold); }
.btn-dark              { background: #000; color: #fff; }
.btn-dark:hover        { background: #111; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.scrolled {
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img    { height: 38px; width: auto; }
.nav-logo-text   { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-call {
  background: var(--gold);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav-call:hover { background: var(--gold-light) !important; color: #000 !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(26,26,26,0.98);
  border-top: 1px solid var(--border);
  padding: 24px 28px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-call {
  margin-top: 12px;
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius);
  display: block;
  border-bottom: none;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d0d0d;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}
.hero h1  { color: #fff; margin-bottom: 20px; max-width: 680px; }
.hero > .container > .hero-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-ctas .btn { padding: 15px 30px; font-size: 0.95rem; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why { background: var(--bg); }
.why .section-head { margin-bottom: 52px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.why-card {
  background: var(--bg-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--ease);
}
.why-card:hover { background: #2a2a2a; }
.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,150,42,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 8px;
}
.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.3;
}
.why-card p  { font-size: 0.87rem; line-height: 1.6; max-width: none; margin: 0; }

/* =============================================
   MEET GARETH
   ============================================= */
.meet {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.meet-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.meet-photo-wrap { position: relative; }
.meet-photo-wrap img {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.meet-frame {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
  z-index: 0;
}
.meet-photo-wrap img { position: relative; z-index: 1; }
.meet-badges  { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,150,42,0.08);
  border: 1px solid rgba(201,150,42,0.25);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.meet-text p   { margin-bottom: 18px; line-height: 1.75; }
.meet-text p:last-of-type { margin-bottom: 24px; }
.meet-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 24px 0 32px;
  background: rgba(201,150,42,0.04);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.meet-text .eyebrow { margin-bottom: 10px; }
.meet-text h2  { margin-bottom: 24px; }

/* =============================================
   SERVICE AREA
   ============================================= */
.area { background: var(--bg); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-map-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.area-text h2  { margin-bottom: 16px; }
.area-text > p { margin-bottom: 28px; }
.area-towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.town-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--ease);
}
.town-pill:hover { border-color: var(--gold); }
.town-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.services-overview {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.3;
}
.service-card-body p  { font-size: 0.87rem; line-height: 1.65; max-width: none; flex: 1; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.service-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how { background: var(--bg); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 56px;
}
.how-connector {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border) 10%, var(--border) 90%, transparent 100%);
}
.how-step   { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  transition: border-color var(--ease), background var(--ease);
}
.how-step:hover .step-num { border-color: var(--gold); background: rgba(201,150,42,0.08); }
.how-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0;
  line-height: 1.3;
}
.how-step p { font-size: 0.85rem; max-width: none; line-height: 1.6; }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list  { border-top: 1px solid var(--border); }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform var(--ease), border-color var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip { background: var(--gold); padding: 72px 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text h2   { color: #000; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.cta-strip-text p    { color: rgba(0,0,0,0.65); max-width: none; margin-top: 8px; font-size: 1rem; }
.cta-strip .btn-dark { padding: 18px 36px; font-size: 1rem; flex-shrink: 0; white-space: nowrap; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #111;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand-logo { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #4ade80;
}
.available-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); max-width: none; margin: 0; }
.footer-social   { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all var(--ease);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-muted); transition: color var(--ease); }
.footer-legal a:hover { color: var(--text); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 140px 0 72px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}
.page-hero p  { font-size: 1.05rem; max-width: 580px; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full { background: var(--bg); }
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse    { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-block-text h2 { margin-bottom: 16px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.service-block-text p  { margin-bottom: 24px; line-height: 1.75; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(201,150,42,0.1);
  border-radius: 50%;
  border: 1.5px solid rgba(201,150,42,0.4);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23c9962a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
  padding: 72px 0;
}
.about-photo {
  width: 100%;
  border-radius: 6px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
}
.about-text p { margin-bottom: 18px; line-height: 1.75; }
.about-quote  {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
  background: rgba(201,150,42,0.04);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.about-values { background: var(--bg); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: border-color var(--ease);
}
.value-card:hover { border-color: var(--gold); }
.value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.3;
}
.value-card p { font-size: 0.87rem; max-width: none; line-height: 1.65; }
.about-area   { background: var(--bg-card); border-top: 1px solid var(--border); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-details h2 { margin-bottom: 8px; }
.contact-details > p { margin-bottom: 36px; line-height: 1.7; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-of-type { border-top: 1px solid var(--border); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,150,42,0.08);
  border: 1px solid rgba(201,150,42,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-text { display: flex; flex-direction: column; gap: 3px; }
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.contact-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.contact-item-value a { color: var(--text); transition: color var(--ease); }
.contact-item-value a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.contact-form-wrap > p { font-size: 0.87rem; margin-bottom: 28px; max-width: none; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--ease);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); }
.form-submit { width: 100%; padding: 15px; font-size: 0.95rem; margin-top: 8px; }
.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  max-width: none;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 28px;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin: 40px 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  max-width: none;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li   { margin-bottom: 6px; }
.legal-content a    { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }
.legal-updated {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* =============================================
   UTILITIES
   ============================================= */
.section-head       { margin-bottom: 56px; }
.section-head h2    { margin-top: 8px; }
.section-head p     { margin-top: 12px; max-width: 580px; }
.text-center        { text-align: center; }
.text-center p      { margin-left: auto; margin-right: auto; }
.text-gold          { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1000px) {
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .meet-inner         { grid-template-columns: 1fr; gap: 48px; }
  .meet-photo-wrap    { max-width: 420px; }
  .meet-frame         { display: none; }
  .area-inner         { grid-template-columns: 1fr; gap: 48px; }
  .how-steps          { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .how-connector      { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-inner      { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-inner  { grid-template-columns: 1fr; gap: 48px; }
  .about-photo        { max-width: 380px; }
  .service-block      { grid-template-columns: 1fr; gap: 36px; }
  .service-block.reverse { direction: ltr; }
}
@media (max-width: 700px) {
  section             { padding: 60px 0; }
  .nav-links          { display: none; }
  .nav-hamburger      { display: flex; }
  .hero               { height: 100svh; }
  .hero-ctas          { flex-direction: column; }
  .hero-ctas .btn     { width: 100%; justify-content: center; }
  .why-grid           { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .how-steps          { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
  .cta-strip-inner    { flex-direction: column; }
  .cta-strip .btn-dark { width: 100%; justify-content: center; }
  .contact-form-wrap  { padding: 24px; }
  .form-row           { grid-template-columns: 1fr; }
  .area-towns         { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* === VELYNTIC CREDIT === */
.footer-velyntic {
  text-align: center;
  padding-top: 20px;
  font-size: 0.75rem;
  color: #555;
  width: 100%;
}
.footer-velyntic a {
  color: var(--gold);
  transition: color var(--ease);
  font-weight: 500;
}
.footer-velyntic a:hover { color: var(--gold-light); }

/* === VELYNTIC BADGE IMAGE === */
.velyntic-badge-img {
  height: 22px;
  width: auto;
  opacity: 0.75;
  transition: opacity var(--ease);
  display: block;
}
.velyntic-badge-img:hover { opacity: 1; }
