/* ============================================================
   SELF-HOSTED FONTS
============================================================ */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/oswald-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/sourcesans3-latin.woff2') format('woff2');
}

/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --primary:  #F07830;
  --dark:     #111111;
  --brown:    #784818;
  --light:    #F5F0E8;
  --white:    #FFFFFF;
  --mid:      #C09060;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;

  --container: 1200px;
  --nav-h:     72px;
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  color: #2a2a2a;
  background: var(--light);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================================
   UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: #d96820;
  border-color: #d96820;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: var(--nav-h);
  border-bottom: 3px solid var(--primary);
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.main-nav {
  margin-inline-start: auto;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}

.main-nav a:hover {
  color: var(--primary);
  background: rgba(240,120,48,0.1);
}

.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.header-phone:hover {
  background: var(--primary);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(240,120,48,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(120,72,24,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: 5rem 1.25rem 4rem;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #c8c0b8;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.service-badges {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(240,120,48,0.3);
  padding: 0.9rem 0;
  overflow: hidden;
}

.badges-track {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  border: 1px solid rgba(240,120,48,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--light);
  padding: 5rem 0;
}

.about h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #3a3028;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-box {
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem 1rem;
  border-radius: 4px;
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--dark);
  padding: 5rem 0;
}

.services h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-card {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-tags span {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mid);
  border: 1px solid #333;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}

.services-note {
  color: #888;
  font-size: 0.95rem;
  text-align: center;
  padding-top: 0.5rem;
}

/* ============================================================
   GALLERY / TESTIMONIALS SECTIONS
============================================================ */
.gallery-section {
  background: #1a1a1a;
  padding: 5rem 0;
}

.gallery-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 2rem;
}

.testimonials-section {
  background: var(--light);
  padding: 5rem 0;
}

.testimonials-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 2rem;
}

/* ============================================================
   FACEBOOK
============================================================ */
.facebook-section {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
}

.facebook-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.fb-sub {
  color: #999;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.fb-embed-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: var(--light);
  padding: 5rem 0;
}

.faq-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 2rem;
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #d8cfbf;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  transition: transform 0.25s;
}

.faq-icon::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
  margin-top: -1px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer.open {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  padding-bottom: 1.25rem;
  color: #4a3f35;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  background: var(--dark);
  padding: 5rem 0;
}

.contact-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.15s;
}

a.contact-card:hover {
  border-color: var(--primary);
}

.contact-card-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-bottom: 0.1rem;
}

.contact-card span {
  color: var(--white);
  font-size: 0.95rem;
}

.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

/* Contact form */
.contact-form-wrap {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-bottom: 0.4rem;
}

.form-group label span {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C09060' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.form-success,
.form-error {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-success {
  background: rgba(40,160,80,0.15);
  border: 1px solid rgba(40,160,80,0.4);
  color: #7de8a0;
}

.form-success a,
.form-error a {
  color: var(--primary);
  text-decoration: underline;
}

.form-error {
  background: rgba(200,50,50,0.15);
  border: 1px solid rgba(200,50,50,0.4);
  color: #f08080;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #0a0a0a;
  border-top: 3px solid var(--primary);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 1rem 2rem;
  align-items: center;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-tagline {
  color: #888;
  font-size: 0.9rem;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #aaa;
  transition: color 0.15s;
}

.footer-nav a:hover { color: var(--primary); }

.footer-contact {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #aaa;
  font-size: 0.875rem;
  text-align: right;
}

.footer-contact a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.footer-social {
  grid-column: 4;
  grid-row: 1;
}

.footer-social a {
  color: #888;
  transition: color 0.15s;
}

.footer-social a:hover { color: var(--primary); }

.footer-copy {
  grid-column: 1 / -1;
  grid-row: 2;
  color: #555;
  font-size: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid #1e1e1e;
}

.footer-copy a { color: var(--mid); }
.footer-copy a:hover { color: var(--primary); }

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .footer-brand  { grid-column: 1 / -1; grid-row: 1; }
  .footer-nav    { grid-column: 1; grid-row: 2; }
  .footer-contact{ grid-column: 2; grid-row: 2; }
  .footer-social { grid-column: 1 / -1; grid-row: 2; justify-self: end; align-self: center; }
  .footer-copy   { grid-column: 1 / -1; grid-row: 3; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 72px; }

  /* Nav */
  .main-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 3px solid var(--primary);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #222;
  }

  .hamburger { display: flex; }

  .header-phone {
    font-size: 0.95rem;
    padding: 0.35rem 0.65rem;
  }

  .nav-name {
    font-size: 0.82rem;
  }

  /* Hero */
  .hero-inner {
    padding: 3.5rem 1.25rem 3rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .contact-form-wrap {
    padding: 1.25rem;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
    text-align: center;
  }

  .footer-brand  { grid-column: 1; grid-row: 1; flex-direction: column; }
  .footer-nav    { grid-column: 1; grid-row: 2; }
  .footer-nav ul { justify-content: center; }
  .footer-contact{ grid-column: 1; grid-row: 3; text-align: center; }
  .footer-social { grid-column: 1; grid-row: 4; justify-self: center; }
  .footer-copy   { grid-column: 1; grid-row: 5; text-align: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
============================================================ */
@media (max-width: 480px) {
  .nav-name { display: none; }

  .hero h1 { font-size: 2.2rem; }

  .badges-track {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .badges-track::-webkit-scrollbar { display: none; }
}
