:root {
  --bg: #101312;
  --bg-soft: #171b19;
  --text: #f5f1ea;
  --muted: #b8b0a4;
  --line: rgba(255,255,255,.12);
  --gold: #b9975b;
  --gold-soft: #d7b878;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 600px;
  font-size: clamp(3rem, 7vw, 4.5rem);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 26px;
}

h3 {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

p {
  color: var(--muted);
}

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

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro p {
  max-width: 520px;
}

.contact-form {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(185,151,91,.10), rgba(255,255,255,.02)),
    var(--bg-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form select {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

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

.honeypot {
  display: none;
    position: absolute;
  left: -9999px;
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 820px) {
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(185,151,91,.10), transparent 36%),
    linear-gradient(180deg, #151817 0%, #0f1211 100%);
}

.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}

.centered {
  text-align: center;
}

.lead {
  max-width: 600px;
  font-size: 1.28rem;
}

.hero {
  min-height: 96vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.99) 0%, rgba(0,0,0,.78) 55%, rgba(0,0,0,.14) 70%),
    url("e74d636c.png") center top / 100% auto no-repeat;

}

.overlay {
  position: absolute;
  inset: 0;

}

.hero__content {
  position: relative;
  padding: 110px 0 80px;
}

.stats {
  display: flex;
  gap: clamp(30px, 7vw, 90px);
  margin-top: 72px;
}

.stats strong {
  color: var(--gold-soft);
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.stats span {
  color: var(--text);
  font-size: .95rem;
}

.grid {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.cards {
  display: grid;
  gap: 0;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border-left: 1px solid var(--line);
  padding: 14px 28px 6px;
  min-height: 230px;
   text-align: center;
}
.logo {
  width: 65px;
  height: auto;
}
.icon {
  color: var(--gold);
  font-size: 3.7rem;
  display: block;
  margin-bottom: 42px;
  line-height: 1;
 text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  border-top: 1px solid var(--line);
}

.split__image {
  background-size: cover;
  background-position: center;
  min-height: 620px;
}

.image-kitchen {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.4)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1400&q=85");
}

.split__content {
  padding: 130px clamp(32px, 7vw, 110px);
  align-self: center;
}

.features {
  display: grid;
  gap: 32px;
  margin-top: 52px;
}

.features div {
  padding-left: 32px;
  border-left: 1px solid var(--gold);
}

.features strong {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.projects h2 {
  max-width: 760px;
  margin-inline: auto;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 64px auto 34px;
  max-width: 920px;
}

figure {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

figure img {
  aspect-ratio: 4 / 5;
}

figcaption {
  padding: 18px;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  background: var(--gold);
  color: #101010;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .76rem;
}

.button-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
  margin-inline: auto;
  display: flex;
  width: fit-content;
}

.process {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(8,10,9,.78), rgba(8,10,9,.88)),
    url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-top: 50px;
  position: relative;
}

.timeline:before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--gold);
  opacity: .65;
}

.timeline article {
  text-align: center;
  position: relative;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(16,19,18,.82);
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 28px;
}

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

.contact-card {
  border: 1px solid var(--gold);
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(185,151,91,.10), rgba(255,255,255,.02)),
    var(--bg-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

footer {
  border-top: 1px solid var(--line);
  padding: 34px 24px;
  text-align: center;
  background: #0a0c0b;
}

footer p {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  font-size: .68rem;
  margin: 0;
}

.fade-in {
  animation: fadeIn 1.1s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 82px 0;
  }

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

  .cards.four,
  .timeline,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split__content {
    padding: 80px 24px;
  }

  .timeline:before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero {
    min-height: 92vh;
  }

  .stats,
  .cards.four,
  .timeline,
  .project-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stats {
    gap: 22px;
    margin-top: 46px;
  }

  .card {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0;
    min-height: auto;
  }

  .icon {
    margin-bottom: 20px;
  }

  .split__image {
    min-height: 430px;
  }




}
