:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --line: #e9e9e9;
  --soft: #f7f7f7;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 54px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 48px;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.hero h1,
.section h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
}

.section h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.7rem);
}

.lead {
  font-size: 1.08rem;
  color: #2b2b2b;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--text);
  color: #fff;
}

.btn-light {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  min-height: 560px;
  object-fit: cover;
}

.section {
  padding: 86px 0;
}

.alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: start;
}

.section-head {
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card h3,
.feature h3,
.contact-card strong {
  margin-top: 0;
}

.card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature {
  border-top: 1px solid var(--text);
  padding-top: 20px;
}

.contact-grid {
  align-items: center;
}

.contact-card a {
  color: var(--text);
}

.site-footer {
  background: #fff;
}

.footer-wrap {
  padding: 22px 0 38px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .cards,
  .features {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    min-height: auto;
    max-height: 720px;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    padding-top: 28px;
  }

  .section {
    padding: 68px 0;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .footer-wrap {
    flex-direction: column;
  }
}
