:root {
  --cream: #FBF6EF;
  --cream-dark: #F3EADA;
  --terracotta: #C1673D;
  --terracotta-dark: #A8532E;
  --sage: #7C8B6F;
  --sage-light: #E5EADE;
  --ink: #3A332C;
  --ink-soft: #6B6156;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(58, 51, 44, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Georgia', 'Iowan Old Style', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

a { color: inherit; text-decoration: none; }

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58,51,44,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  font-size: 22px;
  color: var(--terracotta-dark);
  letter-spacing: 0.02em;
}
.brand span { color: var(--sage); }

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
nav a:hover { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

/* Hero */
.hero {
  padding: 90px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--sage-light);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--cream-dark);
  z-index: 0;
}

.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 22px;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }

.hero p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  font-family: Helvetica, Arial, sans-serif;
  display: inline-block;
  padding: 15px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(58,51,44,0.25);
}
.btn-secondary:hover { border-color: var(--ink); }

/* Sections */
section { padding: 90px 24px; }
.section-label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
  text-align: center;
}
.section-title {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  margin: 0 0 16px;
}
.section-intro {
  font-family: Helvetica, Arial, sans-serif;
  text-align: center;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 16px;
}

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--sage-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait span {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  padding: 0 20px;
  text-align: center;
}
.about-text h2 { margin-top: 0; }
.about-text p {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink-soft);
  font-size: 16px;
}
.credentials {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.credential {
  font-family: Helvetica, Arial, sans-serif;
}
.credential strong {
  display: block;
  font-size: 26px;
  color: var(--terracotta);
  font-family: Georgia, serif;
}
.credential span {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Services */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 { margin: 0 0 12px; font-size: 20px; }
.service-card p {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

/* Process */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step { text-align: center; }
.process-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.process-step h3 { font-size: 17px; margin: 0 0 8px; }
.process-step p {
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
}

/* Testimonials */
.testimonials { background: var(--sage-light); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 26px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.stars { color: var(--terracotta); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 18px;
}
.testimonial-name {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: normal;
}
.testimonial-name strong { color: var(--ink); }

/* CTA banner */
.cta-banner {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 { color: var(--white); margin: 0 0 16px; font-size: clamp(26px, 4vw, 36px); }
.cta-banner p {
  font-family: Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 32px;
}
.cta-banner .btn-primary { background: var(--white); color: var(--terracotta-dark); }
.cta-banner .btn-primary:hover { background: var(--cream); }

/* Contact */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { margin-top: 0; }
.contact-info p { font-family: Helvetica, Arial, sans-serif; color: var(--ink-soft); }
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}
.info-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

form {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-family: Helvetica, Arial, sans-serif;
}
.form-row { margin-bottom: 18px; }
label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(58,51,44,0.15);
  background: var(--cream);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--sage); }
textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: Helvetica, Arial, sans-serif;
}
.form-note {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
  text-align: center;
}

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 46px 24px 30px;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
}
footer .brand { color: var(--white); font-size: 20px; margin-bottom: 10px; display: block; }
footer .brand span { color: #E0A87D; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 20px; }

/* Responsive */
@media (max-width: 860px) {
  nav ul { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  section { padding: 64px 20px; }
}
