/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #2C2420;
  background: #FAF6F2;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Tokens ────────────────────────────────────────────── */
:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --sand: #E8D5C0;
  --sand-light: #F5EDE4;
  --sand-bg: #FAF6F2;
  --charcoal: #2C2420;
  --warm-gray: #6B5E56;
  --line: rgba(192, 96, 58, 0.15);
  --line-strong: rgba(192, 96, 58, 0.3);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

/* ── Typography ────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 540px;
}
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--sand-light);
  border: 1px solid rgba(250, 246, 242, 0.4);
}
.btn--ghost:hover { background: rgba(250, 246, 242, 0.1); border-color: rgba(250, 246, 242, 0.7); }
.btn--light { background: #fff; color: var(--terracotta); }
.btn--light:hover { background: var(--sand-light); transform: translateY(-1px); }
.btn--light-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--light-outline:hover { background: rgba(255,255,255,0.1); }
.btn--sm { padding: 10px 22px; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(44, 36, 32, 0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-sans);
}
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--warm-gray);
  transition: color 0.2s;
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.main-nav a:not(.btn):hover { color: var(--terracotta); }
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Nav toggle */
.nav-toggle { display: none; padding: 8px; }
.hamburger {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  position: relative;
  transition: all 0.25s ease;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--charcoal);
  transition: all 0.25s ease;
}
.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3D1C0E 0%, #C0603A 40%, #E8A87C 70%, #F5D5B8 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.orb--1 { width: 600px; height: 600px; background: #8B3A1F; top: -15%; left: -10%; animation-delay: 0s; }
.orb--2 { width: 400px; height: 400px; background: #F5C6A0; bottom: -10%; right: -5%; animation-delay: -3s; }
.orb--3 { width: 250px; height: 250px; background: #FFD4B8; top: 40%; left: 60%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title .accent {
  font-style: italic;
  opacity: 0.85;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  white-space: nowrap;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Services ──────────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--sand-bg);
}
.section-header { margin-bottom: 64px; }
.section-header + .services-grid,
.services .container > .section-header + .services-grid { }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}
.service-card {
  background: #fff;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,36,32,0.08); }
.service-icon { margin-bottom: 20px; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── About ─────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px; height: 200px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
  color: var(--warm-gray);
  font-size: 1rem;
  margin-bottom: 16px;
}
.about-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.about-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.about-list-item svg { flex-shrink: 0; }

/* ── Why Us ────────────────────────────────────────────── */
.why {
  padding: 120px 0;
  background: var(--sand-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.why-item {
  background: #fff;
  padding: 48px 40px;
  position: relative;
  transition: all 0.3s ease;
}
.why-item:hover { background: var(--sand-light); }
.why-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.why-item:hover .why-num { color: var(--terracotta); }
.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.why-item p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #3D1C0E 0%, #C0603A 60%, #E8A87C 100%);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-orb--1 { width: 400px; height: 400px; background: rgba(139,58,31,0.5); top: -20%; right: -5%; }
.cta-orb--2 { width: 250px; height: 250px; background: rgba(245,198,160,0.3); bottom: -10%; left: 10%; }
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ───────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-details { margin: 40px 0; display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; }
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--terracotta); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact-form-wrap { }
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--sand-bg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.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: #B8A89A; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 16px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 16px 0 8px;
}
.form-success p { color: var(--warm-gray); font-size: 0.95rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-brand .logo-mark { background: var(--terracotta); }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sand); }
.footer-contact { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.88rem; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: var(--sand); }
.footer-copy {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
  text-align: center;
}

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

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { height: 480px; }
  .about-image-accent { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250,246,242,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .nav-toggle { display: block; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .stat { padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services, .about, .why, .cta, .contact { padding: 80px 0; }
  .service-card { padding: 28px 24px; }
  .why-item { padding: 32px 24px; }
}
