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

:root {
  --black: #0d0d0d;
  --cream: #f3eee6;
  --soft-white: #fffaf2;
  --gold: #b89a55;
  --text: #1f1f1f;
  --muted: #666;
  --border: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8%;
  background: rgba(243, 238, 230, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.brand {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 80px 8%;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  margin-bottom: 24px;
}

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

.hero-text {
  max-width: 560px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #333;
  margin-bottom: 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--black);
  color: var(--soft-white);
}

.btn-secondary {
  border: 1px solid var(--black);
  color: var(--black);
}

.logo-panel {
  background: var(--black);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.logo-panel img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.section {
  padding: 82px 8%;
}

.card-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.work-card {
  border-radius: 22px;
  padding: 28px;
}

.card {
  background: var(--soft-white);
  border: 1px solid var(--border);
}

.card span {
  display: block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.card h3,
.work-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

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

.dark-section {
  background: var(--black);
  color: var(--soft-white);
}

.dark-section h2 {
  color: var(--soft-white);
}

.work-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.work-card p {
  color: #cfcfcf;
  margin-bottom: 16px;
}

.work-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

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

.process-step {
  border-top: 2px solid var(--gold);
  padding-top: 18px;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
}

.cta {
  padding: 90px 8%;
  text-align: center;
  background: var(--soft-white);
}

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

.cta p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.site-footer {
  background: var(--black);
  color: var(--soft-white);
  padding: 28px 8%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

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

  .site-nav {
    position: absolute;
    top: 74px;
    left: 8%;
    right: 8%;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border-radius: 18px;
    background: var(--soft-white);
    border: 1px solid var(--border);
  }

  .site-nav.active {
    display: flex;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .logo-panel {
    padding: 16px;
  }

  .card-grid,
  .work-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
