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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: #11100d;
  color: #f5efe3;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(17, 16, 13, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 239, 227, 0.08);
}

.nav {
  width: 92%;
  max-width: 1120px;
  height: 70px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #f5efe3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: #d8d0c0;
}

.nav-call {
  color: #11100d !important;
  background: #d39b2f;
  padding: 9px 16px;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #f5efe3;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  min-height: 86vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("images/hero.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 16, 13, 0.88),
    rgba(17, 16, 13, 0.66),
    rgba(17, 16, 13, 0.35)
  );
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.28) 1px, transparent 0);
  background-size: 18px 18px;
}

.hero-inner {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 1120px;
  margin: auto;
  padding-top: 70px;

  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: center;
}

.hero-logo-card {
  background: rgba(17, 16, 13, 0.72);
  border: 1px solid rgba(211, 155, 47, 0.28);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.hero-logo-card img {
  width: 100%;
  border-radius: 16px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: #d39b2f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  max-width: 700px;
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 16px;
}

h2 {
  max-width: 680px;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 800;
}

.hero-subtitle,
.contact-copy p,
.about-card p,
.service-card p {
  color: #d5cbbb;
  font-size: 16px;
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 19px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;
}

.primary-btn {
  background: #d39b2f;
  color: #11100d;
}

.secondary-btn {
  background: rgba(245, 239, 227, 0.08);
  color: #f5efe3;
  border: 1px solid rgba(245, 239, 227, 0.14);
}

.section {
  width: 92%;
  max-width: 1120px;
  margin: auto;
  padding: 62px 0;
}

.section-heading {
  margin-bottom: 26px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.center h2 {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  background: #f2e8d8;
  color: #17130d;
  border: 1px solid rgba(211, 155, 47, 0.26);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.service-card span {
  display: block;
  color: #9b6b18;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.service-card p {
  color: #5a5043;
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  filter: grayscale(100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
  filter: grayscale(85%);
}

.about {
  padding-top: 28px;
}

.about-card {
  background: #f2e8d8;
  color: #17130d;
  border-radius: 28px;
  padding: 42px;
  border: 1px solid rgba(211, 155, 47, 0.24);
}

.about-card .eyebrow {
  color: #9b6b18;
}

.about-card p {
  max-width: 720px;
  margin-top: 16px;
  color: #5a5043;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: start;
}

.contact-copy p {
  max-width: 520px;
  margin-top: 16px;
}

.contact-card {
  background: #f2e8d8;
  color: #17130d;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(211, 155, 47, 0.24);

  display: grid;
  gap: 20px;
}

.contact-card div {
  display: grid;
  gap: 6px;
}

.contact-card strong {
  font-size: 13px;
  color: #17130d;
}

.contact-card a,
.contact-card p {
  color: #5a5043;
  font-size: 15px;
  line-height: 1.55;
}

.footer {
  padding: 36px 20px;
  text-align: center;
  color: #bfb4a2;
  border-top: 1px solid rgba(245, 239, 227, 0.08);
}

.footer img {
  width: 100px;
  margin: 0 auto 12px;
  border-radius: 14px;
}

.footer p {
  font-size: 13px;
}

@media (max-width: 950px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #11100d;

    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 18px 24px;

    transform: translateY(-120%);
    transition: 0.25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(245, 239, 227, 0.08);
  }

  .nav-call {
    text-align: center;
    margin-top: 12px;
    border-bottom: none !important;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 56px;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(17, 16, 13, 0.72),
      rgba(17, 16, 13, 0.95)
    );
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 0;
  }

  .hero-logo-card {
    max-width: 230px;
  }

  .services-grid,
  .gallery-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }

  .section {
    padding: 50px 0;
  }

  .service-card,
  .about-card,
  .contact-card {
    padding: 24px;
  }

  .btn {
    width: 100%;
  }
}