/* ===========================
   Custom Properties
   =========================== */
:root {
  /* Dark base palette */
  --bg:             #2B2B26;
  --surface:        #191715;
  --surface-alt:    #201E1B;
  --surface-hover:  #272421;

  /* Light sections */
  --cream-bg:       #F4F0E8;
  --cream-surface:  #FDFBF8;
  --cream-text:     #19130A;
  --cream-muted:    #72695E;
  --cream-border:   #E0D9CE;

  /* Brand */
  --orange:         #E8460A;
  --orange-bright:  #E8460A;
  --orange-dim:     rgba(232, 70, 10, 0.14);
  --orange-border:  rgba(232, 70, 10, 0.35);

  /* Text on dark */
  --cream:          #EDE8DF;
  --cream-dim:      #BABABA;
  --cream-faint:    rgba(237, 232, 223, 0.08);

  /* Borders on dark */
  --border:         rgba(237, 232, 223, 0.08);
  --border-strong:  rgba(237, 232, 223, 0.16);

  /* Typography */
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --header-height: 98px;
  --max-width:     1200px;
  --radius:        6px;
}

/* ===========================
   Reset
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem);    font-weight: 800; }
h4 { font-size: 1.2rem;                       font-weight: 700; }

/* ===========================
   Animations
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-1 { animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both; }
.animate-2 { animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both; }
.animate-3 { animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.30s both; }
.animate-4 { animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both; }
.animate-5 { animation: fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both; }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: normal;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #C93A08;
  border-color: #C93A08;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--bg);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream-text);
  border-color: rgba(25,19,10,0.3);
}
.btn-ghost-light:hover {
  background: var(--cream-text);
  color: var(--cream-bg);
  transform: translateY(-1px);
}

/* ===========================
   Layout
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section      { padding: 6rem 0; }
.section-sm   { padding: 3.5rem 0; }
.section-lg   { padding: 8rem 0; }

.text-center  { text-align: center; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}

.section-header { margin-bottom: 3.5rem; }

.section-header h2 { margin-bottom: 0.875rem; }

.section-header .lead {
  font-size: 1.111rem;
  line-height: 1.7;
  max-width: 620px;
}

.text-center .section-header .lead { margin: 0 auto; }

/* Dark section text */
.on-dark .section-eyebrow { color: var(--orange); }
.on-dark h2               { color: var(--cream); }
.on-dark .lead            { color: var(--cream-dim); }

/* Light section text */
.on-light .section-eyebrow { color: var(--orange); }
.on-light h2                { color: var(--cream-text); }
.on-light .lead             { color: var(--cream-muted); }

/* ===========================
   Header
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.site-header .container {
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--cream-dim);
  transition: color 0.15s;
  position: relative;
  text-decoration: none;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.header-nav a:hover {
  color: var(--cream);
}
.header-nav a.active {
  color: var(--cream);
  font-weight: 700;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  transform: scaleX(1);
}

.header-cta { flex-shrink: 0; }
.header-phone {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  transition: color 0.15s;
}
.header-phone:hover { color: #fff; }
.header-divider {
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0 0.25rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
  text-decoration: none;
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover        { color: var(--orange); }
.mobile-nav .btn           { margin-top: 1.25rem; width: 100%; justify-content: center; }

/* ===========================
   Hero
   =========================== */
.hero {
  background: var(--bg);
  padding: 6rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}

.hero-headline-row {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 2rem;
}

.hero-headline-row h1 {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 480px;
}

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

.hero-image-placeholder {
  background: var(--surface);
  border: 1.5px dashed var(--orange-border);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
  position: relative;
}

/* Corner accents on image placeholder */
.hero-image-placeholder::before,
.hero-image-placeholder::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--orange);
  border-style: solid;
}
.hero-image-placeholder::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-radius: 2px 0 0 0;
}
.hero-image-placeholder::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 2px 0;
}

/* ===========================
   Stats Bar (replaces trust bar)
   =========================== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  gap: 0;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border-strong);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ===========================
   Service Cards (on cream bg)
   =========================== */
.services-bg {
  background: var(--cream-bg);
}

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

.service-card {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(25, 19, 10, 0.12);
}

.service-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.18;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  letter-spacing: -0.04em;
}

.service-card h3 {
  color: var(--cream-text);
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.service-card p {
  color: var(--cream-muted);
  font-size: 0.889rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.18s;
  text-decoration: none;
}
.card-link:hover { gap: 0.875rem; }
.card-link svg   { width: 14px; height: 14px; stroke: currentColor; }

/* Make entire service card clickable */
.service-card .card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* ===========================
   Features / Why (dark bg)
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature-item {
  background: var(--surface);
  padding: 2.25rem;
  transition: background 0.18s;
}

.feature-item:hover { background: var(--surface-alt); }

.feature-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
  opacity: 0.7;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.625rem;
  letter-spacing: 0;
}

.feature-item p {
  font-size: 0.889rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin: 0;
}

/* ===========================
   Testimonials (dark surface)
   =========================== */
.testimonials-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  pointer-events: none;
}

.stars {
  color: var(--orange);
  font-size: 0.889rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-size: 0.889rem;
  line-height: 1.75;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.889rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ===========================
   Service Area (cream)
   =========================== */
.service-area-bg { background: var(--cream-bg); }

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.625rem;
  margin-top: 2rem;
}

.town-list span {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: 3px;
  padding: 0.3rem 0.75rem;
  font-size: 0.889rem;
  color: var(--cream-muted);
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}


/* ===========================
   CTA Strip — Orange BG
   =========================== */
.cta-strip {
  background: var(--surface);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28rem;
  color: rgba(0, 0, 0, 0.07);
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 0.875rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-phone-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.cta-phone-link:hover { color: #fff; }

.cta-phone-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* ===========================
   Contact Form — on orange
   =========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: none;
  border-radius: var(--radius);
  background: #2B2B26;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.889rem;
  outline: none;
  transition: background 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { background: #333330; }

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form select option { background: var(--surface-alt); color: #fff; }
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form .btn {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  font-size: 1rem;
}
.contact-form .btn:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
  color: var(--orange);
}

/* Light form variant (contact page) */
.contact-form-light input,
.contact-form-light select,
.contact-form-light textarea {
  background: var(--cream-surface);
  color: var(--cream-text);
  border: 1.5px solid var(--cream-border);
}
.contact-form-light input::placeholder,
.contact-form-light textarea::placeholder { color: #a09890; }
.contact-form-light select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a09890' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.contact-form-light select option { background: #fff; color: var(--cream-text); }
.contact-form-light input:focus,
.contact-form-light select:focus,
.contact-form-light textarea:focus { border-color: var(--orange); }
.contact-form-light .btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.contact-form-light .btn:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}

/* ===========================
   Hero Image (home)
   =========================== */
.hero-image {
  border-radius: 8px;
  overflow: hidden;
  align-self: center;
  height: 420px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Full-width photo banner (service pages) */
.page-hero-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
  background: var(--bg);
  padding: 5rem 0 4.5rem;
  position: relative;
  border-bottom: 3px solid var(--orange);
}

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.page-hero .lead {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-hero-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--orange);
  text-decoration: none;
}
.page-hero-phone:hover { color: var(--orange-bright); }

/* ===========================
   Service List (detail pages, cream bg)
   =========================== */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.625rem;
  margin-top: 2rem;
}

.services-list-item {
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--cream-text);
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 0.15s;
}
.services-list-item:hover { border-color: var(--orange); }
.services-list-item::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 5px;
}

/* ===========================
   Signs Section (dark bg)
   =========================== */
.signs-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signs-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: border-color 0.15s;
}
.signs-item:hover { border-color: var(--orange-border); }

.signs-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
  opacity: 0.7;
}

.signs-item p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin: 0;
  padding-top: 3px;
}

/* ===========================
   Why Choose (cream bg)
   =========================== */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.375rem 1.75rem;
  background: var(--cream-surface);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.why-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(25,19,10,0.07);
}

.why-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-check svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; }

.why-item p {
  font-size: 1rem;
  color: var(--cream-text);
  line-height: 1.6;
  margin: 0;
  padding-top: 3px;
}

/* ===========================
   FAQ (dark bg)
   =========================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.625rem 1.75rem;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: var(--border-strong); }

.faq-q {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.111rem;
  color: var(--cream);
  margin-bottom: 0.625rem;
  letter-spacing: 0;
}

.faq-a {
  font-size: 1rem;
  color: var(--cream-dim);
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   Page CTA (dark bg + form)
   =========================== */
.page-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5.5rem 0;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.page-cta h2 {
  color: var(--cream);
  margin-bottom: 0.875rem;
}

.page-cta .lead {
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.page-cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--orange);
  display: block;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}
.page-cta-phone:hover { color: var(--orange-bright); }

/* on-dark contact form override */
.form-on-dark input,
.form-on-dark select,
.form-on-dark textarea {
  background: var(--surface-alt);
  color: var(--cream);
  border: 1.5px solid var(--border-strong);
}
.form-on-dark input::placeholder,
.form-on-dark textarea::placeholder { color: var(--cream-dim); }
.form-on-dark select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(237,232,223,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-on-dark select option { background: #201E1B; color: var(--cream); }
.form-on-dark input:focus,
.form-on-dark select:focus,
.form-on-dark textarea:focus { border-color: var(--orange); }
.form-on-dark .btn {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.form-on-dark .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--orange);
}

/* ===========================
   About Page
   =========================== */
.about-lead p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

.owner-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 2.75rem;
  max-width: 800px;
}

.team-photo-placeholder {
  width: 160px;
  height: 190px;
  min-width: 160px;
  background: var(--surface-alt);
  border: 1.5px dashed var(--border-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--cream-dim);
  text-align: center;
  padding: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.owner-details h3 { color: var(--cream); margin-bottom: 0.375rem; }

.owner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

.owner-details p {
  font-size: 0.889rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 0;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--cream-dim);
  font-weight: 500;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cred-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cred-check svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 2.5; }

/* ===========================
   Contact Page
   =========================== */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}
.contact-info-panel h2 { color: var(--cream); margin-bottom: 2.5rem; padding-top: 2.75rem; }

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}
.contact-detail-centered {
  align-items: center;
}
.contact-detail-top {
  align-items: flex-start;
}
.contact-detail-top .contact-detail-icon {
  margin-top: -0.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--orange); }

.contact-detail-content strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.375rem;
}

.contact-phone-big {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: block;
  letter-spacing: -0.02em;
}
.contact-phone-big:hover { color: var(--orange-bright); }

.contact-email {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  display: block;
}

.contact-email:hover { color: var(--orange); }

.contact-detail-content p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.map-placeholder {
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 0.8rem;
  margin-top: 2.5rem;
  font-style: italic;
}

.contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.75rem;
}
.contact-form-panel h2 { color: var(--cream); margin-bottom: 2rem; }

/* ===========================
   Form Success / Error States
   =========================== */
.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 1rem;
  color: var(--cream-dim);
  margin: 0;
}

.form-error {
  font-size: 0.889rem;
  color: #ff6b6b;
  margin: 0;
  text-align: center;
}

.field-error {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.footer-brand .logo img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.footer-phone:hover { color: var(--orange-bright); }

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.25rem; }

.footer-col ul li a {
  font-size: 0.889rem;
  color: var(--cream-dim);
  transition: color 0.15s;
  text-decoration: none;
  line-height: 1.4;
  display: block;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 960px) {
  .header-nav  { display: none; }
  .header-cta  { display: none; }
  .hamburger   { display: flex; }

  .hero-headline-row {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .hero-headline-row h1 { flex: none; }
  .hero-image { flex: none; width: 100%; }
  .hero-sub        { margin-left: auto; margin-right: auto; }
  .hero-actions    { justify-content: center; }
  .hero-image-placeholder { max-width: 480px; margin: 0 auto; aspect-ratio: 16/9; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3)::before { display: none; }
  .stat-item + .stat-item { border-top: none; }

  .cta-strip-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .page-cta-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }

  .owner-card { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 640px) {
  .section  { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item::before { display: none !important; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-strip::before { font-size: 14rem; }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .contact-form-panel { padding: 1.75rem 1.25rem; }
}
