/* === VARIABLES === */
:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede5;
  --fg: #1a2a2a;
  --fg-muted: #5a6b6b;
  --accent: #0d4f4f;
  --accent-light: #1a6b6b;
  --accent-pale: #e0eded;
  --sand: #e8d5b7;
  --sand-light: #f5ede0;
  --border: #d4ccc0;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

/* === NAV === */
.site-nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--sand-light) 0%, var(--bg) 50%, var(--accent-pale) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,79,79,0.06) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 56px;
}
.hero-availability {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.avail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}
.avail-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.avail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.avail-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* === SECTION COMMON === */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.02em;
}

/* === DIFFERENCE === */
.difference {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 40px;
}
.difference-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.diff-header {
  margin-bottom: 60px;
}
.diff-header .section-label { color: var(--sand); }
.diff-header .section-headline { color: var(--bg); }
.diff-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.diff-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,248,245,0.75);
  margin-bottom: 20px;
}
.diff-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-block {
  padding: 24px;
  border: 1px solid rgba(250,248,245,0.12);
  border-radius: 2px;
  background: rgba(250,248,245,0.04);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.stat-desc {
  font-size: 0.82rem;
  color: rgba(250,248,245,0.55);
  line-height: 1.5;
}

/* === SERVICES === */
.services {
  background: var(--bg);
  padding: 100px 40px;
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.services-inner .section-headline { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--sand-light); }
.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonials .section-headline { margin-bottom: 48px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent-pale);
  margin-bottom: 24px;
  font-weight: 300;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 24px;
}
.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: normal;
}
.attribution-note {
  font-size: 0.75rem;
  opacity: 0.7;
}
.approach-statement {
  max-width: 540px;
  margin: 0 auto;
}
.approach-statement p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  color: var(--bg);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--bg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250,248,245,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
}
.closing-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.02em;
}
.contact-phone:hover { color: var(--white); }
.contact-note {
  font-size: 0.75rem;
  color: rgba(250,248,245,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === FOOTER === */
.site-footer {
  background: var(--fg);
  color: rgba(250,248,245,0.6);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
}
.footer-tagline {
  font-size: 0.82rem;
  max-width: 360px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(250,248,245,0.5);
}
.footer-contact a:hover { color: var(--sand); }
.footer-sep { opacity: 0.4; }
.footer-legal {
  font-size: 0.72rem;
  color: rgba(250,248,245,0.3);
  letter-spacing: 0.04em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .hero { padding: 56px 20px 72px; }
  .diff-body { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .avail-item { padding-right: 24px; }
  .avail-divider { margin-right: 24px; }
  .hero-availability { flex-wrap: wrap; gap: 24px; }
  .avail-divider { display: none; }
  .testimonial-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .contact-phone { font-size: 1.5rem; }
}