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

:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --coral: #F2705A;
  --coral-dark: #E05A43;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --cream: #F5F3F0;
  --gray-100: #F7F7F7;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-400: #999999;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 999;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 16px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.logo-accent {
  color: var(--coral);
}

/* NAV */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
}
.nav-toggle .close { display: none; }
.nav-toggle[aria-expanded="true"] .hamburger { display: none; }
.nav-toggle[aria-expanded="true"] .close { display: block; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-list a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gray-500);
  transition: color 0.2s;
  position: relative;
}
.nav-list a:hover {
  color: var(--charcoal);
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-list a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 112, 90, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}
.btn-full {
  width: 100%;
}

/* HERO */
.hero {
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--coral);
  font-style: italic;
}
.hero-desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--coral);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.3;
}

/* SECTION LABELS */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 520px;
}

/* SERVICES */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.service-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.service-icon {
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 8px;
}
.about-content .section-desc {
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* WHY US */
.why-us {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--white);
}
.why-us .section-title {
  color: var(--white);
}
.why-us .section-label {
  color: var(--coral);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.feature {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.feature-number {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--coral);
  display: block;
  margin-bottom: 16px;
}
.feature h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.feature p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 380px;
}

/* CTA BANNER */
.cta-banner {
  padding: 100px 0;
  background: var(--coral);
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn-white:hover {
  background: var(--white);
}

/* CONTACT */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.contact-item a {
  color: var(--charcoal);
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--coral);
}
.contact-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
}

/* FORM */
.contact-form-wrap {
  background: var(--cream);
  border-radius: 8px;
  padding: 48px;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  margin-top: 16px;
  padding: 16px;
  background: #E8F5E9;
  border-radius: 4px;
  font-size: 0.9375rem;
  color: #2E7D32;
  text-align: center;
}

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--coral);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--coral);
}
.footer-contact span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom {
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-list.open {
    transform: translateX(0);
  }
  .nav-list a {
    font-size: 1.125rem;
    color: var(--charcoal);
  }
  .nav-list .btn-coral {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 64px;
  }
  .hero-image img {
    height: 360px;
  }
  .hero-image::before {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 400px;
  }
  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .services, .about, .why-us, .contact {
    padding: 80px 0;
  }
  .cta-banner {
    padding: 64px 0;
  }
}
