:root {
  --ink: #666668;
  --muted: #7e7d82;
  --cream: #f4f2ff;
  --paper: #fffaff;
  --pink: #e9779b;
  --blue: #3c6d99;
  --pink-pale: #f8dce6;
  --peach: #e2a557;
  --rose-dark: #b04243;
  --line: rgba(102, 101, 104, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.68), transparent 31%),
    linear-gradient(145deg, #f4f2ff 0%, #f7f3ff 58%, #f3f0fd 100%);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  width: 540px;
  height: 540px;
  right: -190px;
  top: -175px;
  background: rgba(233, 119, 155, 0.2);
}

.ambient-two {
  width: 310px;
  height: 310px;
  left: -145px;
  bottom: -130px;
  background: rgba(226, 165, 87, 0.24);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 124px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 8px 0;
}

.brand-logo {
  display: block;
  width: 132px;
  height: auto;
  max-height: 106px;
  object-fit: contain;
  filter: drop-shadow(2px 3px 0 rgba(80, 66, 122, 0.08));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(60, 109, 153, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 255, 0.7);
  padding: 3px;
}

.language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-switcher button:hover {
  color: var(--blue);
}

.language-switcher button.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 3px 9px rgba(60, 109, 153, 0.2);
}

.success-language {
  display: flex;
  width: max-content;
  margin: 0 0 4px auto;
}

.header-link {
  position: relative;
  padding: 9px 0;
  color: var(--blue);
  font-family: "Pangolin", cursive;
  font-size: 16px;
}

.header-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 180ms ease;
}

.header-link:hover::after {
  transform: scaleX(1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: clamp(64px, 8vw, 118px);
  align-items: center;
  padding-top: clamp(62px, 8vh, 96px);
  padding-bottom: clamp(68px, 9vh, 108px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-family: "Pangolin", cursive;
  font-size: clamp(43px, 4.8vw, 68px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.11;
}

.lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 640px;
  padding: 0;
  margin-bottom: 34px;
  list-style: none;
}

.service-list li {
  border: 1px solid rgba(102, 101, 104, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 255, 0.72);
  padding: 10px 14px;
  color: #666668;
  font-size: 13px;
  font-weight: 700;
}

.service-list li:nth-child(1),
.service-list li:nth-child(4) {
  background: rgba(233, 119, 155, 0.14);
}

.service-list li:nth-child(2) {
  background: rgba(60, 109, 153, 0.11);
}

.service-list li:nth-child(3),
.service-list li:nth-child(5) {
  background: rgba(226, 165, 87, 0.14);
}

.location-card {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: min(100%, 410px);
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.location-card:hover strong {
  color: var(--rose-dark);
}

.location-pin {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50% 50% 50% 4px;
  background: var(--pink);
  transform: rotate(-45deg);
}

.location-pin::after {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.location-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.location-copy strong {
  font-size: 15px;
}

.location-copy span {
  color: var(--muted);
  font-size: 13px;
}

.form-card {
  position: relative;
  border: 2px solid rgba(102, 101, 104, 0.1);
  border-radius: 30px 34px 29px 35px;
  background: rgba(255, 250, 255, 0.92);
  padding: clamp(28px, 3.2vw, 42px);
  box-shadow: 10px 12px 0 rgba(60, 109, 153, 0.1), 0 28px 72px rgba(110, 64, 67, 0.08);
  backdrop-filter: blur(12px);
}

.form-card::before {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 62% 38% 58% 42%;
  background: rgba(226, 165, 87, 0.42);
  content: "";
  opacity: 0.8;
  transform: rotate(18deg);
}

.form-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.form-step {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-intro h2 {
  max-width: 340px;
  margin-bottom: 10px;
  font-family: "Pangolin", cursive;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.form-intro p {
  max-width: 370px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 14px;
}

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

.lead-form label > span {
  padding-left: 3px;
  color: #666668;
  font-size: 12px;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  height: 53px;
  border: 1px solid rgba(102, 101, 104, 0.2);
  border-radius: 15px 13px 16px 12px;
  outline: none;
  background: #fff;
  padding: 0 16px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lead-form input::placeholder {
  color: #a6adaa;
}

.lead-form input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(233, 119, 155, 0.15);
}

.lead-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  border-radius: 15px 13px 16px 12px;
  background: var(--blue);
  padding: 0 20px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.lead-form button:hover {
  background: #315d85;
  transform: translateY(-1px);
}

.lead-form button span:last-child {
  font-size: 22px;
  font-weight: 400;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.contact-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
  align-items: start;
  margin: 2px 2px 0;
  cursor: pointer;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--pink);
}

.contact-consent > span {
  padding: 0 !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.45;
}

.contact-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-error {
  margin: 0;
  border-radius: 10px;
  background: var(--pink-pale);
  padding: 10px 12px;
  color: #9a3c51;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.consent {
  margin: -3px 0 0;
  color: #858e8a;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.trust-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trust-line > span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.trust-line p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.lead-form button:focus-visible,
.header-link:focus-visible,
.brand:focus-visible,
.back-link:focus-visible,
.language-switcher button:focus-visible {
  outline: 3px solid rgba(233, 119, 155, 0.35);
  outline-offset: 4px;
}

.success-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.82), transparent 33%),
    linear-gradient(145deg, #f4f2ff 0%, #f7f3ff 58%, #f3f0fd 100%);
}

.success-card {
  width: min(100%, 520px);
  border: 2px solid rgba(102, 101, 104, 0.1);
  border-radius: 32px;
  background: rgba(255, 250, 255, 0.94);
  padding: 34px clamp(24px, 6vw, 54px) 48px;
  box-shadow: 10px 12px 0 rgba(60, 109, 153, 0.1), 0 28px 72px rgba(110, 64, 67, 0.08);
  text-align: center;
}

.success-logo {
  display: block;
  width: 126px;
  height: auto;
  margin: 0 auto 16px;
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
}

.success-card h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 7vw, 46px);
}

.success-card p {
  max-width: 370px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue);
  padding: 0 24px;
  color: #fff;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eeebfa;
}

.site-footer .shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer a,
.privacy-card a:not(.privacy-brand):not(.privacy-back) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(760px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  border: 1px solid rgba(102, 101, 104, 0.14);
  border-radius: 20px;
  background: rgba(255, 250, 255, 0.98);
  padding: 18px 20px;
  box-shadow: 0 20px 55px rgba(73, 59, 93, 0.2);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-actions button {
  min-height: 42px;
  border-radius: 12px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.cookie-reject {
  border: 1px solid rgba(102, 101, 104, 0.2);
  background: transparent;
  color: var(--ink);
}

.cookie-accept {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.popup-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(52, 48, 66, 0.48);
  padding: 24px;
  backdrop-filter: blur(7px);
}

.lead-popup {
  position: relative;
  width: min(100%, 480px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  border: 2px solid rgba(102, 101, 104, 0.1);
  border-radius: 30px;
  background: var(--paper);
  padding: 38px clamp(24px, 5vw, 42px) 34px;
  box-shadow: 10px 12px 0 rgba(60, 109, 153, 0.12), 0 30px 90px rgba(38, 30, 52, 0.2);
}

.lead-popup::before {
  position: absolute;
  top: 22px;
  right: 66px;
  width: 44px;
  height: 44px;
  border-radius: 58% 42% 62% 38%;
  background: rgba(226, 165, 87, 0.38);
  content: "";
  transform: rotate(18deg);
}

.popup-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(102, 101, 104, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.lead-popup h2 {
  position: relative;
  max-width: 390px;
  margin: 0 0 10px;
  font-family: "Pangolin", cursive;
  font-size: clamp(32px, 7vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}

.popup-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.privacy-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(145deg, #f4f2ff 0%, #f7f3ff 58%, #f3f0fd 100%);
  padding: clamp(30px, 6vw, 72px) 20px;
}

.privacy-card {
  width: min(100%, 860px);
  margin: 0 auto;
  border: 2px solid rgba(102, 101, 104, 0.1);
  border-radius: 34px;
  background: rgba(255, 250, 255, 0.94);
  padding: clamp(28px, 6vw, 64px);
  box-shadow: 10px 12px 0 rgba(60, 109, 153, 0.1), 0 28px 72px rgba(110, 64, 67, 0.08);
}

.privacy-brand {
  display: inline-block;
  margin-bottom: 24px;
}

.privacy-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.privacy-topline .privacy-brand {
  margin-bottom: 0;
}

.privacy-brand img {
  display: block;
  width: 120px;
  height: auto;
}

.privacy-card h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 64px);
}

.privacy-intro {
  max-width: 720px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.privacy-card section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.privacy-card section h2 {
  margin: 0 0 12px;
  font-family: "Pangolin", cursive;
  font-size: 27px;
  font-weight: 400;
}

.privacy-card section p,
.privacy-card section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-card section p:last-child,
.privacy-card section ul:last-child {
  margin-bottom: 0;
}

.privacy-card section ul {
  padding-left: 22px;
}

.privacy-card code {
  border-radius: 5px;
  background: var(--pink-pale);
  padding: 1px 5px;
  color: var(--ink);
}

.privacy-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  border-radius: 14px;
  background: var(--blue);
  padding: 0 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.privacy-actions .privacy-back {
  margin-top: 0;
}

.cookie-settings-link {
  min-height: 48px;
  border: 1px solid rgba(102, 101, 104, 0.22);
  border-radius: 14px;
  background: transparent;
  padding: 0 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 54px;
  }

  .hero-copy {
    text-align: center;
  }

  h1,
  .lead,
  .service-list {
    margin-right: auto;
    margin-left: auto;
  }

  .service-list {
    justify-content: center;
  }

  .location-card {
    justify-content: center;
    text-align: left;
  }

  .form-card {
    width: min(100%, 560px);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 100px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-link {
    font-size: 14px;
  }

  .language-switcher button {
    min-width: 30px;
    height: 28px;
    font-size: 10px;
  }

  .brand-logo {
    width: 106px;
    max-height: 86px;
  }

  .hero-grid {
    gap: 38px;
    padding-top: 45px;
    padding-bottom: 56px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 12vw, 52px);
  }

  .lead {
    font-size: 17px;
  }

  .service-list {
    gap: 7px;
  }

  .service-list li {
    padding: 9px 11px;
    font-size: 12px;
  }

  .form-card {
    border-radius: 24px;
    padding: 28px 20px 24px;
  }

  .form-intro h2 {
    font-size: 31px;
  }

  .site-footer .shell {
    min-height: 88px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .cookie-actions button {
    flex: 1;
  }

  .popup-backdrop {
    align-items: end;
    padding: 10px;
  }

  .lead-popup {
    max-height: calc(100svh - 20px);
    border-radius: 24px;
    padding: 34px 20px 24px;
  }

  .privacy-page {
    padding: 14px;
  }

  .privacy-card {
    border-radius: 24px;
    padding: 28px 20px;
  }

  .privacy-card h1 {
    font-size: 39px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
