@font-face {
  font-family: "satoshi";
  src: url("../assets/fonts/Satoshi-Variable.woff2") format("woff2"), url("../assets/fonts/Satoshi-Variable.woff") format("woff");
  font-weight: 100 900;
  font-stretch: 75% 125%;
}
/* Variables */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "satoshi", system-ui, -apple-system, sans-serif;
  color: #575044;
  line-height: 1.6;
  font-weight: 400;
  font-optical-sizing: auto;
}

.container {
  width: min(1200px, 90%);
  margin: auto;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h2 {
  font-weight: 300;
  font-size: 2rem;
}

h3 {
  font-weight: 400;
  font-size: 1.5rem;
}

h4 {
  font-weight: 400;
  font-size: 1.25rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #d8894a;
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  outline: none;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: #d8894a;
  color: white;
}
.btn--outline {
  border: 1px solid #d8894a;
  color: #d8894a;
}

/* Header */
.header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #575044;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #2b2622;
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #eee;
}
.mobile-nav a {
  padding: 12px 0;
  text-decoration: none;
  color: #2b2622;
  font-weight: 500;
}
.mobile-nav .btn {
  margin-top: 12px;
  text-align: center;
}

.mobile-nav.active {
  display: flex;
}

/* Hero */
.hero__content {
  padding: 80px 0 40px;
}
.hero__content h1 {
  font-size: 42px;
  color: #2b2622;
  font-weight: 400;
}
.hero__content h1 span {
  color: #d8894a;
}
.hero__content p {
  margin: 20px 0;
}
.hero__image {
  height: 420px;
  background: #ddd;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose */
.why {
  padding: 80px 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.why .feature {
  margin-top: 24px;
}
.why .feature p {
  color: #575044;
}
.why .feature h4 {
  color: #2b2622;
}
.why__text h2 {
  font-weight: 400;
}
.why__images {
  display: flex;
  gap: 20px;
}
.why__images .img {
  background: #ddd;
  border-radius: 6px;
}
.why__images .img.tall {
  flex: 1;
  height: 320px;
}
.why__images .img.tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__images .img.short {
  flex: 1;
  height: 260px;
  margin-top: 40px;
}
.why__images .img.short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services */
.services {
  background: #2b2622;
  color: white;
  padding: 80px 0;
}
.services h2 {
  margin: 12px 0 40px;
}
.services .service-list {
  list-style: none;
}
.services .service-list li {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
}
.services .service-list li span {
  opacity: 0.6;
  margin-right: 3rem;
}

/* About */
.about h2 {
  margin-bottom: 1rem;
}
.about {
  height: 100vh;
  padding: 120px 0;
  background: #111;
  color: white;
  background-image: url("../assets/images/about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: start;
}
.about__content {
  text-align: left;
}
.about__content p {
  max-width: 600px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonials .testimonial-grid .card {
  background: #f7f7f7;
  padding: 24px;
  border-radius: 6px;
}

/* Contact */
.contact {
  background: #f6e2cf;
  padding: 80px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__form {
  display: grid;
  gap: 12px;
}
.contact__form input,
.contact__form textarea {
  padding: 12px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-bottom: 1px solid #d8894a;
}

/* Footer */
.site-footer {
  background: radial-gradient(circle at top, #151515 0%, #0b0b0b 60%, #000 100%);
  color: #cfc6bc;
  padding: 80px 0 40px;
  font-family: "Inter", system-ui, sans-serif;
}

/* Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Brand */
.footer-brand .logo {
  line-height: 1.1;
  margin-bottom: 24px;
}
.footer-brand .logo__light {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #e6e6e6;
}
.footer-brand .logo__accent {
  font-size: 22px;
  font-weight: 600;
  color: #d8894a;
  letter-spacing: 0.08em;
}
.footer-brand .logo__bold {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
}
.footer-brand .tagline {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #d5ccc2;
}

/* Contact */
.footer-contact {
  text-align: right;
  font-size: 15px;
  line-height: 1.8;
  color: #d1c7bd;
}
.footer-contact p {
  margin-bottom: 18px;
}
.footer-contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-contact a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Divider */
.footer-divider {
  height: 1px;
  margin: 60px 0 30px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #9f968c;
}

.footer-links a {
  margin-left: 24px;
  color: #9f968c;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-links a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-overlay.active {
  display: flex;
}

/* Modal */
.modal {
  background: #fbf6f1;
  width: min(1200px, 95%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 48px;
  border-radius: 4px;
  animation: fadeUp 0.3s ease;
}

/* Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.modal-header h2 {
  font-size: 40px;
  font-weight: 400;
  color: #2b2622;
}
.modal-header .modal-close {
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Body */
.modal-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* List */
.modal-list {
  list-style: none;
  color: #7a736b;
}
.modal-list li {
  margin-bottom: 20px;
  font-size: 16px;
}

/* Gallery */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 10rem;
  gap: 20px;
}
.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-gallery img:nth-child(odd) {
  grid-row: span 2;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Mobile */
@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .nav,
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    text-align: center;
  }
  .hero__content {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 30px;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__images {
    margin-top: 40px;
  }
  .service-list li {
    font-size: 16px;
    padding: 14px 0;
  }
  .modal {
    padding: 24px;
  }
  .modal-header h2 {
    font-size: 28px;
  }
  .modal-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-contact {
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-links a {
    margin-left: 0;
    margin-right: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
