/*
Theme Name: Harry's Boot & Shoe Repair
Theme URI: https://harrysbootrepair.com
Author: Stephen Brown
Description: Custom theme for Harry's Boot & Shoe Repair &mdash; McKinney, TX. Est. 1988.
Version: 1.0.0
License: Private
Tags: local-business, shoe-repair, mckinney-texas
*/

/* ============================================================
   Harry's Boot & Shoe Repair &mdash; Core Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bebas+Neue&family=Zilla+Slab:wght@400;500;600&display=swap');

:root {
  --leather:    #8B5C2A;
  --cream:      #F5EDD6;
  --cream-dark: #EBE0C4;
  --red:        #7A1E1E;
  --red-light:  #9B2626;
  --black:      #1A1A1A;
  --denim:      #4E6785;
  --rust:       #B5451B;
  --tan:        #C49A6C;
  --white:      #FEFCF8;
  --gray:       #6B6560;
  --gray-light: #D9D0C5;

  --font-headline: 'Playfair Display', Georgia, serif;
  --font-slab:     'Zilla Slab', Georgia, serif;
  --font-body:     'Source Serif 4', Georgia, serif;
  --font-accent:   'Bebas Neue', Impact, sans-serif;

  --max-width: 1200px;
  --section-pad: 80px 24px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(26,26,26,0.12);
  --shadow-sm: 0 2px 8px rgba(26,26,26,0.08);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 { font-family: var(--font-headline); line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-family: var(--font-slab); font-weight: 600; }
p  { margin-bottom: 1em; font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--rust);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section--cream   { background: var(--cream); }
.section--dark    { background: var(--black); color: var(--cream); }
.section--leather { background: var(--leather); color: var(--white); }
.section--red     { background: var(--red); color: var(--white); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-slab);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--leather { background: var(--leather); color: var(--white); border-color: var(--leather); }
.btn--leather:hover { background: #7A4F23; border-color: #7A4F23; transform: translateY(-2px); }
.btn--lg { padding: 18px 42px; font-size: 1.05rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--leather);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.site-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main { font-family: var(--font-headline); font-size: 1.4rem; font-weight: 700; color: var(--cream); }
.logo-sub  { font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--tan); margin-top: 2px; }

/* WordPress nav menu */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav ul { display: flex; align-items: center; gap: 4px; }
.site-nav ul li { list-style: none; }
.site-nav ul li a {
  font-family: var(--font-slab); font-size: 0.88rem; font-weight: 500;
  color: var(--gray-light); padding: 8px 14px; border-radius: var(--radius);
  transition: var(--transition); letter-spacing: 0.03em; display: block;
}
.site-nav ul li a:hover,
.site-nav ul li.current-menu-item > a,
.site-nav ul li.current_page_item > a { color: var(--cream); background: rgba(255,255,255,0.06); }
.site-nav ul li.menu-cta > a { background: var(--red); color: var(--white); font-weight: 600; }
.site-nav ul li.menu-cta > a:hover { background: var(--red-light); }
.site-nav ul li.menu-phone > a { font-family: var(--font-accent); font-size: 1.1rem; color: var(--tan); letter-spacing: 0.06em; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); transition: var(--transition); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, rgba(10,6,4,0.82) 40%, rgba(10,6,4,0.45) 100%),
    url('https://harrysbootrepair.com/wp-content/uploads/2026/04/downtown-mckinney-banner.jpg');
  background-size: cover; background-position: center 40%;
}
.hero-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding: 80px 48px; width: 100%; max-width: 1200px; margin: 0 auto;
}
.hero-text { flex: 1; max-width: 620px; }
.hero-logo-wrap { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hero-logo-img { width: 510px; height: 510px; object-fit: contain; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.7)); }
@media (max-width: 900px) {
  .hero-content { flex-direction: column; padding: 60px 24px; gap: 32px; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-img { width: 200px; height: 200px; }
  .ba-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
}
.hero-eyebrow {
  font-family: var(--font-accent); font-size: 0.9rem; letter-spacing: 0.25em; color: var(--tan);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; height: 1px; width: 40px; background: var(--tan); opacity: 0.6; }
.hero h1 { color: var(--cream); margin-bottom: 24px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero h1 em { font-style: italic; color: var(--tan); }
.hero-desc { font-size: 1.15rem; color: #D4C8B8; margin-bottom: 36px; max-width: 520px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-phone-link { font-family: var(--font-accent); font-size: 1.3rem; color: var(--tan); letter-spacing: 0.08em; transition: var(--transition); }
.hero-phone-link:hover { color: var(--cream); }

/* ── Trust Bar ── */
.trust-bar { background: var(--leather); padding: 18px 24px; border-bottom: 2px solid #7A4F23; }
.trust-bar-inner { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 32px;
  border-right: 1px solid rgba(255,255,255,0.2); color: var(--cream);
  font-family: var(--font-slab); font-size: 0.9rem; font-weight: 500;
}
.trust-item:last-child { border-right: none; }

/* ── Service Cards ── */
.service-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--leather); transition: height 0.3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--leather); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.service-icon--img { font-size: 0; }
.service-icon--img img { width: 38px; height: 38px; object-fit: contain; display: block; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.95rem; color: var(--gray); margin: 0; }

/* ── Why Section ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray-light); }
.why-item { background: var(--cream); padding: 48px 36px; text-align: center; }
.why-number { font-family: var(--font-accent); font-size: 4rem; color: var(--leather); line-height: 1; display: block; margin-bottom: 8px; }
.why-item h3 { margin-bottom: 12px; font-size: 1.2rem; }
.why-item p  { font-size: 0.95rem; color: var(--gray); margin: 0; }

/* ── Section Headers ── */
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.1rem; color: var(--gray); max-width: 640px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--leather); margin: 20px 0; }
.divider.center { margin: 20px auto; }

/* ── Before/After ── */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream-dark); box-shadow: var(--shadow-sm); }
.ba-card-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-image { aspect-ratio: 4/3; background: var(--gray-light); position: relative; overflow: hidden; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; top: 10px; left: 10px; font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 2px; }
.ba-label.before { background: var(--black); color: var(--cream); }
.ba-label.after  { background: var(--leather); color: var(--white); }
.ba-card-info { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.ba-card-info h4 { font-size: 1rem; }
.ba-card-info span { font-size: 0.85rem; color: var(--gray); }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border-left: 4px solid var(--leather); padding: 28px 24px; border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-sm); }
.stars { color: #D4A017; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote { font-style: italic; font-size: 0.98rem; line-height: 1.7; margin-bottom: 16px; }
.testimonial cite { font-style: normal; font-family: var(--font-slab); font-size: 0.88rem; color: var(--gray); font-weight: 600; }

/* ── City Cards ── */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.city-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: var(--transition); }
.city-card:hover { border-color: var(--leather); background: var(--cream); }
.city-name { font-family: var(--font-slab); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.city-dist { font-size: 0.8rem; color: var(--gray); }

/* ── Page Hero ── */
.page-hero { background: var(--black); padding: 80px 24px; border-bottom: 4px solid var(--leather); }
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero p  { color: #C0B5A5; font-size: 1.1rem; max-width: 600px; }

/* ── Services Page ── */
.service-block { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--gray-light); }
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-text h2 { font-size: 2rem; margin-bottom: 16px; }
.service-block-text p  { color: var(--gray); margin-bottom: 20px; }
.service-list { margin: 20px 0; }
.service-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-light); font-size: 0.97rem; display: flex; align-items: center; gap: 10px; }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--leather); flex-shrink: 0; }
.service-block-image { background: var(--cream-dark); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.service-block-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Our Story ── */
.story-hero { position: relative; background: var(--black); padding: 120px 24px 80px; text-align: center; overflow: hidden; }
.story-hero-bg { position: absolute; inset: 0; background: url('images/mckinney-historic.jpg') center/cover; opacity: 0.18; filter: sepia(60%); }
.story-hero h1 { color: var(--cream); position: relative; }
.story-hero p  { color: #C0B5A5; position: relative; font-size: 1.15rem; max-width: 580px; margin: 16px auto 0; }
.pull-quote { font-family: var(--font-headline); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-style: italic; color: var(--leather); border-left: 5px solid var(--leather); padding: 24px 32px; margin: 40px 0; background: var(--cream); line-height: 1.5; }
.story-timeline { position: relative; padding-left: 40px; }
.story-timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--leather), var(--tan)); }
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item::before { content: ''; position: absolute; left: -47px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--leather); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--leather); }
.timeline-year { font-family: var(--font-accent); font-size: 1.1rem; color: var(--rust); letter-spacing: 0.1em; display: block; margin-bottom: 6px; }
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p  { color: var(--gray); font-size: 0.97rem; }
.historic-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.historic-frame { aspect-ratio: 4/3; background: var(--cream-dark); position: relative; overflow: hidden; }
.historic-frame img { width: 100%; height: 100%; object-fit: cover; filter: sepia(40%) contrast(0.9); }
.historic-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(26,26,26,0.72); color: var(--cream); font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.12em; padding: 6px 12px; text-align: center; }
.craft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.craft-item { display: flex; gap: 20px; }
.craft-num { font-family: var(--font-accent); font-size: 3rem; color: var(--gray-light); line-height: 1; flex-shrink: 0; width: 56px; }
.craft-item h4 { margin-bottom: 8px; font-size: 1.1rem; }
.craft-item p  { font-size: 0.95rem; color: var(--gray); margin: 0; }
.owner-block { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; margin-top: 48px; }
.owner-photo { background: var(--cream-dark); border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Service Area ── */
.area-hero { background: var(--black); padding: 80px 24px; border-bottom: 4px solid var(--leather); }
.area-hero h1 { color: var(--cream); margin-bottom: 12px; }
.area-hero p  { color: #C0B5A5; font-size: 1.1rem; max-width: 600px; }
.area-stat-bar { background: var(--leather); padding: 32px 24px; }
.area-stats { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.area-stat-num { font-family: var(--font-accent); font-size: 2.4rem; display: block; color: var(--cream); line-height: 1; margin-bottom: 6px; }
.area-stat-label { font-family: var(--font-slab); font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.city-entry { padding: 72px 0; border-bottom: 1px solid var(--gray-light); }
.city-entry:last-child { border-bottom: none; }
.city-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 8px; flex-wrap: wrap; }
.city-header h2 { margin: 0; font-size: 2rem; }
.city-distance { font-family: var(--font-accent); font-size: 0.85rem; letter-spacing: 0.12em; color: var(--rust); background: var(--cream); padding: 4px 12px; border-radius: 2px; border: 1px solid var(--gray-light); }
.city-badge { display: inline-block; background: var(--leather); color: var(--white); font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.14em; padding: 4px 12px; border-radius: 2px; margin-bottom: 16px; }
.directions-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-slab); font-weight: 600; font-size: 0.9rem; color: var(--leather); margin-top: 20px; transition: var(--transition); }
.directions-link:hover { color: var(--rust); }
.dir-note { font-family: var(--font-slab); font-size: 0.95rem; color: var(--black); background: var(--cream); padding: 24px; border-radius: var(--radius); border-left: 4px solid var(--leather); }

/* ── Gallery ── */
.gallery-page-hero { background: var(--black); padding: 80px 24px; text-align: center; }
.gallery-page-hero h1 { color: var(--cream); }
.gallery-page-hero p  { color: #C0B5A5; margin-top: 12px; }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { font-family: var(--font-slab); font-size: 0.88rem; font-weight: 600; padding: 8px 20px; border: 2px solid var(--gray-light); border-radius: 40px; background: transparent; color: var(--gray); cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { border-color: var(--leather); color: var(--leather); background: var(--cream); }
.ba-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ba-full-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.ba-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--leather); }
.ba-full-images { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.ba-full-images::after { content: '\2192'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--leather); color: var(--white); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.ba-img-slot { aspect-ratio: 1; background: var(--cream-dark); position: relative; overflow: hidden; }
.ba-img-slot img { width: 100%; height: 100%; object-fit: cover; }
.slot-tag { position: absolute; top: 8px; left: 8px; font-family: var(--font-accent); font-size: 0.65rem; letter-spacing: 0.12em; padding: 3px 8px; border-radius: 2px; z-index: 1; }
.slot-tag.before { background: rgba(26,26,26,0.8); color: var(--cream); }
.slot-tag.after  { background: rgba(139,92,42,0.9); color: var(--white); }
.ba-full-info { padding: 16px 18px; border-top: 1px solid var(--gray-light); }
.ba-full-info h4 { font-size: 0.97rem; margin-bottom: 4px; }
.ba-full-info p  { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; }
.contact-left { background: var(--black); padding: 56px 48px; color: var(--cream); }
.contact-left h2 { color: var(--cream); margin-bottom: 6px; font-size: 1.6rem; }
.contact-map-full { background: var(--gray-light); }
.contact-map-full iframe { width: 100%; height: 100%; min-height: 500px; border: none; display: block; }
.hours-block { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.hours-block h4 { font-family: var(--font-accent); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--tan); margin-bottom: 14px; }
.hours-list {}
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.93rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--tan); font-weight: 500; font-family: var(--font-slab); }
.hours-time { color: var(--cream); }
.hours-closed { color: var(--gray); }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.info-item svg { flex-shrink: 0; margin-top: 3px; color: var(--tan); }
.info-item-label { font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--tan); display: block; margin-bottom: 3px; }
.info-item-value { font-family: var(--font-slab); font-size: 1rem; color: var(--cream); }
.info-item-value a:hover { color: var(--tan); }
.social-strip { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); color: var(--gray-light); font-family: var(--font-slab); font-size: 0.88rem; font-weight: 600; transition: var(--transition); }
.social-btn:hover { border-color: var(--leather); color: var(--tan); background: rgba(139,92,42,0.08); }

/* ── Form ── */
.form-section { background: var(--cream); padding: 72px 24px; }
.form-card { background: var(--black); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; }
.form-group label { display: block; font-family: var(--font-slab); font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); color: var(--cream); font-family: var(--font-body); font-size: 0.97rem; transition: var(--transition); -webkit-appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--leather); background: rgba(139,92,42,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }
.form-group select option { background: var(--black); color: var(--cream); }
.notice-bar { background: rgba(139,92,42,0.15); border: 1px solid var(--leather); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 28px; display: flex; gap: 12px; align-items: flex-start; }
.notice-bar svg { color: var(--tan); flex-shrink: 0; margin-top: 2px; }
.notice-bar p { color: var(--cream); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.notice-bar strong { color: var(--tan); }
.form-submit { width: 100%; padding: 16px; background: var(--leather); color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font-slab); font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); letter-spacing: 0.04em; }
.form-submit:hover { background: #7A4F23; transform: translateY(-2px); }
.form-success { background: rgba(139,92,42,0.15); border: 1px solid var(--leather); border-radius: var(--radius); padding: 20px 24px; color: var(--cream); font-family: var(--font-slab); display: none; }

/* ── CTA Banner ── */
.cta-banner { background: var(--red); padding: 72px 24px; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { font-family: var(--font-accent); font-size: 1.8rem; color: var(--white); letter-spacing: 0.06em; display: block; margin-bottom: 20px; }
.cta-phone a { color: inherit; transition: var(--transition); }
.cta-phone a:hover { color: var(--cream); }

/* ── Footer ── */
.site-footer { background: var(--black); color: var(--gray-light); border-top: 3px solid var(--leather); }
.footer-main { max-width: var(--max-width); margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-family: var(--font-accent); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--tan); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--gray-light); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--tan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); max-width: var(--max-width); margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--gray); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); color: var(--gray-light); }
.social-link:hover { border-color: var(--leather); color: var(--tan); background: rgba(139,92,42,0.1); }
.footer-hours li { color: var(--gray-light); font-size: 0.88rem; padding: 3px 0; }

/* ── Misc ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .area-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }
  .site-nav ul { display: none; flex-direction: column; }
  .site-nav ul.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; background: #111; padding: 16px; border-bottom: 2px solid var(--leather); gap: 4px; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 60px 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: center; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { padding: 40px 24px; }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .ba-full-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .craft-grid { grid-template-columns: 1fr; }
  .owner-block { grid-template-columns: 1fr; }
  .historic-strip { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ba-full-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
}
