/* ── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:      #ffffff;
  --off-white:  #f7f7f5;
  --mid-gray:   #999999;
  --text:       #333333;
  --dark:       #1a1a1a;
  --black:      #111111;
  --red:        #c0272d;
  --red-dark:   #9e1f24;
  --border:     #e0e0e0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--text);
  min-height: 100vh;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ── HEADER ─────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 48px 80px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
  align-items: start;
}

.footer-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-contacts {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.footer-col p,
.footer-col a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
}
.footer-site-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-site-link:hover { color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--red);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
  flex-shrink: 0;
}
.btn-red:hover { background: var(--red-dark); }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 28px;
}
.btn-back svg { transition: transform 0.2s; }
.btn-back:hover { color: var(--red); }
.btn-back:hover svg { transform: translateX(-3px); }

/* ── INDEX PAGE ─────────────────────────────────── */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: var(--white);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 80px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  margin-top: 80px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  max-width: 680px;
}
.hero-title em { font-style: italic; color: var(--red); }

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 28px auto;
}
.hero-lead {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--mid-gray);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 60px;
}

/* Choice cards */
.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 960px;
  border: 1px solid var(--border);
}

.choice-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 40px 32px 32px;
  background: var(--white);
  border: none;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.choice-card + .choice-card { border-left: 1px solid var(--border); }
.choice-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.choice-card:hover::after { transform: scaleX(1); }
.choice-card:hover { background: var(--off-white); }

.choice-icon {
  width: 30px;
  height: 30px;
  color: var(--red);
  flex-shrink: 0;
}
.choice-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.choice-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
}
.choice-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.75;
  flex: 1;
}
.choice-cta {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.choice-card:hover .choice-cta { gap: 14px; }

/* ── CONTENT PAGES ──────────────────────────────── */
.page-wrap {
  padding-top: 80px;
  min-height: 100vh;
}

.page-band {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 48px 80px 40px;
  position: relative;
}
.page-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.page-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  max-width: 560px;
}

.services-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 80px 80px;
}
.services-intro {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 48px;
  padding-left: 20px;
  border-left: 2px solid var(--red);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--off-white); }

.svc-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.svc-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.svc-text {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.8;
}

/* CTA strip */
.cta-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 36px 80px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 200px; }
.cta-text strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.cta-text span { font-size: 12px; color: var(--mid-gray); }

/* ── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.48s; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 860px) {
  .choice-row { grid-template-columns: 1fr; max-width: 420px; }
  .choice-card + .choice-card { border-left: none; border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  header { padding: 0 20px; }
  .page-band { padding: 36px 24px 28px; }
  .services-section { padding: 36px 24px 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 28px 24px; }
  footer { padding: 40px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-contacts { gap: 28px; }
}
