:root {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  color: #120b04;
  background-color: #f2ead9;
  --tan: #f2ead9;
  --deep-forest: #03160a;
  --sand: #d7b88b;
  --emerald: #2ef5a9;
  --lime: #c7f4c8;
  --urgent: #a00415;
  --panel: rgba(3, 22, 10, 0.92);
  --border: rgba(3, 22, 10, 0.25);
  --text-muted: rgba(18, 11, 4, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--tan);
  min-height: 100vh;
}

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.9rem clamp(1rem, 3vw, 3rem);
  background: linear-gradient(120deg, #d7b88b, #f7ead3);
  border-bottom: 3px solid var(--deep-forest);
  color: var(--deep-forest);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.announcement-bar__logo {
  width: 240px;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}
.announcement-bar__logo--property {
  width: 220px;
}
.announcement-bar__copy {
  text-align: center;
  color: var(--deep-forest);
}
.announcement-bar__copy strong {
  display: block;
  font-size: 0.95rem;
}
.announcement-bar__copy span {
  display: block;
  font-size: 0.75rem;
}
.primary-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex: 1;
  font-size: 0.85rem;
}
.primary-nav a {
  color: var(--deep-forest);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
  transition: border-color 0.2s ease;
}
.primary-nav a:hover {
  border-color: var(--urgent);
}

.hero {
  margin: 2rem;
  border-radius: 36px;
  overflow: hidden;
  border: 2px solid var(--deep-forest);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  background: #fffaf0;
  box-shadow: 0 30px 60px rgba(3, 22, 10, 0.3);
}
.hero__slider {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero__slide--active {
  opacity: 1;
}
.hero__slide-caption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  line-height: 1.6;
}
.hero__info {
  padding: 3.5rem;
  background: linear-gradient(180deg, rgba(246, 236, 211, 0.95), rgba(227, 204, 164, 0.95));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__title {
  margin: 0;
  font-family: 'Bebas Neue', 'Franklin Gothic', sans-serif;
  font-size: clamp(3.25rem, 6vw, 5rem);
  letter-spacing: 0.25rem;
  color: var(--urgent);
}
.hero__desc {
  color: var(--deep-forest);
  line-height: 1.6;
  max-width: 52ch;
  font-size: 1.05rem;
}
.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.hero__metrics div {
  padding: 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(3, 22, 10, 0.2);
  text-align: center;
}
.hero__metrics span {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  color: var(--emerald);
}
.hero__metrics p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.hero__actions--stacked {
  flex-direction: column;
}
.hero__badge {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 2px solid var(--emerald);
  color: var(--emerald);
  font-size: 0.85rem;
}
.hero__property {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid rgba(3, 22, 10, 0.15);
}
.hero__property img {
  width: 210px;
  border-radius: 50%;
  background: #fff;
  padding: 0.5rem;
}
.hero__property small {
  color: var(--text-muted);
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  background: var(--emerald);
  color: #021106;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid var(--sand);
}

.philosophy-cta {
  margin: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #04130b, #0f341c);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 2px solid var(--emerald);
  color: #fff;
}
.philosophy-cta h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(46, 245, 169, 0.4);
}

main {
  padding: 0 2rem 4rem;
}
.section {
  margin-top: 3rem;
}
.section__header h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
.section__header p {
  color: var(--text-muted);
  max-width: 60ch;
}
.phase-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.phase-grid article,
.budget-grid article {
  background: rgba(3, 22, 10, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 1.4rem;
  padding: 1.75rem;
  box-shadow: 0 18px 35px rgba(3, 22, 10, 0.18);
}
.phase-grid h3,
.budget-grid h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.highlight {
  color: var(--sand);
  font-weight: 600;
  margin-top: 0.9rem;
}
.budget {
  margin-top: 4rem;
}
.budget-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.budget-summary {
  background: linear-gradient(160deg, rgba(46, 245, 169, 0.18), rgba(3, 22, 10, 0.95));
  border: 2px solid var(--deep-forest);
}
.section.management {
  text-align: center;
}
.management p {
  color: var(--deep-forest);
  max-width: 65ch;
  line-height: 1.6;
  margin: 0 auto;
}
.form-section {
  margin-top: 3rem;
  background: #1f2b1d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
}
.form-section .section__header h2,
.form-section .section__header p {
  color: #fff;
}
.contact-form {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}
.contact-form textarea {
  resize: vertical;
  grid-column: 1 / -1;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--emerald);
  outline: none;
}
.full-width {
  grid-column: 1 / -1;
}
footer {
  padding: 2rem;
  text-align: center;
  color: var(--deep-forest);
  font-weight: 500;
  border-top: 2px solid var(--deep-forest);
  margin-top: 3rem;
}
@media (max-width: 720px) {
  .hero {
    margin: 1rem;
    border-radius: 24px;
    grid-template-columns: 1fr;
  }
  .hero__info {
    padding: 2.5rem;
  }
  .announcement-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.pitfalls-teaser {
  margin: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #021006, #04301c);
  border: 2px solid var(--emerald);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.pitfalls-teaser h2 {
  margin: 0.3rem 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.1rem;
}
.pitfalls-teaser p {
  margin: 0;
  max-width: 52ch;
}
.pitfalls-page {
  min-height: 100vh;
  background: #f1ead8;
}
.pitfalls-hero {
  margin: 2rem;
  border-radius: 32px;
  padding: 3rem;
  border: 2px solid var(--deep-forest);
  background: linear-gradient(135deg, #f9f5ec, #f0e3c4);
  box-shadow: 0 24px 45px rgba(3, 22, 10, 0.25);
}
.pitfalls-hero h1 {
  margin: 0.2rem 0;
  font-family: 'Bebas Neue', 'Franklin Gothic', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--urgent);
}
.pitfalls-hero p {
  max-width: 60ch;
  line-height: 1.6;
  color: var(--deep-forest);
}
.pitfall-list {
  margin: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.pitfall-card {
  border-radius: 24px;
  padding: 1.75rem;
  background: #fff7ef;
  border: 2px solid rgba(3, 22, 10, 0.18);
  box-shadow: 0 16px 32px rgba(3, 22, 10, 0.2);
}
.pitfall-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}
.pitfall-card p {
  line-height: 1.5;
  margin: 0.65rem 0;
}
.pitfall-card strong {
  color: var(--deep-forest);
}
.pitfall-card .pitfall-highlight {
  color: #034d24;
  font-weight: 600;
}
.pitfalls-support {
  margin: 2rem 2rem 4rem;
  padding: 2rem;
  border-radius: 26px;
  background: rgba(3, 22, 10, 0.9);
  color: #fff;
  border: 2px solid var(--emerald);
}
.pitfalls-support h2 {
  margin-top: 0;
  font-size: 1.6rem;
}
.pitfalls-support p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.pitfalls-support strong {
  color: var(--sand);
}

.restoration-plan {
  margin-top: 3rem;
}
.plan-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.plan-card {
  padding: 1.8rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 2px solid rgba(3, 22, 10, 0.18);
  box-shadow: 0 20px 40px rgba(3, 22, 10, 0.12);
}
.plan-card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}
.plan-card__amount {
  font-size: 1.05rem;
  margin: 0.2rem 0 0.9rem;
  font-weight: 700;
  color: #0c3b1d;
}
.plan-card ul {
  padding-left: 1.15rem;
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  line-height: 1.5;
}
.plan-summary {
  margin-top: 2.5rem;
  padding: 1.8rem;
  border-radius: 1.4rem;
  background: rgba(3, 22, 10, 0.85);
  color: #fff;
  border: 2px solid var(--emerald);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.plan-summary p {
  margin: 0;
}
.plan-summary__total {
  font-size: 1.1rem;
  color: var(--sand);
  margin-top: 0.4rem;
  width: 100%;
  text-align: right;
}
.contact-cta {
  background: radial-gradient(circle farthest-side, rgba(46, 245, 169, 0.3), rgba(3, 22, 10, 0));
  padding: 1.5rem 0;
  text-align: center;
}
.contact-cta .cta--secondary {
  background: var(--emerald);
  color: #04120a;
  border: none;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
}
