:root {
  --red: #CC0000;
  --red-dark: #A30000;
  --black: #111111;
  --white: #FFFFFF;
  --gray-50: #F9F9F9;
  --gray-100: #F0F0F0;
  --gray-300: #D0D0D0;
  --gray-500: #888888;
  --gray-700: #444444;
}

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

body {
  background: var(--white);
  color: var(--black);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--red); }
.nav-tagline { font-size: 13px; color: var(--gray-500); }
.nav-cta {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--red-dark); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  display: inline-block;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-image {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  display: block;
}

/* DIVIDER */
.section-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 0;
}

/* WHAT THIS IS */
.what {
  padding: 88px 48px;
  background: var(--gray-50);
}
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.what-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
  max-width: 580px;
}
.what-body {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 32px;
}
.what-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.what-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}
.what-points li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10l4 4 8-8' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* SERVICES */
.services {
  padding: 88px 48px;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.services-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: #FFF0F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.service-desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ABOUT */
.about {
  background: var(--black);
  padding: 88px 48px;
  color: var(--white);
}
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.about-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.about-body {
  font-size: 17px;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values { display: flex; flex-direction: column; gap: 20px; }
.about-value { display: flex; align-items: flex-start; gap: 16px; }
.about-value-icon {
  width: 36px;
  height: 36px;
  background: rgba(204, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg { display: block; }
.about-value-text { font-size: 15px; color: var(--gray-300); line-height: 1.5; }
.about-value-text strong { color: var(--white); display: block; font-size: 16px; margin-bottom: 4px; }

/* BOOK CTA */
.book {
  padding: 88px 48px;
  background: var(--gray-50);
}
.book-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.book-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.book-sub {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 40px;
}
.book-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.book-cta:hover { background: var(--red-dark); }
.book-note { font-size: 13px; color: var(--gray-500); margin-top: 16px; }

/* FOOTER */
.footer {
  background: var(--white);
  padding: 32px 48px;
  border-top: 1px solid var(--gray-100);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.footer-brand span { color: var(--red); }
.footer-copy { font-size: 13px; color: var(--gray-500); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 56px 24px 64px; gap: 48px; }
  .hero-right { order: -1; }
  .hero-image { max-width: 360px; margin: 0 auto; }
  .hero-sub { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .what { padding: 64px 24px; }
  .services { padding: 64px 24px; }
  .about { padding: 64px 24px; }
  .book { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}