:root {
  --ink: #1c2522;
  --muted: #5d6963;
  --forest: #314d43;
  --moss: #6e806d;
  --clay: #a66f4d;
  --oat: #f3efe7;
  --linen: #fbf8f1;
  --stone: #ded6c8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 42, 37, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
}

strong {
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid rgba(49, 77, 67, 0.13);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 96px;
  padding: 14px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 1.55rem + 1.7vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--forest);
  white-space: nowrap;
}

.brand-logo {
  height: 60px;
  width: auto;
  flex: 0 0 auto;
}

.site-header .nav-shell {
  min-height: 0;
  padding: 12px 0 0;
  flex-wrap: wrap;
  row-gap: 0;
}

.site-header .brand {
  gap: 14px;
  flex: 1 1 auto;
}

.site-header .brand-mark {
  font-size: clamp(1.9rem, 1.3rem + 1.2vw, 2.5rem);
}

.site-header .brand-subtitle {
  display: none;
}

.site-header .nav-links {
  flex: 0 0 100%;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0 22px;
  margin-top: 6px;
  padding: 6px 0 10px;
  border-top: 1px solid rgba(49, 77, 67, 0.12);
}

.site-header .nav-contact {
  margin-left: auto;
  min-height: 38px;
}

.brand-subtitle {
  display: none;
}

.site-header .nav-links {
  flex: 1 1 auto;
  min-width: 0;
  row-gap: 4px;
}

.brand-subtitle {
  padding-left: 16px;
  border-left: 1px solid rgba(49, 77, 67, 0.25);
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  max-width: 150px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--forest);
  border-radius: var(--radius);
  font-size: 1.35rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--forest);
  border-bottom-color: var(--clay);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px !important;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white) !important;
  border: 0 !important;
  box-shadow: 0 10px 24px rgba(49, 77, 67, 0.2);
}

.nav-contact:hover {
  background: #253c34;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 25, 22, 0.76) 0%, rgba(16, 25, 22, 0.48) 43%, rgba(16, 25, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(16, 25, 22, 0.7) 0%, rgba(16, 25, 22, 0.02) 45%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 88px;
}

.hero-kicker,
.section-kicker {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .hero-kicker {
  color: #e8c7ad;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.hero-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(61, 39, 27, 0.22);
}

.button-primary:hover {
  background: #925c3f;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline {
  color: var(--forest);
  border-color: rgba(49, 77, 67, 0.28);
  background: transparent;
}

.button-outline:hover {
  background: var(--oat);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.2);
}

.proof-item {
  padding: 18px 20px;
  background: rgba(18, 28, 24, 0.46);
  backdrop-filter: blur(8px);
}

.proof-number {
  display: block;
  color: #f3d4bd;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 76px 0;
}

.section-alt {
  background: var(--oat);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(49, 77, 67, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.card p,
.muted {
  color: var(--muted);
}

.card-media {
  width: calc(100% + 60px);
  margin: -30px -30px 22px;
  aspect-ratio: 16 / 10;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 800;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 338px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: var(--white);
  background-position: center;
  background-size: cover;
  border: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 31, 27, 0.84) 0%, rgba(20, 31, 27, 0.42) 64%, rgba(20, 31, 27, 0.08) 100%);
}

.service-card-body {
  position: relative;
  padding: 30px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.86);
}

.service-card .card-link {
  color: #f5d3ba;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid rgba(49, 77, 67, 0.17);
}

.step:last-child {
  border-bottom: 1px solid rgba(49, 77, 67, 0.17);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
}

.step > div:first-child {
  display: none;
}

.step h3 {
  margin-bottom: 8px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(31, 42, 37, 0.06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 0.92fr);
}

.image-panel {
  min-height: 560px;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wide-photo {
  min-height: 470px;
  background-position: center;
  background-size: cover;
}

.media-note {
  max-width: 840px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  display: grid;
  gap: 10px;
}

.gallery-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 32px rgba(31, 42, 37, 0.1);
}

.gallery-caption {
  color: var(--muted);
  font-size: 0.92rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-item {
  display: grid;
  gap: 10px;
  margin: 0;
}

.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--forest);
  box-shadow: 0 14px 32px rgba(31, 42, 37, 0.1);
}

.video-caption {
  color: var(--muted);
  font-size: 0.92rem;
}

.video-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-option {
  padding: 30px;
  border: 1px solid rgba(49, 77, 67, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31, 42, 37, 0.06);
}

.video-option h3 {
  margin-bottom: 14px;
  font-size: 1.24rem;
}

.video-option p {
  color: var(--muted);
}

.video-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.video-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.video-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clay);
}

.video-preview {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.video-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 31, 27, 0.82) 0%, rgba(20, 31, 27, 0.18) 100%);
}

.video-preview-body {
  position: absolute;
  inset: auto 24px 24px;
  color: var(--white);
}

.video-preview-body p {
  color: rgba(255, 255, 255, 0.84);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  cursor: pointer;
  overflow: hidden;
}

.video-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 31, 27, 0.35);
  transition: background 0.2s ease;
}

.video-embed:hover::before {
  background: rgba(20, 31, 27, 0.2);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.92);
  box-shadow: 0 10px 26px rgba(31, 42, 37, 0.3);
}

.video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--forest);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.quote {
  padding: 32px;
  border-left: 4px solid var(--clay);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 42, 37, 0.08);
}

.quote p {
  color: var(--ink);
  font-size: 1.05rem;
}

.quote cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(49, 77, 67, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone);
  color: var(--forest);
  border-radius: 50%;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 180ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
}

.faq-item.is-open .faq-icon {
  background: var(--forest);
  color: var(--white);
}

.contact-band {
  background: var(--forest);
  color: var(--white);
}

.contact-band .section-kicker {
  color: #e8c7ad;
}

.contact-band p,
.contact-band .muted {
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pricing-card {
  padding: 30px;
  border: 1px solid rgba(49, 77, 67, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31, 42, 37, 0.06);
}

.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.pricing-card .muted {
  margin-bottom: 18px;
}

.pricing-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--oat);
  color: var(--ink);
}

.pricing-note {
  margin-top: 14px;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d9d1c5;
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(166, 111, 77, 0.22);
  border-color: var(--clay);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-detail {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.contact-detail strong {
  display: block;
  color: var(--white);
}

.page-hero {
  padding: 130px 0 80px;
  background: var(--forest);
  color: var(--white);
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 890px;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
}

.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #e8c7ad;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 48px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: inset 0 0 0 4px #f3d8c6;
}

.info-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--oat);
  border: 1px solid rgba(49, 77, 67, 0.14);
}

.cta-block {
  padding: 52px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
}

.cta-block p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 46px 0;
  background: #17201d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

.footer small {
  display: block;
  margin-top: 10px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header .nav-shell {
    min-height: 96px;
    padding: 14px 0;
    flex-wrap: nowrap;
  }

  .site-header .nav-links {
    flex: none;
    border-top: 0;
    margin-top: 0;
    padding: 10px 20px 22px;
    flex-wrap: wrap;
    gap: 0;
  }

  .site-header .nav-contact {
    margin-left: 0;
  }

  .nav-links {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--linen);
    border-bottom: 1px solid rgba(49, 77, 67, 0.13);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .nav-contact {
    margin-top: 8px;
  }

  .section-heading,
  .service-intro,
  .contact-layout,
  .split,
  .split-reverse,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-proof {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

@media (max-width: 1160px) {
  .brand-subtitle {
    display: none;
  }

  .nav-links {
    font-size: 0.84rem;
    gap: 10px 14px;
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .container,
  .page-hero-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    font-size: 1.85rem;
    white-space: normal;
  }

  .brand-logo {
    height: 48px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-bottom: 62px;
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .video-guide-grid,
  .video-grid,
  .problem-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .video-item {
    max-width: 420px;
    margin-inline: auto;
  }

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

  .image-panel {
    min-height: 390px;
  }

  .wide-photo {
    min-height: 330px;
  }

  .contact-form,
  .cta-block {
    padding: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
