:root {
  --primary: #C15A34;
  --primary-dark: #332B22;
  --accent: #D4A24C;
  --accent-dark: #A8763A;
  --bg: #F5EFE3;
  --card-bg: #ffffff;
  --text: #332B22;
  --muted: #6B6156;
  --border: #E8DEC9;
  --danger: #A83232;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-optical-sizing: auto;
}

.navWordmark, .brandMark {
  font-variation-settings: 'opsz' 144;
}

.navBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 28px;
  background: var(--primary);
  border-bottom: none;
  position: relative;
}

.navBrand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navLogo {
  display: block;
  width: 64px;
  height: auto;
}

.navWordmark {
  font-family: 'Lora', Georgia, serif;
  font-size: 50px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

.brandAccent {
  color: var(--accent);
}

.navLinks {
  display: flex;
  gap: 40px;
}

.navLinks a {
  font-weight: 500;
  font-size: 17px;
  color: white;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.navLinks a:hover {
  opacity: 1;
}

.navLinks a.active {
  color: white;
  opacity: 1;
  font-weight: 700;
}

.menuBtn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: auto 0;
  padding: 0;
}

.menuBtn svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  display: block;
  margin: 0 auto;
}

.menuBtn:hover {
  background-color: var(--primary);
}

.menuDropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  right: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  overflow: hidden;
  min-width: 190px;
  z-index: 50;
}

.menuDropdown.open {
  display: flex;
}

.menuItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.15s ease;
}

.menuItem svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.menuItem:last-child {
  border-bottom: none;
}

.menuItem:hover {
  background-color: var(--bg);
}

.menuItem.active {
  color: var(--primary);
  background-color: #FBEAE3;
}

@media (max-width: 700px) {
  .navLinks {
    display: none;
  }
  .menuBtn {
    display: flex;
  }
}

.hero {
  text-align: center;
  padding: 100px 20px 40px;
  background: linear-gradient(135deg, var(--bg) 0%, #F0DCC0 100%);
}

.heroEyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 22px;
  opacity: 0.85;
}

.hero h1 {
  font-size: 58px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.heroSub {
  font-size: 19px;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 48px;
}

.trustLine {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  margin: 0 0 28px;
  opacity: 1;
}

.miniSteps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 2px solid var(--primary);
}

.miniStep {
  display: flex;
  align-items: center;
  gap: 8px;
}

.miniStep svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.miniStep span {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}

.miniStepDivider {
  width: 24px;
  height: 1px;
  background: var(--border);
}

.servicesSection {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 20px 36px;
  text-align: center;
}

.servicesLabel {
  font-family: 'Lora', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 20px;
}

.serviceCardsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 700px) {
  .serviceCardsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.serviceCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  margin-top: 0;
  min-height: 190px;
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-family: 'Work Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s ease;
}

.serviceCard:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.serviceCard.selected {
  border-color: var(--primary);
  background-color: #FBEAE3;
}

.serviceIcon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
}

.serviceCard:nth-child(even) .serviceIcon {
  background-color: var(--accent);
}

.serviceCard.selected .serviceIcon {
  background-color: var(--primary-dark);
  color: white;
}

.serviceIcon svg {
  width: 55%;
  height: 55%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.serviceName {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.servicePrice {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.serviceCard.selected .servicePrice {
  color: var(--accent-dark);
}

main {
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

main form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 44px 48px;
  box-shadow: 0 6px 24px rgba(51,43,34,0.07);
  margin-top: -1px;
  display: flex;
  flex-direction: column;
}

.formGroup {
  padding: 0;
}

.formDivider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.groupLabel {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

label {
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.labelIcon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.fieldRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field label {
  margin-top: 0;
}

input, textarea, select {
  width: 100%;
  display: block;
  font-size: 16px;
  padding: 13px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  background-color: var(--bg);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: white;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-family: 'Work Sans', sans-serif;
}

button:hover {
  background-color: var(--primary-dark);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#confirmation {
  text-align: center;
  font-size: 21px;
  font-weight: 600;
  color: var(--primary);
  margin: 40px auto;
  max-width: 560px;
  padding: 24px;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 40px 20px 30px;
}

.categoryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 700px) {
  .categoryGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.categoryBtn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 10px;
  background-color: var(--bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  cursor: pointer;
  margin-top: 0;
  transition: all 0.15s ease;
}

.categoryBtn:hover {
  border-color: var(--accent);
  background-color: white;
}

.categoryBtn.selected {
  border-color: var(--primary);
  background-color: #FBEAE3;
  color: var(--primary-dark);
}

.categoryIcon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.categoryBtn.selected .categoryIcon {
  color: var(--primary);
}

.categoryIcon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.categoryCheck {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.categoryBtn.selected .categoryCheck {
  display: flex;
}

.categoryNote {
  font-size: 15px;
  color: var(--muted);
  margin: 12px 0 0;
}

.contactToggle {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.contactBtn {
  flex: 1;
  padding: 12px;
  background-color: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  cursor: pointer;
  margin-top: 0;
}

.contactBtn.selected {
  border-color: var(--primary);
  background-color: #FBEAE3;
  color: var(--primary-dark);
}

input[type="file"] {
  padding: 12px;
  background-color: var(--bg);
  font-size: 15px;
  color: var(--muted);
}

input[type="file"]::file-selector-button {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  margin-right: 12px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background-color: var(--primary-dark);
}

.formError {
  background-color: #fcebeb;
  border: 1px solid #e24b4a;
  color: #791f1f;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  margin-top: 24px;
  margin-bottom: 0;
}

.req {
  color: var(--danger);
  font-weight: 700;
}

.requiredNote {
  font-size: 15px;
  color: var(--muted);
  margin: 16px 0 0;
}

.aboutMain {
  max-width: 860px;
  margin: 40px auto;
  background: var(--card-bg);
  padding: 44px 56px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(51,43,34,0.07);
}

.aboutMain p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
}

.aboutMain p:last-child {
  margin-bottom: 0;
}

.aboutIntro {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  color: var(--primary-dark);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 24px;
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.valueCard {
  text-align: center;
  padding: 20px 12px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.valueIcon {
  width: 30px;
  height: 30px;
  margin: 0 auto 8px;
  color: var(--accent-dark);
}

.valueIcon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.valueCard h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--primary-dark);
}

.valueCard p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.aboutCta {
  text-align: center;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.aboutCta p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
}

.ctaButton {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.ctaButton:hover {
  background-color: var(--primary-dark);
}

.faqSection {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.faqItem {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faqItem summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  color: var(--primary-dark);
  list-style: none;
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqItem summary::before {
  content: '+';
  display: inline-block;
  width: 20px;
  color: var(--accent-dark);
  font-weight: 700;
}

.faqItem[open] summary::before {
  content: '\2212';
}

.faqItem p {
  margin: 10px 0 0 20px;
  font-size: 16px;
  color: var(--muted);
}

#dashboardSection header {
  background: none;
  color: var(--text);
  text-align: left;
  padding: 24px 20px 16px;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#dashboardSection header h1 {
  color: var(--text);
  font-size: 26px;
}

#logoutBtn {
  margin-top: 0;
  width: auto;
  font-size: 16px;
  padding: 10px 18px;
  background-color: var(--danger);
}

#taskList {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.taskCard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.taskCard h3 {
  margin: 0 0 4px;
  font-size: 22px;
  color: var(--primary-dark);
}

.timestamp {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 12px;
}

.taskPhoto {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: block;
}

.status {
  font-weight: 700;
  text-transform: capitalize;
  padding: 3px 10px;
  border-radius: 6px;
  background-color: #fff3cd;
  color: #856404;
  display: inline-block;
}

.taskCard button {
  margin-top: 14px;
  margin-right: 10px;
  font-size: 16px;
  padding: 10px 18px;
  width: auto;
}

.claimBtn {
  background-color: var(--accent);
}

.completeBtn {
  background-color: var(--primary);
}

.deleteBtn {
  background-color: var(--danger);
}

#loginSection main {
  margin-top: 60px;
}

@media (max-width: 600px) {
  .navBar {
    padding: 12px 16px;
  }

  .navLogo {
    width: 44px;
    height: auto;
  }

  .navWordmark {
    font-size: 30px;
  }

  .hero {
    padding: 64px 12px 48px;
  }

  .heroEyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: 42px;
    margin-bottom: 18px;
    line-height: 1.05;
  }

  .heroSub {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .trustLine {
    display: none;
  }

  .miniSteps {
    gap: 6px;
    padding-bottom: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .miniStep span {
    font-size: 11px;
    white-space: nowrap;
  }

  .miniStep {
    flex-shrink: 0;
    gap: 4px;
  }

  .miniStep svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .miniStepDivider {
    width: 8px;
    flex-shrink: 0;
  }

  main form {
    padding: 26px 20px;
    border-radius: 14px;
  }

  .fieldRow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .categoryBtn {
    padding: 16px 8px;
    font-size: 12px;
  }

  .categoryIcon {
    width: 26px;
    height: 26px;
  }

  .valuesGrid {
    grid-template-columns: 1fr;
  }

  .aboutMain {
    padding: 28px 22px;
  }

  .servicesLabel {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .serviceCard {
    padding: 16px 8px;
    gap: 6px;
  }

  .serviceIcon {
    width: 26px;
    height: 26px;
  }

  .serviceName {
    font-size: 15px;
  }

  .servicePrice {
    font-size: 13px;
  }
}

.heroIllustration {
  width: 90px;
  height: 45px;
  margin: 0 auto 18px;
  display: block;
}

.heroIllustration path,
.heroIllustration circle {
  stroke: var(--primary);
  stroke-width: 2;
}

.heroIllustration circle {
  fill: var(--accent);
  stroke: none;
}

.groupAside {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  margin: -6px 0 18px;
}

.navTextGroup {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navLocation {
  font-size: 11px;
  font-weight: 600;
  color: white;
  opacity: 0.85;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.priceDisclaimer {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 0;
  text-align: center;
}

.taglineHighlight {
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
}

.familyPhoto {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 28px;
  display: block;
}

.familyPhoto {
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 28px;
  display: block;
}

.contactBlock {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contactIcon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--primary);
}

.contactIcon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contactLabel {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.contactEmail {
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 10px;
}

.contactEmail:hover {
  color: var(--primary-dark);
}

.contactNote {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 600px) {
  .contactEmail {
    font-size: 20px;
    word-break: break-word;
  }
}

.newBizSection {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 480px;
  margin: 0 auto 28px;
}

.newBizNote {
  display: block;
  font-size: 15px;
  font-style: italic;
  color: var(--accent-dark);
  width: 100%;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}
