:root {
  --bg: #fffaf4;
  --ink: #1a1a1a;
  --muted: #64748b;
  --panel: #ffffff;
  --ring: #e2e8f0;
  --brand: #d1542c;
  --brand-dark: #a0341a;
  --brand-light: #ff6b45;
  --accent: #27c3d8;
  --success: #10b981;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header - Minimal & Clean */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FEEBC8;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ring);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.7;
}

.brand-mark {
  height: 64px;
  width: auto;
  border-radius: 10px;
}

.brand-text {
  color: var(--ink);
}

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: all 0.2s;
}

.main-nav a:hover {
  background: var(--panel);
  color: var(--ink);
}

.main-nav a.active {
  background: var(--ink);
  color: #fff;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.dropdown-toggle:hover {
  background: var(--panel);
  color: var(--ink);
}

.dropdown-toggle svg {
  transition: transform 0.2s;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--panel);
  border-radius: 12px;
  border: 1px solid var(--ring);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--ink);
  font-weight: 600;
  transition: all 0.2s;
}

.dropdown-menu a:first-child {
  border-radius: 12px 12px 0 0;
}

.dropdown-menu a:last-child {
  border-radius: 0 0 12px 12px;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--brand);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--ring);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-toggle .bars {
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  display: block;
}

.menu-toggle .bars::before,
.menu-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink);
}

.menu-toggle .bars::before {
  top: -6px;
}

.menu-toggle .bars::after {
  top: 6px;
}

/* Full-Screen Hero with Split Design */
.hero-fullscreen {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  gap: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background: var(--bg);
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 20px;
}

.hero-fullscreen h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(209, 84, 44, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ring);
}

.btn-outline:hover {
  background: var(--panel);
  border-color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-link {
  background: transparent;
  color: var(--muted);
  padding: 16px 24px;
}

.btn-link:hover {
  color: var(--ink);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-tags span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Services Showcase */
.services-showcase {
  padding: 120px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px;
  background: var(--bg);
  border: 2px solid var(--ring);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: var(--brand);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-size: 1.5rem;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* How It Works */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}

.step p {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  background: #fff;
  border-top: 1px solid var(--ring);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  width: 56px;
  height: auto;
  margin-bottom: 16px;
  border-radius: 8px;
}

.footer-brand p {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--muted) !important;
  font-weight: 400 !important;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--brand);
}

.footer-phone {
  font-weight: 700;
  font-size: 1.125rem !important;
  color: var(--ink) !important;
}

.footer-location {
  color: var(--muted);
  margin-top: 16px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--ring);
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--brand);
}

/* Responsive - Tablet */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
  
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content {
    padding: 80px 60px;
  }
  
  .hero-visual {
    min-height: 600px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* Mobile Nav */
@media (max-width: 940px) {
  .nav-wrap {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .brand-mark {
    height: 80px;
  }

  .brand-text {
    display: block;
  }
  
  .menu-toggle {
    display: inline-flex;
  }
  
  .main-nav {
    position: fixed;
    top: 152px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: var(--panel);
    border: 1px solid var(--ring);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
    border: none;
    background: var(--bg);
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  body.nav-open .main-nav {
    display: flex;
  }
  
  .hero-fullscreen {
    min-height: auto;
  }
  
  .hero-content {
    padding: 60px 24px;
  }
  
  .hero-visual {
    min-height: 400px;
    padding: 24px;
  }
  
  .hero-badge {
    width: 100px;
    height: 100px;
    bottom: 24px;
    right: 24px;
  }
  
  .badge-number {
    font-size: 1.75rem;
  }
  
  .services-showcase,
  .how-it-works {
    padding: 80px 0;
  }
  
  .service-card {
    padding: 32px;
  }
  
  .step {
    padding-left: 72px;
  }
}
