:root {
  --bg: #2C2C2C;
  --text: #F0EDE8;
  --accent: #C9A96E;
  --muted: #8A8580;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

.nav {
  position: sticky;
  top: 0;
  background: rgba(44, 44, 44, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
  z-index: 10;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
}

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 14vw, 10rem);
  letter-spacing: 0.12em;
  line-height: 1;
}

.hero-subtitle {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-note {
  margin-top: 1.25rem;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.85;
}

.tagline {
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
  max-width: 1100px;
  margin: 0 auto;
}

.tagline p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.work-lead {
  max-width: 760px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-top: 1rem;
  opacity: 0.6;
}

.about-text {
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

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

.offer-grid-five {
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.offer-card {
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}

.offer-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.offer-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-lead {
  max-width: 600px;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(240, 237, 232, 0.08);
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 110px;
}

.contact-note {
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
}

.footer {
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(240, 237, 232, 0.06);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

@media (max-width: 1024px) {
  .offer-grid-five { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 1rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.7rem; }
  .section { padding: 4rem 1.5rem; }
  .section-title { font-size: 2rem; }
  .offer-grid,
  .offer-grid-five { grid-template-columns: 1fr; gap: 0; }
  .tagline p { font-size: 0.95rem; }
  .contact-list li { flex-direction: column; gap: 0.25rem; }
  .contact-label { min-width: 0; }
}
