* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111111;
  font-family: 'Georgia', serif;
  color: #f5f0e8;
  min-height: 100vh;
}

/* ── Navbar ── */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000000;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 3px solid #ff6a00;
}

.nav-brand img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #f5f0e8;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6a00;
  border-bottom-color: #ff6a00;
}

/* ── Dropdown ── */
.nav-links .dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #1a1a1a;
  border: 1px solid #ff6a00;
  border-top: 3px solid #ff6a00;
  list-style: none;
  min-width: 200px;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1rem;
  color: #f5f0e8;
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  border-bottom: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #ff6a00;
  color: #000;
  border-bottom: none;
}

@media (hover: hover) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown.open .dropdown-menu {
  display: block;
}

/* ── Hero (Home) ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 64px);
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h1,
.hero .tagline {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  color: #ff6a00;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero .tagline {
  font-size: 1.1rem;
  margin-top: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cccccc;
}

.btn-estimate {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.2rem;
  background-color: #ff6a00;
  color: #000000;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #ff6a00;
  transition: background-color 0.2s, color 0.2s;
}

.btn-estimate:hover {
  background-color: transparent;
  color: #ff6a00;
}

/* ── Page content ── */
.page-content {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.page-content h1 {
  font-size: 2.2rem;
  color: #ff6a00;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff6a00;
  padding-bottom: 0.5rem;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cccccc;
}

/* ── Service detail pages ── */
.service-header {
  margin-bottom: 1.5rem;
}

.service-subtitle {
  font-size: 1rem;
  color: #ff6a00;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.service-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cccccc;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.4rem;
  color: #ff6a00;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.1rem;
  color: #f5f0e8;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #cccccc;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.gallery-slot {
  background-color: #1a1a1a;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-slot img[src=""],
.gallery-slot img:not([src]) {
  display: none;
}

.service-cta {
  text-align: center;
  padding: 2.5rem 1rem;
  border-top: 1px solid #333;
}

.service-callout {
  background-color: #1a1a1a;
  border-left: 4px solid #ff6a00;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  max-width: 700px;
}

.service-callout p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin: 0;
}

.service-cta p {
  font-size: 1.2rem;
  color: #f5f0e8;
  margin-bottom: 1.25rem;
}

.service-gallery--single {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-video {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.service-video video {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

@media (max-width: 600px) {
  .service-gallery {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ── */
.site-footer {
  background-color: #000000;
  border-top: 3px solid #ff6a00;
  text-align: center;
  padding: 2rem 1rem;
  color: #cccccc;
  font-size: 0.95rem;
}

.footer-brand {
  font-size: 1.1rem;
  color: #ff6a00;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-content p {
  margin: 0.3rem 0;
}

.footer-content a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-content a:hover {
  color: #ff6a00;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666666;
}

/* ── Contact Form ── */
.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f5f0e8;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #1a1a1a;
  border: 1px solid #444;
  color: #f5f0e8;
  padding: 0.65rem 0.85rem;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff6a00;
}

.form-group select option,
.form-group select optgroup {
  background-color: #1a1a1a;
  color: #f5f0e8;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  align-self: flex-start;
  padding: 0.85rem 2.2rem;
  background-color: #ff6a00;
  color: #000000;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #ff6a00;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.btn-submit:hover {
  background-color: transparent;
  color: #ff6a00;
}

/* ── Hamburger toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #f5f0e8;
  border-radius: 2px;
  transition: background-color 0.2s;
}

.nav-toggle:hover span {
  background-color: #ff6a00;
}

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #000000;
    border-bottom: 3px solid #ff6a00;
    padding: 0.5rem 0;
    z-index: 200;
    gap: 0;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links > li > a {
    display: block;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid #1a1a1a;
  }

  .dropdown-menu {
    position: static;
    border: none;
    border-top: 1px solid #ff6a00;
    background-color: #111111;
    min-width: unset;
    width: 100%;
  }

  .dropdown-menu li a {
    padding-left: 3rem;
  }
}

