:root {
  --bg-main: #070709;
  --bg-alt: #101019;
  --bg-card: rgba(16, 16, 25, 0.75);
  --text-primary: #f5f4f2;
  --text-secondary: #c7c6c1;
  --accent: #d0a35a;
  --accent-muted: rgba(208, 163, 90, 0.2);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  font-size: 16px;
}

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

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

h2,
h3 {
  margin-top: 0;
}

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

a:hover,
a:focus {
  color: var(--accent);
}

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

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  overflow: hidden;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 7, 9, 0.92) 30%,
    rgba(7, 7, 9, 0.4) 65%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  max-width: 620px;
  z-index: 1;
  padding: 4rem 0 6rem;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  margin-top: 2.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #f1d7a3);
  color: #1a1307;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.cta:hover,
.cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.55);
  color: #444;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-muted),
    transparent
  );
}

.section--contact h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 3rem;
}

.section--contact {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--accent-muted);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card h3 {
  margin-top: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.05em;
}

.footer {
  background: #050507;
  padding: 2rem 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.small {
  font-size: 0.8rem;
  color: rgba(199, 198, 193, 0.7);
}
