:root {
  --ink: #e8e4dc;
  --paper: #e2ddd4;
  --gold: #c9a84c;
  --gold-light: #ecd79d;
  --slate: #a8b0b8;
  --bg-1: #0d1117;
  --bg-2: #0a1628;
  --bg-3: #0d1f2d;
  --panel: rgba(16, 27, 40, 0.78);
  --line: rgba(201, 168, 76, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 168, 76, 0.12), transparent 35%),
    radial-gradient(circle at 92% 20%, rgba(91, 130, 171, 0.2), transparent 28%),
    linear-gradient(150deg, var(--bg-1) 0%, var(--bg-2) 35%, var(--bg-3) 68%, #090f1a 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10, 16, 28, 0.92);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  padding: 1.5rem 3rem;
}

.nav-inner {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.15em;
  font-size: 1.95rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--slate);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hero {
  padding: 8rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(8rem, 20vw, 19rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.12);
  letter-spacing: 0.06em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

h1 {
  margin-top: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.4rem, 10vw, 8.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  max-width: 920px;
  position: relative;
  z-index: 1;
}

.hero p {
  margin-top: 1.2rem;
  max-width: 640px;
  color: rgba(232, 228, 220, 0.72);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

.hero-media {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(0.9);
}

.hero-media img:hover {
  transform: translateY(-4px);
  filter: saturate(1.05);
}

.hero-media img:last-child {
  transform: translateY(40px);
}

section {
  padding: 5.5rem 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
}

.section-text {
  margin-top: 1.2rem;
  color: rgba(232, 228, 220, 0.74);
  line-height: 1.9;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.panel img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.cards {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: rgba(14, 24, 36, 0.85);
  border: 1px solid var(--line);
  padding: 1.4rem;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.48);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.card p {
  margin-top: 0.8rem;
  color: rgba(232, 228, 220, 0.66);
  line-height: 1.8;
  font-size: 0.93rem;
}

.service-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-item {
  background: rgba(12, 22, 34, 0.88);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.service-num {
  color: rgba(201, 168, 76, 0.56);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 2.1rem;
}

.service-item h3 {
  margin-top: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.service-item p {
  margin-top: 0.8rem;
  line-height: 1.8;
  color: rgba(232, 228, 220, 0.66);
}

.process {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.step {
  border: 1px solid var(--line);
  background: rgba(12, 20, 31, 0.9);
  padding: 1rem;
}

.step b {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.step p {
  margin-top: 0.6rem;
  line-height: 1.7;
  color: rgba(232, 228, 220, 0.68);
  font-size: 0.92rem;
}

.contact-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-box {
  border: 1px solid var(--line);
  background: rgba(11, 20, 31, 0.9);
  padding: 1.3rem;
}

.contact-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.contact-box p,
.contact-box a {
  margin-top: 0.5rem;
  color: rgba(232, 228, 220, 0.72);
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

form {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-success {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(6, 12, 20, 0.95);
  color: var(--ink);
  font: inherit;
  padding: 0.84rem 0.9rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.72);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.18);
}

textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: var(--gold);
  color: #121212;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  padding: 0.84rem 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

footer {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: 4rem;
}

.footer-inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(232, 228, 220, 0.6);
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 240px;
  }

  .hero-media img:last-child {
    transform: none;
  }

  .split,
  .cards,
  .service-grid,
  .process,
  .contact-grid,
  form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav { padding: 1rem 1rem; }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.63rem;
    letter-spacing: 0.07em;
  }

  .hero {
    padding-top: 8.3rem;
  }

  .hero-bg-text {
    right: -0.2rem;
    font-size: clamp(4.5rem, 20vw, 6.5rem);
  }

  .panel img {
    height: 230px;
  }
}

@media (max-width: 380px) {
  .nav-links {
    gap: 0.5rem 0.7rem;
  }

  .nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: clamp(2.3rem, 14vw, 3.2rem);
  }

  .hero p,
  .section-text,
  .service-item p,
  .card p {
    line-height: 1.7;
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


