:root {
  --coral: #e8643c;
  --coral-dark: #d1502a;
  --sage: #7c9885;
  --ink: #1c1c1a;
  --ink-soft: #55534e;
  --paper: #faf8f5;
  --paper-alt: #f1ede6;
  --line: #e4ddd2;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; margin-bottom: 8px; }

p { margin: 0 0 12px; color: var(--ink-soft); }

a { color: inherit; }

.center { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo .dot, .logo .dot-final { color: var(--coral); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.main-nav a:hover { color: var(--coral); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 88px 24px 96px;
}

.hero .lead {
  font-size: 1.1rem;
  max-width: 46ch;
}

.hero-card {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.avatar-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.avatar-photo-lg { width: 148px; height: 148px; }

.hero-name { font-weight: 600; font-size: 1.1rem; margin: 0; color: var(--ink); }
.hero-role { margin: 4px 0 0; font-size: 0.9rem; }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p, .section-dark .lead { color: #cfccc4; }
.section-dark h2 { color: #fff; }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin: 40px 0;
}

.quality { border-left: 3px solid var(--sage); padding-left: 20px; }
.quality h3 { color: var(--ink); }

.google-link {
  display: inline-block;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
}

/* Expertise rail layout */
.expertise-layout {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: start;
}

.expertise-rail, .contact-rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--sage);
  border-left: 2px solid var(--sage);
  padding-left: 12px;
}

.contact-rail { color: var(--coral); border-left-color: var(--coral); }

.expertise-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 40px;
}

.expertise-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
}

.expertise-item + .expertise-item { margin-top: 24px; }

.expertise-item h3 { color: var(--ink); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

blockquote {
  margin: 0;
  background: var(--paper-alt);
  border-radius: 16px;
  padding: 28px;
}

blockquote p {
  font-style: italic;
  color: var(--ink);
  font-size: 0.95rem;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sage);
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-list a { text-decoration: none; color: #fff; }
.contact-list a:hover { color: var(--coral); }

.contact-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.business-card-photo {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.trusted-label {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
}

.trusted-logos {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 24px auto 0;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  background: var(--ink);
  border-top: 1px solid #333;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px;
  font-size: 0.85rem;
  color: #a8a59e;
}

/* Responsive */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .quality-grid, .expertise-columns, .testimonial-grid { grid-template-columns: 1fr; }
  .expertise-layout, .contact-layout { grid-template-columns: 1fr; }
  .contact-media { margin-top: 8px; }
  .expertise-rail, .contact-rail {
    writing-mode: horizontal-tb;
    transform: none;
    border-left: none;
    border-bottom: 2px solid var(--sage);
    padding: 0 0 8px;
  }
  .contact-rail { border-bottom-color: var(--coral); }

  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
}
