:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-strong: #111827;
  --text: #111827;
  --muted: #667085;
  --line: #d8dee8;
  --accent: #d52d2d;
  --accent-dark: #a71f1f;
  --gold: #f3b233;
  --blue: #2563eb;
  --cyan: #0891b2;
  --green: #16a34a;
  --violet: #7c3aed;
  --orange: #ea580c;
  --pink: #db2777;
  --lime: #65a30d;
  --soft-red: #fff1f1;
  --soft-gold: #fff7df;
  --soft-blue: #eff6ff;
  --soft-green: #ecfdf3;
  --soft-violet: #f5f3ff;
  --soft-orange: #fff4ed;
  --soft-cyan: #ecfeff;
  --soft-pink: #fdf2f8;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.sidebar-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(245, 247, 250, 0.88);
  border-bottom: 1px solid rgba(216, 222, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  background: var(--surface-strong);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--text);
}

.panel-button,
.primary-button,
.secondary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.panel-button {
  color: #ffffff;
  background: var(--surface-strong);
}

.sidebar-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.sidebar-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--surface-strong);
  border-radius: 999px;
}

.side-panel {
  position: fixed;
  top: 96px;
  left: clamp(16px, 2vw, 28px);
  z-index: 9;
  display: grid;
  gap: 18px;
  width: 250px;
  max-height: calc(100vh - 118px);
  padding: 18px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 222, 232, 0.92);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(18px);
}

.side-panel-head,
.side-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.side-panel-head strong,
.side-panel-head small {
  display: block;
}

.side-panel-head small,
.side-status small,
.side-mini-card p {
  color: var(--muted);
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.side-nav a:hover,
.side-nav a.is-active {
  color: var(--blue);
  background: var(--soft-blue);
  border-color: rgba(37, 99, 235, 0.18);
  transform: translateX(3px);
}

.side-nav span {
  color: var(--accent);
  font-size: 12px;
}

.side-status {
  padding: 14px;
  background: var(--soft-green);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 8px;
}

.side-mini-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 241, 241, 0.9), rgba(236, 254, 255, 0.92)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.side-mini-card .primary-button {
  width: 100%;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(6px);
}

.sidebar-backdrop[hidden] {
  display: none;
}

.primary-button,
.submit-button {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(213, 45, 45, 0.28);
}

.secondary-button {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  color: var(--surface-strong);
  font: inherit;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.text-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.panel-button:hover,
.primary-button:hover,
.secondary-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

.submit-button:hover,
.primary-button:hover {
  background: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 4vw, 64px) 72px clamp(300px, 22vw, 360px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-lead,
.section-lead,
.booking-copy p,
.service-card p,
.package-card p,
.reviews-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-lead {
  max-width: 760px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.tag-red {
  color: var(--accent-dark);
  background: var(--soft-red);
}

.tag-blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.tag-green {
  color: #047857;
  background: var(--soft-green);
}

.tag-gold {
  color: #9a5b00;
  background: var(--soft-gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0;
}

.trust-strip div {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-strip dt {
  font-size: 26px;
  font-weight: 800;
}

.trust-strip div:nth-child(1) dt {
  color: var(--accent);
}

.trust-strip div:nth-child(2) dt {
  color: var(--gold);
}

.trust-strip div:nth-child(3) dt {
  color: var(--green);
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.58)),
    url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1300&q=85")
      center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 190px;
  height: 190px;
  content: "";
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0.92;
}

.floating-metric {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 16px;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.22);
}

.floating-metric strong {
  font-size: 30px;
  line-height: 1;
}

.floating-metric span {
  font-size: 12px;
  font-weight: 800;
}

.metric-blue {
  top: 26px;
  left: 26px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.metric-orange {
  top: 128px;
  right: 26px;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.status-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.status-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.status-dot {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.18);
}

.service-band,
.gallery-band,
.process-band,
.packages-band,
.reviews-band,
.booking-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 64px) clamp(54px, 7vw, 96px)
    clamp(300px, 22vw, 360px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.12);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: var(--accent);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 800;
}

.card-red {
  background: var(--soft-red);
}

.card-gold {
  background: var(--soft-gold);
}

.card-blue {
  background: var(--soft-blue);
}

.card-green {
  background: var(--soft-green);
}

.card-violet {
  background: var(--soft-violet);
}

.card-orange {
  background: var(--soft-orange);
}

.card-gold::before,
.card-gold .service-icon {
  background: var(--gold);
  color: #9a5b00;
}

.card-blue::before,
.card-blue .service-icon {
  background: var(--blue);
  color: var(--blue);
}

.card-green::before,
.card-green .service-icon {
  background: var(--green);
  color: #047857;
}

.card-violet::before,
.card-violet .service-icon {
  background: var(--violet);
  color: var(--violet);
}

.card-orange::before,
.card-orange .service-icon {
  background: var(--orange);
  color: var(--orange);
}

.service-card .service-icon {
  background: transparent;
}

.gallery-band {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--surface-strong);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-tall {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.04), rgba(17, 24, 39, 0.78));
}

.gallery-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: #ffffff;
}

.gallery-card h3 {
  margin: 12px 0 0;
  font-size: clamp(22px, 3vw, 34px);
}

.gallery-card p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.process-band {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(22, 163, 74, 0.08)),
    #ffffff;
}

.eyebrow-orange {
  color: var(--orange);
}

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

.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.process-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  content: "";
  background: var(--soft-blue);
  border-radius: 999px;
}

.process-grid article:nth-child(2)::after {
  background: var(--soft-green);
}

.process-grid article:nth-child(3)::after {
  background: var(--soft-orange);
}

.process-grid article:nth-child(4)::after {
  background: var(--soft-pink);
}

.process-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  background: var(--blue);
  border-radius: 8px;
}

.process-grid article:nth-child(2) span {
  background: var(--green);
}

.process-grid article:nth-child(3) span {
  background: var(--orange);
}

.process-grid article:nth-child(4) span {
  background: var(--pink);
}

.packages-band {
  background: linear-gradient(135deg, #111827 0%, #1f2937 54%, #7f1d1d 100%);
  color: #ffffff;
}

.packages-band .section-heading h2,
.packages-band .section-heading p {
  color: #ffffff;
}

.eyebrow-blue {
  color: #93c5fd;
}

.eyebrow-green {
  color: var(--green);
}

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

.package-card,
.reviews-grid blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 8px;
}

.package-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.package-card.featured {
  background: #ffffff;
  color: var(--text);
}

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

.package-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card strong {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 24px;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.package-card.featured ul {
  color: var(--muted);
}

.featured strong {
  color: var(--accent);
}

.reviews-band {
  background: #f8fafc;
}

.reviews-grid blockquote {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.07);
}

.reviews-grid blockquote:nth-child(1) {
  border-top: 5px solid var(--accent);
}

.reviews-grid blockquote:nth-child(2) {
  border-top: 5px solid var(--blue);
}

.reviews-grid blockquote:nth-child(3) {
  border-top: 5px solid var(--green);
}

.reviews-grid cite {
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}

.booking-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #ffffff;
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-box {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding: 22px;
  background: var(--surface-strong);
  color: #ffffff;
  border-radius: 8px;
}

.contact-box a,
.contact-box span {
  color: rgba(255, 255, 255, 0.76);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  color: var(--surface-strong);
}

.form-head strong {
  color: var(--blue);
}

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

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  background: #ffffff;
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(213, 45, 45, 0.12);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.check-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.option-fieldset {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.option-fieldset legend {
  padding: 0 8px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--surface-strong);
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.62);
  backdrop-filter: blur(10px);
}

.popup-overlay[hidden] {
  display: none;
}

.popup-card {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(24px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 241, 241, 0.9), rgba(239, 246, 255, 0.94)),
    #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(17, 24, 39, 0.32);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  background: var(--surface-strong);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.popup-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.popup-card h2 {
  max-width: 500px;
  color: var(--surface-strong);
}

.popup-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.popup-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .sidebar-toggle {
    display: grid;
  }

  .side-panel {
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: min(340px, calc(100vw - 34px));
    max-height: none;
    border-radius: 0 8px 8px 0;
    transform: translateX(-105%);
    transition: transform 0.24s ease;
  }

  body.sidebar-open .side-panel {
    transform: translateX(0);
  }

  .hero,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .service-band,
  .gallery-band,
  .process-band,
  .packages-band,
  .reviews-band,
  .booking-section {
    padding-left: clamp(18px, 4vw, 64px);
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .booking-copy {
    position: static;
  }

  .services-grid,
  .gallery-grid,
  .process-grid,
  .packages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
  }

  .gallery-large,
  .gallery-tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .panel-button {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero,
  .service-band,
  .gallery-band,
  .process-band,
  .packages-band,
  .reviews-band,
  .booking-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 40px;
  }

  .trust-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .floating-metric {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: 16px;
  }

  .site-footer {
    flex-direction: column;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
