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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Header */
.header {
  background-color: #dc2626;
  color: white;
  position: relative;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-logo-line1 {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.header-logo-line2 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: -0.125rem;
}

.header-logo-line3 {
  font-size: 0.5rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  margin-top: 0.125rem;
}

.header-nav {
  display: flex;
  gap: 3rem;
  font-size: 1rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fecaca;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-button {
  background-color: white;
  color: #7f1d1d;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.contact-button:hover {
  background-color: #fef2f2;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  color: white;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-text {
  position: absolute;
  top: 5rem;
  left: 2rem;
  z-index: 10;
}

.hero-name-first {
  font-size: 6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.hero-name-last {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: -1rem;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  color: #f9fafb;
  letter-spacing: 0.3em;
  font-weight: 200;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  position: absolute;
  bottom: 5rem;
  left: 2rem;
  right: 2rem;
  z-index: 10;
}

.hero-tagline p {
  font-size: 1.125rem;
  font-weight: 300;
  color: #e5e7eb;
  max-width: 28rem;
  line-height: 1.625;
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.hero-tagline em {
  font-style: italic;
}

@media (min-width: 1024px) {
  .hero-name-first,
  .hero-name-last {
    font-size: 8rem;
  }
}

/* Services Section */
.services {
  background-color: #1e293b;
  color: white;
  padding: 5rem 2rem;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
}

.services-title .light {
  font-weight: 300;
}

.services-title .semibold-italic {
  font-weight: 600;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  border-top: 1px solid #4b5563;
}

.service-card {
  padding-top: 2rem;
  border-top: 1px solid #4b5563;
}

.service-card:first-child {
  border-top: none;
  padding-top: 0;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 0.025em;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-list li {
  display: flex;
  align-items: center;
}

.checkmark {
  color: #f87171;
  margin-right: 0.75rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
  }

  .service-card {
    padding: 0 1.5rem;
    border-top: none;
    border-left: 1px solid #4b5563;
  }

  .service-card:first-child {
    padding-left: 1.5rem;
  }

  .services-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-title {
    font-size: 3.75rem;
  }
}

/* Split Sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
}

.split-image {
  height: 16rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split-content {
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
}

.split-content-inner {
  max-width: 28rem;
}

.split-title {
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #111827;
  line-height: 1.25;
}

.split-title em {
  font-style: italic;
}

.split-text {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.625;
  font-weight: 500;
}

.cta-button {
  background-color: #dc2626;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #b91c1c;
}

@media (min-width: 1024px) {
  .split-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section.reverse {
    direction: rtl;
  }

  .split-section.reverse > * {
    direction: ltr;
  }

  .split-image {
    height: 20rem;
    min-height: 100%;
  }

  .split-content {
    padding: 7rem 3rem;
  }

  .split-title {
    font-size: 2.25rem;
  }
}

/* Quote Section */
.quote-section {
  background-color: #1e293b;
  color: white;
  padding: 5rem 2rem;
}

.quote-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 2rem;
  font-style: italic;
}

.quote-author {
  color: #fca5a5;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  font-weight: 300;
  font-style: normal;
}

@media (min-width: 1024px) {
  .quote-text {
    font-size: 1.875rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 3rem 1rem;
  background-color: #f9fafb;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #dc2626;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item-title {
  font-weight: 600;
  color: #111827;
}

.contact-item-text {
  color: #4b5563;
}

.form-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e7eb;
  border: 4px dashed #9ca3af;
  border-radius: 0.5rem;
  min-height: 400px;
}

.form-placeholder h3 {
  font-size: 3.75rem;
  font-weight: 700;
  color: #6b7280;
}

@media (min-width: 640px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  padding: 4rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.footer-brand-website {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-brand-tagline {
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

.footer-divider {
  border-top: 1px solid #4b5563;
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-copyright {
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-copyright {
    margin-bottom: 0;
  }
}
