:root {
  --primary-color: #A57C00;
  --secondary-color: #B09A60;
  --accent-color: #CCBA78;
  --background-color: #000000;
  --text-color: #ebe5e5;
  --box-shadow-color: #55461a;
  --hover-color: #776226;
}
.fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1),
  transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: opacity, transform;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
body {
  font-family: Arial, sans-serif;
  padding-top: 70px;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
}
html {
  scroll-padding-top: 70px;
}
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 20px;
  background-color: var(--background-color);
  color: var(--accent-color);
  z-index: 1000;
  border-bottom: 1px solid var(--box-shadow-color);
}
.menu-toggle {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 45px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 40px;
  z-index: 2100;
}
.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.2s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin-right: 10px;
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--accent-color);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}
.nav-links a {
  text-decoration: none;
  color: var(--accent-color);
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
}
.nav-links a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s, transform 0.3s;
}
.nav-links li {
  margin-right: clamp(10px, 2vw, 15px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: var(--background-color);
  color: var(--accent-color);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.close-btn {
  font-size: 28px;
  cursor: pointer;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}
.mobile-menu li {
  padding: 14px 0;
  border-bottom: 1px solid var(--box-shadow-color);
  font-size: 16px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--accent-color);
}
.mobile-menu a:hover {
  color: var(--primary-color);
}
.menu-section {
  font-weight: 600;
  letter-spacing: 1px;
}
.phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
.phone a:hover {
  color: var(--primary-color);
}
.phone-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}
.hero {
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('./assets/hero-bg.jpg') center/cover no-repeat;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 6vw, 3.8rem);
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.4rem;
  color: var(--text-color);
  max-width: 850px;
  margin: 0 auto 30px auto;
  font-weight: 300;
}
.btn {
  padding: 1.1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  display: inline-block;
  margin: 10px;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--secondary-color);
  color: var(--background-color);
  border: 2px solid var(--secondary-color);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--box-shadow-color) 70%, transparent);
  border: 2px solid color-mix(in srgb, var(--box-shadow-color) 70%, transparent);
  transform: translateY(-2px);
}
.btn svg {
  margin-right: 6px;
  vertical-align: middle;
}
section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: serif;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 2.8rem;
  text-transform: uppercase;
}
.section-subtitle {
  text-align: center;
  color: var(--text-color);
  margin-bottom: 60px;
  font-size: 1.1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.service-card {
  background: var(--background-color);
  border: 1px solid var(--primary-color);
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
}
.service-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}
.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-header h3 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.chevron {
  color: var(--secondary-color);
  transition: 0.4s;
}     
.service-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
  color: var(--text-color);
  font-size: 1.05rem;
  overflow: hidden;
}
.service-card.active .service-content {
  max-height: 1000px;
  opacity: 1;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--background-color);
}
.service-card.active .chevron {
  transform: rotate(180deg);
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid var(--background-color);
  display: block;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.about-section {
  padding: 100px 20px;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image {
  flex: 1;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.about-content {
  flex: 1;
}
.about-quote {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: serif;
  line-height: 1.3;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  color: var(--secondary-color);
}
.about-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 90%;
  background: var(--secondary-color);
}
.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-color);
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }
  .about-quote {
    font-size: 2rem;
  }
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.faq-card {
  background: var(--background-color);
  border: 1px solid var(--primary-color);
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 15px;
}
.faq-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}      
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-header h3 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.chevron {
  color: var(--secondary-color);
  transition: 0.4s;
}
.faq-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
  color: var(--text-color);
  font-size: 1.05rem;
  overflow: hidden;
}
.faq-card.active .faq-content {
  max-height: 1000px;
  opacity: 1;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--background-color);
}
.faq-card.active .chevron {
  transform: rotate(180deg);
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .faq-grid { grid-template-columns: 1fr;
  }
}
#contact-button {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 6px;
  background-color: var(--box-shadow-color);
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
#contact-button:hover {
  background-color: var(--hover-color);
  transform: translateY(-1px);
}
#contact-button:active {
  transform: translateY(0);
}
.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  background-color: var(--box-shadow-color);
  color: var(--text-color);
  font-size: 20px;
  font-weight: 600;
  font-family: serif;
  letter-spacing: 1px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.contact-button .icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text-color);
  stroke-width: 2;
}
.contact-button:hover {
  background-color: var(--hover-color);
  transform: translateY(-1px);
}
.contact-button:active {
  transform: translateY(0);
}
#contact {
  grid-column: 1 / -1;
  background-color: var(--background-color);
  text-align: center;
  scroll-margin-top: 70px;
}
#contact p {
  color: var(--text-color);
}
#contact .section-subtitle {
  margin-bottom: 12px;
}
.contact-info, #contact-form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 16px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
  position: relative;
  color: var(--text-color);
}
#contact-form input, #contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: border 0.2s ease;
}
#contact-form textarea {
  height: 45px;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.2;
  resize: none;
}
#contact-form input:focus, #contact-form textarea:focus {
  border: 1px solid var(--secondary-color);
  outline: none;
}
#contact-form input[type=submit] {
  background-color: var(--box-shadow-color);
  color: var(--text-color);
  padding: 16px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
}
#contact-form input[type=submit]:hover {
  background-color: var(--hover-color);
}
#subject {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
.container {
  border-radius: 5px;
  background-color: var(--background-color);
  padding: 20px;
  border: 1px solid var(--hover-color);
}
.error {
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-top: -10px;
  margin-bottom: 10px;
}
.form-message {
  margin-top: 15px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-info {
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contact-button {
    font-size: 14px;
    padding: 10px 14px;
    gap: 8px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-button .icon {
    width: 16px;
    height: 16px;
  }
  #contact-form {
    max-width: 320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
  }
  #contact-form input, #contact-form textarea {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    margin: 0 auto 12px auto;
  }
  #contact-button, #contact-form input[type=submit] {
    width: 100%;
    box-sizing: border-box;
  }
  #contact .section-subtitle {
    margin-bottom: 8px;
  }
  .contact-info {
    margin-bottom: 10px;
  }
}
body {
  overflow-x: hidden;
}
/* Fix Chrome / Safari autofill background */
#contact-form input:-webkit-autofill, #contact-form input:-webkit-autofill:hover, #contact-form input:-webkit-autofill:focus, #contact-form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset !important;
  -webkit-text-fill-color: var(--text-color) !important;
  transition: background-color 5000s ease-in-out 0s;
}
#contact-form input:autofill {
  background-color: var(--background-color) !important;
  color: var(--text-color) !important;
}
footer {
  background-color: var(--background-color);
  color: var(--accent-color);
  margin-top: 40px;
  padding: 30px 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.footer-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-cities {
  margin-top: -4px;
}
.footer-bottom {
  margin-top: 20px;
  padding: 15px 20px 0 20px;
  padding-top: 15px;
  border-top: 1px solid var(--box-shadow-color);
  text-align: center;
  font-size: 0.8rem;
}
footer .divider {
  color: var(--box-shadow-color);
}
footer .copyright {
  color: var(--text-color);
}
footer a {
  color: var(--accent-color);
}
footer a:hover {
  color: var(--hover-color);
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  background-color: var(--box-shadow-color);
  color: var(--text-color);
  border-radius: 5px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease;
}
.back-to-top:hover {
  background-color: var(--hover-color);
  color: var(--text-color);
}
/* global safety rule to catch overflow bugs */
* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
