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

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A84E2C;
  --terracotta-light: #D4806A;
  --sand: #F5F0EB;
  --sand-dark: #E8E0D8;
  --sand-light: #FAF7F4;
  --charcoal: #2A2522;
  --charcoal-light: #5A524D;
  --white: #FFFFFF;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.1);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(42, 37, 34, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}
.nav-list a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal-light);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav-list a:hover {
  color: var(--terracotta);
}
.nav-list a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--sm {
  padding: 9px 20px;
  font-size: 0.8125rem;
}
.btn--full {
  width: 100%;
}
.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192, 96, 58, 0.25);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--light {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--sand);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ─── Hero ─── */
.hero {
  padding: 140px 0 80px;
  background: var(--sand-light);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  min-height: 480px;
}
.hero-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(42, 37, 34, 0.08);
}
.hero-card--main {
  width: 100%;
  aspect-ratio: 9/7;
  object-fit: cover;
}
.hero-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card--stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--charcoal-light);
  letter-spacing: 0.04em;
}
.hero-card--accent {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 400;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.3);
}

/* ─── Divider ─── */
.divider-line {
  padding: 0;
}
.divider-inner {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand-dark), transparent);
}

/* ─── Section shared ─── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

/* ─── Services ─── */
.services {
  padding: 96px 0;
  background: var(--sand-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(192, 96, 58, 0.08);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--sand);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ─── About ─── */
.about {
  padding: 96px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(42, 37, 34, 0.08);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--charcoal);
  font-weight: 400;
}

/* ─── Why Us ─── */
.why-us {
  padding: 96px 0;
  background: var(--sand);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 24px;
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 96, 58, 0.07);
}
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s var(--ease);
}
.why-card:hover .why-number {
  color: var(--terracotta-light);
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 96px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  padding: 96px 0;
  background: var(--sand-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-intro {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-item span,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--terracotta);
}
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
}
.map-wrap iframe {
  width: 100%;
  height: 220px;
}

/* ─── Form ─── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: 4px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(192, 96, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--sand-dark);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  font-size: 0.8125rem;
  color: var(--charcoal-light);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--charcoal);
}
.form-success p {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}
.form-success svg {
  margin-bottom: 4px;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}
.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}
.footer-bottom {
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list {
    flex-direction: column;
    gap: 20px;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-inner .btn--sm {
    display: none;
  }
  .hero {
    padding: 100px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    min-height: 320px;
    order: -1;
  }
  .hero-card--stat {
    bottom: -16px;
    left: 16px;
  }
  .hero-card--accent {
    top: 16px;
    right: 16px;
  }
  .services {
    padding: 64px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about {
    padding: 64px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .why-us {
    padding: 64px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 64px 0;
  }
  .contact {
    padding: 64px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap {
    padding: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
