:root {
  --dust-storm: #E5D3C2;
  --seal-brown: #59260B;
  --orange: #FF6A00;
  --pale-copper: #D8A48F;
  --linen: #FAF3EA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--linen);
  color: var(--seal-brown);
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(250,243,234,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--seal-brown);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--orange);
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  background: var(--seal-brown);
}

/* HERO */
.hero {
  padding: 140px 24px 80px;
}

.hero-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Clash Display', sans-serif;
  font-size: 56px;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  margin: 24px 0;
  max-width: 420px;
  color: #5c3a25;
}

.cta-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 40px;
}

.hero-visual svg {
  width: 100%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin: 20px auto;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 24px;
    background: var(--dust-storm);
    flex-direction: column;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }
}
/* ABOUT SECTION */
.about {
  padding: 120px 24px;
  background: var(--dust-storm);
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
}

.about-rail svg {
  width: 100%;
  height: auto;
}

.about-content h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 42px;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 48px;
  color: #4a2e1d;
}

.about-points {
  display: grid;
  gap: 36px;
}

.about-points h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--seal-brown);
}

.about-points p {
  max-width: 480px;
  line-height: 1.6;
  color: #5c3a25;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-rail {
    display: none;
  }

  .about-content {
    text-align: center;
  }

  .about-lead,
  .about-points p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* SERVICES SECTION */
.services {
  padding: 120px 24px;
  background: var(--linen);
}

.services-wrapper {
  max-width: 1200px;
  margin: auto;
}

.services-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 44px;
  margin-bottom: 80px;
  text-align: center;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
}

.service-band.right {
  grid-template-columns: auto 1fr;
}

.service-text h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--seal-brown);
}

.service-text p {
  max-width: 420px;
  line-height: 1.6;
  color: #5c3a25;
}

.service-visual svg {
  width: 180px;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-band,
  .service-band.right {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-visual {
    order: -1;
  }
}
/* WHY CHOOSE US */
.whychoose {
  padding: 120px 24px;
  background: var(--pale-copper);
}

.why-wrapper {
  max-width: 1200px;
  margin: auto;
}

.why-title {
  text-align: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 44px;
  margin-bottom: 80px;
}

.why-structure {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 40px;
  align-items: start;
}

.why-column {
  display: grid;
  gap: 80px;
}

.why-item h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--seal-brown);
}

.why-item p {
  max-width: 360px;
  line-height: 1.6;
  color: #4b2e1e;
}

.why-column.right {
  text-align: left;
}

.why-column.left {
  text-align: right;
}

.why-spine svg {
  width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-structure {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-spine {
    display: none;
  }

  .why-item p {
    margin-left: auto;
    margin-right: auto;
  }

  .why-column {
    gap: 40px;
  }
}
/* CONTACT SECTION */
.contact {
  padding: 120px 24px;
  background: var(--linen);
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: 44px;
  margin-bottom: 24px;
}

.contact-lead {
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #5c3a25;
}

.contact-details {
  display: grid;
  gap: 32px;
}

.contact-details span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}

.contact-details p {
  margin-top: 6px;
  line-height: 1.6;
  color: var(--seal-brown);
}

.contact-details a {
  color: var(--seal-brown);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
}

/* FORM */
.contact-form {
  background: var(--dust-storm);
  padding: 48px;
}

.field {
  position: relative;
  margin-bottom: 32px;
}

.field input,
.field textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #bfa28f;
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  outline: none;
}

.field label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 14px;
  color: #7a4b32;
  pointer-events: none;
  transition: 0.3s;
}

.field input:focus + label,
.field textarea:focus + label,
.field input:valid + label,
.field textarea:valid + label {
  top: -14px;
  font-size: 12px;
  color: var(--orange);
}

.contact-form button {
  background: var(--seal-brown);
  color: white;
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    text-align: center;
  }

  .contact-lead {
    margin-left: auto;
    margin-right: auto;
  }
}
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: #6b4a38;
}
/* FOOTER */
.footer {
  background: var(--seal-brown);
  color: var(--linen);
  margin-top: 120px;
}

.footer-divider svg {
  width: 100%;
  height: 120px;
  display: block;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.footer-brand h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.6;
  color: #f0e3d7;
}

.footer-info {
  display: grid;
  gap: 32px;
}

.footer-info span {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}

.footer-info p {
  margin-top: 6px;
  line-height: 1.6;
  color: #f5e9df;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  color: #e5d3c2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}
