/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta: #C96945;
  --terracotta-dark: #A84E2D;
  --espresso: #3D2B1F;
  --cream: #FAF6F1;
  --cream-dark: #EFE7DB;
  --sage: #7D9B76;
  --sage-dark: #5E7A58;
  --text: #3D2B1F;
  --text-light: #6B5D53;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(61,43,31,0.08);
  --shadow-lg: 0 8px 32px rgba(61,43,31,0.10);
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--espresso);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--terracotta-dark); color: var(--white); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--espresso);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--espresso);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover { background: var(--espresso); color: var(--white); }

.btn-wide { width: 100%; text-align: center; font-size: 1rem; padding: 0.9rem; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}
.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--espresso);
  flex-shrink: 0;
}
.header__logo {
  width: 36px; height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.header__name strong { display: block; font-size: 0.95rem; line-height: 1.2; }
.header__name small { font-size: 0.72rem; color: var(--text-light); }
.header__nav { display: flex; gap: 1.25rem; align-items: center; }
.header__nav a { color: var(--text); font-size: 0.88rem; font-weight: 500; }
.header__nav a:hover { color: var(--terracotta); }
.header__cta { flex-shrink: 0; font-size: 0.85rem; padding: 0.55rem 1.2rem; }

/* ===== HERO ===== */
.hero {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--espresso) 0%, #5A3E2B 60%, var(--terracotta-dark) 100%);
  color: var(--white);
}
.hero__content { max-width: 650px; }
.hero__kicker {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__actions .btn-secondary {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.hero__actions .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
}
.hero__stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
}
.hero__stat { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about__features { display: flex; flex-direction: column; gap: 1.25rem; }
.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.about__feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__feature strong { display: block; margin-bottom: 0.2rem; color: var(--espresso); }
.about__feature p { font-size: 0.88rem; }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; }
.service-card__price {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--terracotta);
}

/* ===== PROCESS ===== */
.process { background: var(--white); }
.process__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.process-step {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--terracotta);
}
.process-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; }

/* ===== PRICE ===== */
.price { background: var(--cream); }
.price__table-wrap {
  overflow-x: auto;
  margin: 2rem 0 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.95rem;
}
.price__table th {
  background: var(--espresso);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}
.price__table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-light);
}
.price__table tr:last-child td { border-bottom: none; }
.price__table td:last-child {
  font-weight: 700;
  color: var(--terracotta);
  white-space: nowrap;
}
.price__note {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 600px;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq__list {
  max-width: 700px;
  margin-top: 1.5rem;
}
.faq__item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 0;
}
.faq__item summary {
  padding: 1.15rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-left: 1rem;
  transition: transform 0.2s;
}
.faq__item[open] summary::after { content: '\2013'; }
.faq__item p {
  padding-bottom: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== CONTACT FORM ===== */
.contact-form { background: var(--cream); }
.contact-form__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}
.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-form__full { grid-column: 1 / -1; }
.contact-form__fields label span {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--espresso);
}
.contact-form__fields input,
.contact-form__fields textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: var(--cream);
}
.contact-form__fields input:focus,
.contact-form__fields textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}
.contact-form__fields textarea { resize: vertical; min-height: 80px; }
.contact-form__fields button { margin-top: 0.5rem; grid-column: 1 / -1; }

/* ===== CONTACTS ===== */
.contacts { background: var(--white); }
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-card {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  display: block;
}
.contact-card--link:hover { background: var(--cream-dark); }
.contact-card__icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.contact-card__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); }
.contact-card__value { font-weight: 600; font-size: 0.95rem; margin-top: 0.2rem; }
.contacts__note { margin-top: 2rem; }
.contacts__note p { font-size: 0.9rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.7);
  padding: 1.5rem 0;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .hero { padding: 3rem 0 4rem; }
  .hero__stats { gap: 1.5rem; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .process__timeline { grid-template-columns: 1fr; }
  .contact-form__fields { grid-template-columns: 1fr; }
  .contact-form__card { padding: 1.5rem; }
  .section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .header__brand .header__name { display: none; }
  .header__inner { padding: 0.6rem 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-primary,
  .hero__actions .btn-secondary { width: 100%; text-align: center; }
  .hero__stats { flex-direction: column; gap: 0.75rem; }
  .services__grid { grid-template-columns: 1fr; }
  .container { padding: 0 1rem; }
}
