:root {
  --navy: #0a2a6b;
  --navy-deep: #061a45;
  --blue: #1a56db;
  --blue-mid: #2563eb;
  --blue-soft: #3b82f6;
  --sky: #60a5fa;
  --ink: #0f172a;
  --ink-soft: #475569;
  --teal: var(--blue);
  --cyan: var(--blue-soft);
  --cyan-deep: var(--blue);
  --lime: #7ccf3a;
  --lime-deep: #62b82a;
  --green: #6bcf2e;
  --mist: #eff6ff;
  --foam: #f8fafc;
  --line: rgba(15, 23, 42, 0.1);
  --band: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  --shadow: 0 16px 40px rgba(10, 42, 107, 0.12);
  --radius: 14px;
  --header-h: 68px;
  --font-display: "Sora", "Onest", system-ui, sans-serif;
  --font-body: "Onest", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  background:
    radial-gradient(900px 420px at 8% -10%, rgba(37, 99, 235, 0.14), transparent 55%),
    linear-gradient(180deg, #eff6ff 0%, #fff 50%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover { color: var(--blue); }

h1, h2, h3, .brand-lockup, .logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.55rem;
}

h1 { font-size: clamp(1.55rem, 3.8vw, 2.35rem); }
h2 { font-size: clamp(1.35rem, 2.8vw, 1.85rem); }
h3 { font-size: 1.05rem; }

p { margin: 0 0 0.75rem; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.85rem;
  z-index: 1000;
  border-radius: 8px;
}
.skip-link:focus { top: 0.75rem; }

.container {
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 2.75rem 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-head { margin-bottom: 1.35rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime), var(--lime-deep));
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(108, 207, 46, 0.28);
}

.btn-primary:hover { color: var(--navy-deep); }

.btn-lg { padding: 0.8rem 1.45rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  border-bottom: none;
  color: #fff;
}

.header-inner {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  position: relative;
}

.logo:hover { color: #fff; }

.logo-img,
.hero-logo,
.footer-logo {
  display: none;
  width: auto;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 50%;
}

.logo-img.is-loaded,
.hero-logo.is-loaded,
.footer-logo.is-loaded { display: block; }

.logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

body.has-logo .logo-fallback,
body.has-logo .brand-lockup { display: none; }

.logo-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft), var(--navy));
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.nav { display: none; gap: 1.15rem; }

.nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.nav a:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta { display: none; }

.lang-switch {
  display: inline-flex;
  padding: 0.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.menu-toggle {
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 0.9rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.4rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.mobile-nav[hidden] { display: none !important; }

.mobile-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

/* Hero — roomy so the photo reads clearly */
.hero {
  position: relative;
  min-height: min(78vh, 620px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 69, 0.18) 0%, rgba(6, 26, 69, 0.55) 55%, rgba(6, 26, 69, 0.78) 100%),
    radial-gradient(700px 400px at 20% 15%, rgba(37, 99, 235, 0.22), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 2.75rem;
  max-width: 36rem;
}

.hero-logo {
  height: 4.25rem;
  margin-bottom: 0.55rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
}

.brand-lockup {
  margin: 0 0 0.4rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.1rem;
  max-width: 28rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.about-copy p {
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 38rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.about-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

/* Services */
.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 31, 77, 0.06);
  padding-bottom: 0.95rem;
}

.service-visual {
  overflow: hidden;
}

.service-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 25%;
}

.service-card h3,
.service-card p {
  padding-inline: 0.95rem;
}

.service-card h3 { margin-top: 0.8rem; margin-bottom: 0.25rem; }
.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.ba-block {
  margin-top: 2rem;
}

.ba-block h3 {
  margin-bottom: 0.85rem;
}

.ba-row {
  display: grid;
  gap: 0.85rem;
}

.ba-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--line);
}

.ba-item img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Soumissions */
.soumissions {
  background: linear-gradient(180deg, transparent, rgba(238, 242, 249, 0.85));
}

.quote-flow {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.25rem 1.5rem;
}

.quote-flow-head {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.contact-list-inline {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.contact-list-inline .contact-icon {
  width: 1.9rem;
  height: 1.9rem;
}

.promo-banner {
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 207, 58, 0.2), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(124, 207, 58, 0.45);
}

.promo-banner strong {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.promo-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.flow-step {
  padding-top: 0.35rem;
  margin-bottom: 1.5rem;
}

.flow-step-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.flow-step-label span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
}

.flow-step-label em {
  font-style: normal;
}

.flow-step-booking.is-locked {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.2);
}

.flow-booking-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field-error {
  color: #b91c1c;
  font-size: 0.88rem;
  margin: 0.35rem 0 0.5rem;
}

.calendly-embed-host {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 700px;
}

.calendly-embed-host iframe,
.calendly-embed-host .calendly-inline-widget {
  min-height: 700px;
}

.calendly-fallback {
  margin-top: 0.85rem;
  text-align: center;
}

.calendly-setup {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: var(--foam);
  color: var(--ink-soft);
}

.quote-success {
  padding: 1.5rem 0.5rem;
  text-align: center;
}

.quote-success h3 {
  color: var(--navy);
}

.quote-form {
  display: block;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.quote-form label,
.quote-form fieldset {
  display: grid;
  gap: 0.3rem;
  border: 0;
  margin: 0 0 0.75rem;
  padding: 0;
}

.quote-form span,
.quote-form legend {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: var(--foam);
  color: var(--ink);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.check {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem !important;
}

.check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--blue);
}

#continue-booking {
  margin-top: 0.35rem;
}

.details-sent {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(124, 207, 58, 0.15);
  border: 1px solid rgba(124, 207, 58, 0.4);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}

.details-sent.is-error {
  background: rgba(185, 28, 28, 0.08);
  border-color: rgba(185, 28, 28, 0.35);
  color: #7f1d1d;
}

.calendly-locked-hint {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

@media (min-width: 720px) {
  .quote-flow {
    padding: 1.75rem 1.85rem 2rem;
  }

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

  .soumissions-grid {
    display: block;
  }
}

.soumissions-intro { max-width: 28rem; }

.contact-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.contact-item:hover {
  color: var(--blue);
  text-decoration: none;
}

.contact-item-static {
  font-weight: 500;
  color: var(--ink-soft);
}

.contact-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

/* Footer */
.site-footer {
  padding: 1.75rem 0 1.85rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  color: #fff;
  border-top: none;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo {
  height: 2.4rem;
  border-radius: 50%;
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.92rem;
}

.footer-contacts a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contacts a:hover {
  color: var(--lime);
  text-decoration: underline;
}

.footer-contacts span {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 720px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .ba-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-photo {
    justify-self: stretch;
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-contacts {
    justify-content: center;
  }

  .footer-copy {
    justify-self: end;
  }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}
