@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --vitpi-red: #E8472A;
  --vitpi-red-dark: #C93A1F;
  --dark: #1A1A1A;
  --dark-2: #2A2A2A;
  --warm-white: #F7F5F2;
  --mid: #6B6B6B;
  --light-border: #E2DED8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: rgba(247, 245, 242, 0.97);
  box-shadow: 0 1px 0 var(--light-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--vitpi-red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--vitpi-red); }

.nav-cta {
  background: var(--vitpi-red);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--vitpi-red-dark) !important; color: white !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vitpi-red);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  color: white;
  font-weight: 700;
  margin-bottom: 1.75rem;
  letter-spacing: -1px;
}

.hero-title em {
  color: var(--vitpi-red);
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--vitpi-red);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--vitpi-red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: white;
  border-color: white;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vitpi-red) 0%, #C93A1F 50%, #8B2510 100%);
  opacity: 0.12;
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,71,42,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,71,42,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-stat-block {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  font-weight: 700;
  color: white;
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -4px;
}

.hero-badges {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
  white-space: nowrap;
}

.hero-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ── SECTION BASICS ── */
section { padding: 7rem 4rem; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vitpi-red);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-title.light { color: white; }

.section-lead {
  font-size: 17px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
}

.section-lead.light { color: rgba(255,255,255,0.6); }

/* ── NUMBERS STRIP ── */
.numbers-strip {
  background: var(--vitpi-red);
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-item {}

.number-val {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
}

.number-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* ── SERVICES ── */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  background: rgba(255,255,255,0.06);
}

.service-card {
  background: var(--dark-2);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card:hover { background: #323232; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--vitpi-red);
  transition: height 0.4s ease;
}

.service-card:hover::before { height: 100%; }

.service-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--vitpi-red);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.service-icon {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  font-size: 3rem;
  opacity: 0.06;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.about-image-side {
  background: var(--dark);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.15);
}

.about-image-placeholder p {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.about-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.about-red-block {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--vitpi-red);
}

.about-content-side {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.45;
  border-left: 3px solid var(--vitpi-red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.about-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--warm-white);
}

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

.testimonial-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--vitpi-red);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vitpi-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--mid);
}

/* ── CONTACT ── */
.contact-section {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vitpi-red);
}

.form-group select option { background: var(--dark-2); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--vitpi-red);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  letter-spacing: 0.02em;
}

.form-submit:hover { background: var(--vitpi-red-dark); }

.contact-info { }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vitpi-red);
  font-weight: 500;
}

.contact-detail-value {
  font-size: 17px;
  color: white;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 10rem 4rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--vitpi-red);
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.blog-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-card-thumb {
  height: 180px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-thumb-label {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.06);
  font-weight: 700;
}

.blog-card-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--vitpi-red);
  color: white;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.blog-card-body { padding: 1.75rem; }

.blog-card-date { font-size: 12px; color: var(--mid); margin-bottom: 0.5rem; }

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 1.5rem 5rem; }

  section { padding: 5rem 1.5rem; }

  .numbers-strip { grid-template-columns: repeat(2, 1fr); padding: 3rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-image-side { min-height: 300px; }
  .about-content-side { padding: 3rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}
