* {
  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: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1300px;
  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 {
  line-height: 1.1;
  cursor: pointer;
}

.header-logo-name {
  white-space: nowrap;
}

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

.header-logo-line2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}

.header-logo-line3 {
  font-size: 0.625rem;
  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;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}

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

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-menu span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #dc2626;
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .contact-button {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
}

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

.hero-content-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-text {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 2rem;
  transform: translateY(-50%);
  z-index: 10;
}

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

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

.hero-subtitle {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  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: 0;
  right: 0;
  padding-left: 2rem;
  padding-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: 768px) {
  .hero-name-first,
  .hero-name-last {
    font-size: 6rem;
  }
  
  .hero-name-last {
    margin-top: -1rem;
  }
  
  .hero-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

@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: 1300px;
  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;
    gap: 2rem;
  }

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

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

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

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

/* Split Sections */
.split-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.split-section-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1300px;
  width: 100%;
}

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

.split-content {
  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-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

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

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

.quote-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  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 0;
  background-color: #f9fafb;
}

.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  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;
  line-height: 1.8;
}

.contact-form {
  height: 1400px;
}

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

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 30% 70%;
    gap: 2rem;
  }
  
  .contact-form {
    height: 1100px;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    max-width: 1300px;
  }
}

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

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.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;
  }
}
