:root {
  --cream: #F7F1E7;
  --ink: #382C22;
  --brown-soft: #5c4c3c;
  --muted: #8a7a68;
  --terracotta: #C1653D;
  --terracotta-dark: #A8552F;
  --sage: #5B6B4E;
  --sand: #EFE2CB;
  --sand-2: #E6D3B0;
  --olive: #E1E4D3;
  --olive-2: #D3D8C0;

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--ink);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn--pill { border-radius: 100px; }
.btn--terracotta { background: var(--terracotta); }
.btn--sage { background: var(--sage); }
.nav__cta { background: var(--terracotta); font-size: 15px; padding: 12px 26px; }
.btn--lg { font-size: 17px; padding: 16px 36px; margin-top: 8px; }
.services__cta .btn { font-size: 16px; padding: 15px 34px; }

/* ---------- Shared ---------- */
.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow--sage { font-size: 15px; color: var(--sage); }
.eyebrow--terracotta { font-size: 13px; color: var(--terracotta); }

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 12px ui-monospace, Menlo, monospace;
  color: #8a6a45;
  text-align: center;
}
.hatch-sand { background: repeating-linear-gradient(45deg, var(--sand), var(--sand) 14px, var(--sand-2) 14px, var(--sand-2) 28px); }
.hatch-sage { background: repeating-linear-gradient(45deg, var(--olive), var(--olive) 14px, var(--olive-2) 14px, var(--olive-2) 28px); }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--terracotta-dark);
  letter-spacing: .5px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links > a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.nav__links > a:not(.btn):hover { color: var(--terracotta); }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 56px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}
.hero__portrait {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #E6D3B8;
  object-fit: cover;
  object-position: center 20%;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(56, 44, 34, .15);
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1.1;
  color: var(--ink);
  max-width: 760px;
}
.hero__lede {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--brown-soft);
  max-width: 560px;
}
.hero__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--terracotta);
  transition: color .15s ease;
}
.hero__insta:hover { color: var(--terracotta-dark); }
.hero__insta-icon {
  width: 20px;
  height: 20px;
}

/* ---------- About ---------- */
.about {
  background: #fff;
  padding: 90px 56px;
  display: flex;
  gap: 60px;
  align-items: center;
}
.about__photo {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  background: var(--sand);
  object-fit: cover;
  object-position: center;
}
.about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  color: var(--ink);
}
.about__text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown-soft);
}
.stats {
  display: flex;
  gap: 28px;
  margin-top: 10px;
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--sage);
}
.stat__label {
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Services ---------- */
.services {
  background: var(--cream);
  padding: 90px 56px;
}
.services__head {
  text-align: center;
  margin-bottom: 50px;
}
.services__title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--ink);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(56, 44, 34, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(56, 44, 34, .1);
}
.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
.service-card__icon--sand { background: var(--sand); }
.service-card__icon--sage { background: var(--olive); }
.service-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}
.service-card__meta {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
}
.services__cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------- Gallery ---------- */
.gallery {
  background: #fff;
  padding: 90px 56px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item {
  width: 100%;
  /* Item de grid replaced (img) tem min-width:auto = largura intrinseca, o que
     estoura as colunas 1fr. min-width:0 deixa a coluna mandar no tamanho. */
  min-width: 0;
  height: 180px;
  border-radius: 16px;
  background-color: var(--sand);
  object-fit: cover;
  object-position: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  padding: 70px 56px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: var(--cream);
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.footer__brand { max-width: 340px; }
.footer__address {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
  color: #c9bcac;
}
.footer__address a {
  color: #c9bcac;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__address a:hover { color: #fff; }
.footer__cols {
  display: flex;
  gap: 70px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #DEC49F;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__col a {
  font-weight: 500;
  font-size: 14px;
  color: #c9bcac;
}
.footer__col a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { padding: 18px 28px; }
  .hero { padding: 44px 28px 70px; }
  .hero__title { font-size: 38px; }
  .about {
    flex-direction: column;
    padding: 64px 28px;
    gap: 36px;
  }
  .about__photo { flex: none; width: 100%; height: 280px; }
  .services, .gallery { padding: 64px 28px; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 56px 28px; }
}

@media (max-width: 620px) {
  .nav__links { gap: 18px; }
  .nav__links a:not(.btn):not(.nav__cta) { display: none; }
  .hero__title { font-size: 30px; }
  .hero__lede { font-size: 16px; }
  .footer__cols { gap: 40px; }
}
