:root {
  --bg: #060608;
  --bg-alt: #0c0f13;
  --card: #11151b;
  --accent: #d1b38a;
  --accent-soft: rgba(209, 179, 138, 0.18);
  --border-subtle: #232733;
  --text-main: #f5f5f5;
  --text-muted: #a2a7b3;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
}

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

body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #141824 0, #050609 45%, #000 100%);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

/* Layout */

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

.section {
  padding: 96px 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #121620 0, #05070b 60%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo-img {
  height: 28px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text-main);
  border-bottom-color: rgba(209, 179, 138, 0.6);
}

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

/* Hero */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to bottom, rgba(6, 6, 8, 0.6), rgba(6, 6, 8, 0.98)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(209, 179, 138, 0.15), transparent 50%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  padding: 96px 0 72px;
  max-width: 620px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--accent);
  margin: 0 0 16px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 16px;
}

.hero-text {
  margin: 0 0 28px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 520px;
}

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #151515;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-main);
  background: rgba(6, 6, 8, 0.6);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.full-width {
  width: 100%;
}

/* Typography */

h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 14px;
}

h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 0 0 10px;
}

p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
}

.copy {
  color: var(--text-muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--accent);
  margin: 0 0 10px;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 55%),
              var(--card);
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.card p {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* Services */

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

.service-item {
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.service-item p {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery */

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

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-img {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  min-height: 130px;
}

.gallery-caption {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */

.contact-panel {
  border-radius: 22px;
  padding: 22px 22px 24px;
  background: radial-gradient(circle at top left, var(--accent-soft), transparent 55%),
              #05070b;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8);
}

.contact-lines p {
  margin: 0 0 6px;
  font-size: 13px;
}

.contact-lines a {
  color: var(--accent);
  text-decoration: none;
}

.contact-lines a:hover {
  text-decoration: underline;
}

.contact-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 9px 12px;
  font-size: 13px;
  background: rgba(3, 4, 7, 0.9);
  color: var(--text-main);
  font-family: var(--font-sans);
}

textarea {
  border-radius: 18px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 28px;
  background: #030307;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

  .hero-content {
    padding-top: 72px;
    padding-bottom: 60px;
  }
}
