:root {
  --black: #090909;
  --black-soft: #111111;
  --white: #f5f3ee;
  --muted: #b9b4aa;
  --gold: #c8943f;
  --gold-light: #ddb15d;
  --line: rgba(200, 148, 63, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: 52px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.65) 45%,
      rgba(0, 0, 0, 0.30) 100%
    ),
    url("hero.jpg") center/cover no-repeat;
}

.hero-content {
  max-width: 720px;
  padding: 100px 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 600;
}

.hero p {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

section {
  padding: 100px 0;
}

.section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  max-width: 760px;
}

.section-intro {
  margin-top: 20px;
  color: var(--muted);
  max-width: 680px;
  font-size: 17px;
}

.services {
  background: #0d0d0d;
}

.services-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.25s ease;
}

.service-card:hover {
  background: #141414;
}

.service-number {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 400;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  min-height: 540px;
  background: #181818;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.about-copy p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-copy .btn {
  margin-top: 30px;
}

.inspiration {
  background: #f0eee8;
  color: #111;
}

.inspiration .section-label {
  color: #9a6d2b;
}

.inspiration .section-intro {
  color: #6e685f;
}

.gallery {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.gallery-main,
.gallery-small {
  min-height: 520px;
  background: #d8d3ca;
  overflow: hidden;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-stack .gallery-small {
  min-height: 251px;
}

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

.disclaimer {
  margin-top: 18px;
  color: #777168;
  font-size: 12px;
  line-height: 1.6;
}

.contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-details {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

.contact-item span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
  color: rgba(255, 255, 255, 0.78);
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #111;
  color: white;
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

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

  .gallery-main,
  .gallery-small {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 72px 0;
  }

  .hero {
    min-height: 78vh;
  }

  .hero p {
    font-size: 16px;
  }

  .services-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
