/* Desert Spark — palette
   sand:      #f4e4cf
   sand-lt:   #fbf3e7
   terracotta:#c1502e
   terracotta-dk:#8f3a1f
   sunset:    #e8734a
   spark:     #ffb703  (warm yellow accent)
   ink:       #3a2a20  (near-black brown, high contrast text)
*/

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3a2a20;
  background: #fbf3e7;
}

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

a {
  color: #8f3a1f;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid #ffb703;
  outline-offset: 3px;
}

/* Header */

.site-header {
  background: linear-gradient(135deg, #c1502e, #e8734a);
  color: #fff8ec;
  padding: 48px 0 40px;
}

.logo {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo::after {
  content: " \2726";
  color: #ffb703;
}

.tagline {
  margin: 8px 0 0;
  font-size: 1.1rem;
  color: #fdeadb;
}

/* Intro */

.intro {
  padding: 56px 0 40px;
  text-align: left;
}

.intro h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #8f3a1f;
}

.intro p {
  max-width: 60ch;
  font-size: 1.1rem;
  margin: 0;
}

/* Services */

.services {
  padding: 24px 0 48px;
}

.services h2,
.contact h2 {
  font-size: 1.6rem;
  color: #8f3a1f;
  margin: 0 0 24px;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.services-list li {
  background: #ffffff;
  border: 1px solid #f0dcc2;
  border-left: 6px solid #ffb703;
  border-radius: 10px;
  padding: 20px 22px;
  min-height: 44px;
}

.services-list h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #c1502e;
}

.services-list p {
  margin: 0;
  font-size: 0.98rem;
}

/* Contact */

.contact {
  padding: 40px 0 64px;
  background: #f4e4cf;
  border-radius: 16px;
  margin: 0 auto 48px;
  text-align: left;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 640px;
  margin-top: 24px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  background: #c1502e;
  color: #fff8ec;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #8f3a1f;
  text-align: center;
}

.contact-link:hover {
  background: #8f3a1f;
}

/* Footer */

.site-footer {
  background: #3a2a20;
  color: #f4e4cf;
  padding: 24px 0;
  font-size: 0.95rem;
}

.site-footer .wrap {
  text-align: center;
}
