:root {
  --navy: #111d35;
  --red: #8e1f2f;
  --beige: #f4ebdd;
  --paper: #fffaf2;
  --ink: #596070;
  --line: rgba(17, 29, 53, 0.12);
  --shadow: 0 22px 70px rgba(17, 29, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(244, 235, 221, 0.78), rgba(244, 235, 221, 0.78)),
    url("assets/todoso/linen-texture.jpg") center / 680px repeat,
    var(--beige);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(1180px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(17, 29, 53, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.header-actions,
.desktop-nav,
.button-row,
.pill-row,
.metrics {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
  font-size: 1.18rem;
}

.brand img,
.footer img {
  border-radius: 6px;
  object-fit: cover;
}

.desktop-nav {
  margin-left: auto;
  gap: 24px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
}

.desktop-nav a:hover,
.footer a:hover {
  color: var(--red);
}

.header-actions {
  margin-left: auto;
  gap: 10px;
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  font-weight: 850;
  line-height: 1;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.76);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--beige);
  border-radius: 8px;
  font-weight: 900;
}

.section,
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.section.narrow {
  max-width: 940px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.hero {
  min-height: calc(100vh - 92px);
  padding-top: 58px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 850;
}

.lead {
  max-width: 610px;
  margin: 20px 0 14px;
  color: var(--ink);
  font-size: 1.15rem;
}

.brand-line {
  max-width: 580px;
  margin: 0 0 28px;
  color: var(--red);
  font-size: 1.18rem;
  font-weight: 850;
}

.button-row {
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  margin-top: 34px;
  gap: 12px;
  flex-wrap: wrap;
}

.metrics div {
  width: 162px;
  min-height: 102px;
  padding: 14px;
  background: rgba(255, 250, 242, 0.54);
  border-top: 2px solid rgba(142, 31, 47, 0.56);
}

.metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.9rem;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
}

.hero-visual,
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual {
  aspect-ratio: 1.08;
}

.hero-visual img,
.media-frame img,
.guide-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  color: var(--navy);
  background: rgba(255, 250, 242, 0.88);
  border-radius: 8px;
  font-weight: 900;
}

.band {
  background: rgba(255, 250, 242, 0.72);
}

.pill-row {
  margin-top: 28px;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-row span {
  padding: 12px 16px;
  color: var(--navy);
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.statement-list p {
  position: relative;
  margin: 0 0 14px;
  padding-left: 32px;
  font-size: 1.05rem;
}

.statement-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 13px;
  height: 13px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.statement-list.compact {
  margin-top: 20px;
}

.service-grid,
.reason-grid,
.guide-grid,
.timeline {
  display: grid;
  gap: 14px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.service-grid article,
.reason-grid article,
.timeline article,
.guide-grid article,
.faq-list details,
.slider,
.contact-form {
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article {
  min-height: 270px;
  padding: 20px;
}

.service-grid p {
  margin: 8px 0 0;
}

.card-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--red);
  background: var(--beige);
  border-radius: 7px;
  font-weight: 900;
}

.media-frame {
  aspect-ratio: 1.45;
}

.timeline {
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  margin-top: 28px;
}

.timeline article {
  min-height: 138px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.timeline span {
  color: var(--red);
  font-weight: 900;
}

.timeline strong {
  margin-top: auto;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.18;
}

.guide-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.guide-grid article {
  overflow: hidden;
}

.guide-grid img {
  aspect-ratio: 1.55;
}

.guide-grid div {
  padding: 20px;
}

.role {
  margin: -4px 0 10px;
  color: var(--red);
  font-weight: 850;
}

.reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.reason-grid article {
  min-height: 126px;
  padding: 20px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
}

.slider {
  position: relative;
  min-height: 172px;
  margin-top: 28px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 750;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide span {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 0.94rem;
}

.faq-list {
  margin-top: 28px;
}

.faq-list details {
  margin-bottom: 10px;
  padding: 0 16px;
}

.faq-list summary {
  cursor: pointer;
  padding: 17px 0;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin-top: 0;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-lines a {
  color: var(--navy);
  font-weight: 850;
}

.contact-form {
  padding: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

input:focus,
textarea:focus {
  border-color: var(--red);
}

.contact-form,
#contentForm {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-weight: 750;
}

.footer {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 30px;
  padding: 48px max(20px, calc((100vw - 1180px) / 2)) 96px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer h3 {
  color: #fff;
  font-size: 1rem;
}

.footer p {
  color: #fff;
  font-weight: 850;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 7px;
}

.floating-whatsapp,
.sticky-cta {
  position: fixed;
  z-index: 18;
}

.floating-whatsapp {
  right: 18px;
  bottom: 84px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #128c7e;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.sticky-cta {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: 238px;
  padding: 14px 22px;
  color: #fff;
  text-align: center;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 850;
}

.admin-panel {
  width: min(980px, calc(100% - 28px));
  max-height: 88vh;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-panel::backdrop {
  background: rgba(17, 29, 53, 0.65);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  max-height: 70vh;
  overflow: auto;
}

.submission-list {
  display: grid;
  gap: 10px;
}

.submission-list article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.submission-list strong {
  display: block;
  color: var(--navy);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .section-grid,
  .guide-grid,
  .footer,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    gap: 8px;
  }

  .brand span {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .section,
  .hero {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-visual {
    aspect-ratio: 0.86;
  }

  .service-grid,
  .reason-grid,
  .timeline,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .footer {
    padding-bottom: 108px;
  }
}
