/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3D2C2C;
  background: #FDF6EC;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
:root {
  --terracotta: #C4613A;
  --terracotta-dark: #A84E2C;
  --sand: #F5E6D3;
  --sand-light: #FDF6EC;
  --sand-dark: #E8D5C0;
  --brown: #3D2C2C;
  --brown-light: #5C4040;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(61,44,44,0.08);
  --shadow-lg: 0 8px 40px rgba(61,44,44,0.12);
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--brown); }

/* ── Tagline ── */
.tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

/* ── Section ── */
.section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.section-sub { font-size: 1.1rem; color: var(--brown-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0.8rem 1.75rem;
}
.btn-primary { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--terracotta); border-color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { flex-shrink: 0; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-text { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem; color: var(--brown); }
.logo-accent { color: var(--terracotta); }
.main-nav ul { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: var(--brown-light); transition: color 0.2s; }
.main-nav a:hover { color: var(--terracotta); }
.btn-nav { background: var(--terracotta); color: var(--white) !important; padding: 0.6rem 1.4rem; border-radius: 50px; }
.btn-nav:hover { background: var(--terracotta-dark); }

/* ── Hamburger ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: all 0.3s; }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; }
.blob-1 { width: 500px; height: 500px; background: var(--terracotta); top: -150px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: var(--sand-dark); bottom: -80px; left: -60px; }
.blob-3 { width: 200px; height: 200px; background: #E8A080; top: 40%; left: 30%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-content .tagline { margin-bottom: 1rem; }
.hero-headline { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.1rem; color: var(--brown-light); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--brown-light); }
.trust-icon { flex-shrink: 0; }
.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  box-shadow: var(--shadow);
}
.hero-badge svg { color: var(--terracotta); }

/* ── Services ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  background: var(--sand-light);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--terracotta); }
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--terracotta); }
.service-card:hover .service-icon-wrap svg { stroke: var(--white); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; color: var(--brown-light); line-height: 1.6; }

/* ── Why Us ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-content .section-sub { margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check { flex-shrink: 0; margin-top: 2px; }
.why-item span { font-size: 0.95rem; color: var(--brown-light); line-height: 1.6; }

/* ── About ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content .section-sub { margin-bottom: 1.25rem; }
.about-content p { color: var(--brown-light); margin-bottom: 1.25rem; }
.about-cta { margin-top: 2rem; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Testimonials ── */
.testimonials { background: var(--sand); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.quote-mark { position: absolute; top: 1.25rem; right: 1.5rem; opacity: 0.3; }
.testimonial-text { font-size: 1rem; color: var(--brown-light); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Fraunces', serif;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--brown); }

/* ── Contact ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--terracotta); margin-bottom: 0.2rem; }
.contact-detail span, .contact-detail a { font-size: 1rem; color: var(--brown-light); }
.contact-detail a:hover { color: var(--terracotta); text-decoration: underline; }
.contact-form-wrap { background: var(--sand-light); border: 1px solid var(--sand-dark); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sand-dark);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,97,58,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--brown-light); margin-top: 1rem; text-align: center; }
.form-success { text-align: center; padding: 2rem; }
.form-success svg { margin: 0 auto 1rem; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--brown-light); }

/* ── Map ── */
.map-section { height: 320px; }

/* ── Footer ── */
.site-footer { background: var(--brown); color: var(--sand); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; color: var(--sand-dark); margin-top: 1rem; line-height: 1.6; }
.footer-links h4, .footer-contact h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--terracotta); margin-bottom: 1rem; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a, .footer-contact a { font-size: 0.9rem; color: var(--sand-dark); transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--terracotta); }
.footer-bottom { border-top: 1px solid rgba(245,230,211,0.15); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--sand-dark); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,246,236,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--sand-dark);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 1rem; }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-headline { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .hero-img-wrapper { border-radius: var(--radius); }
  .contact-form-wrap { padding: 1.5rem; }
}
