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

:root {
  --charcoal: #374151;
  --charcoal-deep: #1f2937;
  --charcoal-light: #6b7280;
  --coral: #FF6B57;
  --coral-dark: #e85a47;
  --off-white: #fafafa;
  --white: #ffffff;
  --line: #e5e7eb;
  --line-light: #f3f4f6;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
  --header-h: 72px;
  --radius: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  background: var(--coral);
  color: var(--white);
  font-weight: 500;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  left: 0;
}

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

/* ─── HEADER ─────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--charcoal);
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal-deep);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.primary-nav a {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--charcoal-light);
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover {
  color: var(--charcoal);
  background: var(--line-light);
}

/* ─── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--lg { padding: 0.9rem 2rem; font-size: 0.95rem; }
.btn--full { width: 100%; }

.btn--coral {
  background: var(--coral);
  color: var(--white);
}
.btn--coral:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 87, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

/* ─── MOBILE NAV ─────────────────────── */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--line-light); }
.nav-toggle[aria-expanded="true"] { background: var(--line-light); }

.hamburger {
  position: relative;
  width: 18px;
  height: 12px;
  display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger::before { top: 0; }
.hamburger span { top: 5px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 5px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 5px;
  transform: rotate(-45deg);
}

/* ─── HERO ───────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 41, 55, 0.55) 0%,
    rgba(31, 41, 55, 0.7) 60%,
    rgba(31, 41, 55, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION COMMON ─────────────────── */
section {
  padding: 7rem 0;
}
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal-deep);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ─── SERVICES ───────────────────────── */
.services {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 107, 87, 0.08);
  color: var(--coral);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal-deep);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ─── ABOUT ──────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/8;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .section-eyebrow {
  text-align: left;
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.about-text {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal-deep);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* ─── WHY US ─────────────────────────── */
.why-us {
  background: var(--charcoal-deep);
  color: var(--white);
}
.why-us .section-eyebrow {
  color: var(--coral);
}
.why-us .section-title {
  color: var(--white);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.reason {
  background: var(--charcoal-deep);
  padding: 2.5rem;
  transition: background var(--transition);
}
.reason:hover {
  background: rgba(255,255,255,0.04);
}
.reason-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.reason h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.reason p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ─── CTA BANNER ─────────────────────── */
.cta-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 1.5rem;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── CONTACT ────────────────────────── */
.contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info .section-eyebrow {
  text-align: left;
}
.contact-info .section-title {
  text-align: left;
  margin-bottom: 1rem;
}
.contact-desc {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.contact-value {
  font-size: 1rem;
  color: var(--charcoal-deep);
  line-height: 1.6;
}
.contact-link {
  color: var(--charcoal);
  transition: color var(--transition);
}
.contact-link:hover {
  color: var(--coral);
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ─── FORM ───────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal-deep);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 107, 87, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--charcoal-light);
  font-weight: 300;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-top: 1rem;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success svg {
  color: var(--coral);
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal-deep);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* ─── FOOTER ─────────────────────────── */
.site-footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,0.4);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}
.footer-brand .logo-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-copy {
  font-size: 0.8rem;
}
.footer-address {
  font-size: 0.8rem;
}

/* ─── ANIMATIONS ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .primary-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .primary-nav a {
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
  }
  .primary-nav .btn--coral {
    text-align: center;
    margin-top: 0.5rem;
  }

  section {
    padding: 4.5rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }

  .hero {
    min-height: 560px;
  }
  .hero-content {
    padding-top: calc(var(--header-h) + 2rem);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image {
    aspect-ratio: 4/3;
  }
  .about-content .section-eyebrow,
  .about-content .section-title {
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
  .about-stats {
    justify-content: center;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .contact-info .section-eyebrow,
  .contact-info .section-title {
    text-align: center;
  }
  .contact-desc {
    text-align: center;
  }
  .contact-details {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .contact-form-wrap {
    padding: 1.5rem;
  }
  .reason {
    padding: 1.75rem;
  }
}
