*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: #F5F0EA;
  color: #6B5744;
  line-height: 1.7;
}

/* NAV */
nav {
  background: #F5F0EA;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(160,130,100,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B5744;
  text-decoration: none;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A7060;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #3D2E22; }
.nav-btn {
  background: #7A5C3E;
  color: #F5F0EA;
  padding: 0.6rem 1.4rem;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s;
}
.nav-btn:hover { background: #6B4F34; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #6B5744;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 5rem 2rem 6rem;
  text-align: center;
  background: #F5F0EA;
}
.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 400;
  color: #3D2E22;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 2rem;
}

/* TYPOGRAPHY */
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B07850;
  margin-bottom: 0.8rem;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  color: #3D2E22;
  margin: 0 auto 0.6rem;
  max-width: 540px;
  line-height: 1.3;
}
.section-subheading {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: #7A5C3E;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 15px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.closing-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: #7A5C3E;
  max-width: 440px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}
.divider {
  width: 40px;
  height: 1px;
  background: #B07850;
  margin: 0 auto 1.5rem;
}
.illustration {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}

/* SECTIONS */
.section-warm {
  background: #E8DDD0;
  padding: 5rem 2rem;
  text-align: center;
}
.section-cream {
  background: #F5F0EA;
  padding: 5rem 2rem;
  text-align: center;
}
.section-deep {
  background: #DDD0BF;
  padding: 5rem 2rem;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: #7A5C3E;
  color: #F5F0EA;
  padding: 0.9rem 2.4rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover { background: #6B4F34; }
.btn-light {
  display: inline-block;
  background: #F5F0EA;
  color: #7A5C3E;
  padding: 0.9rem 2.4rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-light:hover { background: #EDE5D8; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #7A5C3E;
  padding: 0.9rem 2.4rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #7A5C3E;
  cursor: pointer;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: #7A5C3E; color: #F5F0EA; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 2.5rem auto;
}
.card {
  background: #EDE5D8;
  border-radius: 4px;
  padding: 1.8rem 1.2rem;
  text-align: center;
}
.card-symbol {
  font-size: 18px;
  color: #B07850;
  margin-bottom: 0.6rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: #3D2E22;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.card-body {
  font-size: 12px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.7;
}

/* WHO GRID */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 2.5rem auto;
}
.who-card {
  background: #F5F0EA;
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  text-align: left;
}
.who-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #3D2E22;
  margin-bottom: 0.5rem;
}
.who-card-body {
  font-size: 13px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  background: #7A5C3E;
  padding: 5rem 2rem;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #F5F0EA;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 15px;
  font-weight: 300;
  color: #D4B99A;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto 2rem;
}

/* FOOTER */
footer {
  background: #3D2E22;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p {
  font-size: 12px;
  color: #9A8070;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: #9A8070;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: #D4B99A; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: #F5F0EA;
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 0.5px solid rgba(160,130,100,0.2);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: #3D2E22;
  margin-bottom: 0.8rem;
}
.page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: #6B5744;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ABOUT PAGE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: 720px;
  margin: 0 auto;
  align-items: start;
  text-align: left;
}
.about-img {
  background: #EDE5D8;
  border-radius: 4px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #3D2E22;
  margin-bottom: 0.3rem;
}
.about-text .about-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B07850;
  margin-bottom: 1.4rem;
  display: block;
}
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about-subsection {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.about-subsection h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: #3D2E22;
  margin-bottom: 0.8rem;
}
.about-subsection p {
  font-size: 15px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* SERVICES PAGE */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 2.5rem auto;
}
.service-card {
  background: #EDE5D8;
  border-radius: 4px;
  padding: 2rem 2rem;
  text-align: left;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.service-symbol {
  font-size: 22px;
  color: #B07850;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #3D2E22;
  margin-bottom: 0.5rem;
}
.service-body {
  font-size: 14px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.8;
}

/* CONTACT / FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #3D2E22;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 14px;
  font-weight: 300;
  color: #6B5744;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.contact-info a {
  color: #B07850;
  text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }
.contact-detail {
  font-size: 13px;
  font-weight: 300;
  color: #6B5744;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.contact-detail strong {
  color: #3D2E22;
  font-weight: 400;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A7060;
  display: block;
  margin-bottom: 0.3rem;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #3D2E22;
  background: #F5F0EA;
  border: 0.5px solid rgba(160,130,100,0.4);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: #B07850;
}
form textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 12px;
  font-weight: 300;
  color: #9A8070;
  line-height: 1.7;
}
.success-msg {
  display: none;
  background: #EDE5D8;
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  font-size: 14px;
  color: #3D2E22;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #F5F0EA; padding: 1.5rem; border-bottom: 0.5px solid rgba(160,130,100,0.2); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-btn { display: none; }
  .hero h1 { font-size: 32px; }
  .section-heading { font-size: 26px; }
  .cards-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .about-img { max-width: 260px; margin: 0 auto; }
}
