:root {
  --cream: #FAF3EC;
  --ink: #332A1F;
  --terracotta: #C97B3D;
  --peach: #F3D7C0;
  --petrol: #2F8F86;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Quicksand", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--petrol); }

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

.wrap-narrow {
  max-width: 720px;
}

.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(51,42,31,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.site-header nav a {
  margin-left: 24px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-header nav a:hover { color: var(--terracotta); }

.hero {
  padding: 70px 0;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-photo {
  flex: 0 0 380px;
}

.hero-photo img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.hero h1 {
  max-width: 560px;
}

.lead {
  max-width: 520px;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-grid { flex-direction: column-reverse; }
  .hero-photo { flex: 0 0 auto; max-width: 320px; }
  .hero-text { text-align: center; }
  .hero h1, .lead { max-width: none; }
  .cta-row { justify-content: center; }
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--peach);
}

.section-intro {
  max-width: 640px;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
}

.section.alt .card {
  background: var(--cream);
}

.card-offer .badge {
  display: inline-block;
  background: var(--petrol);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.pricing-note {
  margin-top: 24px;
  font-style: italic;
  opacity: 0.85;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--terracotta);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 28px;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--terracotta);
  flex-shrink: 0;
  position: relative;
}

.testimonial-avatar {
  position: absolute;
  width: 156px;
  height: 156px;
  max-width: none;
  left: -52px;
  top: -10px;
}

.testimonial-author {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0;
}

.testimonial-role {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.more-refs {
  margin-top: 24px;
}

.contact-links {
  font-size: 1.1rem;
  font-weight: 600;
}

.site-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .site-header nav a { margin-left: 14px; font-size: 0.9rem; }
}
