:root {
  --red: #c62828;
  --red-dark: #981f1f;
  --blue: #0b3c5d;
  --dark-blue: #07293f;
  --gray: #f4f4f4;
  --mid-gray: #d8dde3;
  --dark-gray: #333333;
  --white: #ffffff;
  --ink: #14212b;
  --shadow: 0 22px 60px rgba(7, 41, 63, 0.14);
  --radius: 22px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.honey-field {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(198, 40, 40, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 42%, #ffffff 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(11, 60, 93, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0.55rem 1rem;
}

.logo {
  align-items: center;
  display: inline-flex;
  max-width: min(58vw, 320px);
}

.logo img {
  display: block;
  height: 58px;
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #354553;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-toggle {
  background: var(--dark-blue);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  display: none;
  padding: 0.75rem;
}

.nav-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 4px 0;
  width: 22px;
}

.section {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 4.5rem 1rem;
}

.hero {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 720px;
}

.hero-content {
  animation: riseIn 700ms ease both;
}

.eyebrow {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--dark-blue);
  font-family: "Source Serif 4", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  letter-spacing: -0.06em;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

h3 {
  color: var(--blue);
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.hero-copy {
  color: #425160;
  font-size: 1.15rem;
  max-width: 650px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  box-shadow: 0 14px 28px rgba(7, 41, 63, 0.14);
  transform: translateY(-2px);
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.button-blue:hover {
  background: var(--dark-blue);
}

.button-outline {
  background: var(--white);
  border-color: rgba(11, 60, 93, 0.2);
  color: var(--blue);
}

.disabled-link {
  opacity: 0.75;
  pointer-events: none;
}

.trust-line {
  color: #66727e;
  font-weight: 700;
  margin-top: 1.25rem;
}

.hero-card {
  animation: riseIn 900ms 100ms ease both;
  background:
    linear-gradient(135deg, rgba(11, 60, 93, 0.92), rgba(7, 41, 63, 0.96)),
    var(--dark-blue);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.hero-card img {
  border-radius: 26px;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.hero-badge {
  background: var(--white);
  border-radius: 18px;
  bottom: 2rem;
  box-shadow: var(--shadow);
  left: 2rem;
  max-width: 280px;
  padding: 1rem;
  position: absolute;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  color: #66727e;
  font-size: 0.9rem;
}

.section-heading {
  margin: 0 auto 2rem;
  max-width: 730px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: #5d6a76;
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.step-card,
.form-card,
.callout-card,
.about-card,
.contact-grid article {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(7, 41, 63, 0.07);
}

.service-card {
  min-height: 210px;
  padding: 1.4rem;
  position: relative;
}

.service-card::before {
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 999px;
  content: "";
  display: block;
  height: 5px;
  margin-bottom: 1rem;
  width: 58px;
}

.service-card p,
.step-card p,
.callout-card p,
.about-card p {
  color: #5d6a76;
  margin-bottom: 0;
}

.process-section,
.form-band {
  background: var(--gray);
  border-radius: 34px;
  max-width: calc(var(--max-width) - 2rem);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

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

.step-card {
  padding: 1.3rem;
}

.step-card span {
  align-items: center;
  background: var(--red);
  border-radius: 14px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 42px;
}

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

.gallery-item {
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(7, 41, 63, 0.08);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  color: var(--dark-blue);
  display: block;
  font-weight: 800;
  padding: 1rem;
}

.form-card {
  margin: 0 auto;
  max-width: 920px;
  padding: 1.2rem;
}

.quote-cta-card {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(7, 41, 63, 0.07);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 880px;
  padding: 1.4rem;
}

.quote-cta-card h3 {
  margin-bottom: 0.35rem;
}

.quote-cta-card p {
  color: #5d6a76;
  margin-bottom: 0;
}

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

label {
  color: var(--dark-blue);
  display: grid;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.45rem;
}

.consent-label {
  align-items: start;
  background: #fbfcfd;
  border: 1px solid rgba(11, 60, 93, 0.14);
  border-radius: 14px;
  color: #4f5d68;
  display: grid;
  font-size: 0.84rem;
  font-weight: 700;
  gap: 0.75rem;
  grid-template-columns: auto 1fr;
  line-height: 1.45;
  padding: 0.9rem;
}

.consent-label input {
  height: 18px;
  margin-top: 0.15rem;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.consent-label a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

input,
select,
textarea {
  background: #fbfcfd;
  border: 1px solid rgba(11, 60, 93, 0.18);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 0.85rem 0.9rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 60, 93, 0.12);
  outline: 0;
}

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

.form-message {
  color: var(--blue);
  font-weight: 800;
  margin: 1rem 0 0;
}

.schedule-layout {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 0.42fr;
}

.schedule-layout .form-card {
  margin: 0;
  max-width: none;
}

.callout-card {
  background:
    linear-gradient(150deg, rgba(7, 41, 63, 0.94), rgba(11, 60, 93, 0.9)),
    var(--dark-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 1.5rem;
}

.callout-card h3 {
  color: var(--white);
  font-size: 1.8rem;
}

.callout-card p {
  color: rgba(255, 255, 255, 0.82);
}

.callout-card a {
  color: var(--white);
  font-weight: 800;
  margin-top: 1.2rem;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.about-card {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(244, 244, 244, 0.9), rgba(255, 255, 255, 0.95)),
    var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.7fr 1fr;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.about-card p + p {
  margin-top: 1rem;
}

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

.contact-grid article {
  padding: 1.2rem;
}

.contact-grid span,
.contact-grid strong {
  display: block;
}

.contact-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-grid strong {
  color: var(--dark-blue);
  margin-top: 0.35rem;
}

.center {
  justify-content: center;
}

.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

.footer strong,
.footer span {
  display: block;
}

.footer span,
.footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer p {
  margin: 0.25rem 0;
}

.footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

.legal-hero {
  padding-bottom: 2rem;
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 0.8rem;
}

.legal-hero p:not(.eyebrow) {
  color: #5d6a76;
  font-weight: 700;
  margin-bottom: 0;
}

.legal-section {
  padding-top: 0;
}

.legal-card {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(7, 41, 63, 0.07);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.legal-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 2rem 0 0.55rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: #4f5d68;
  margin-bottom: 0;
}

.lightbox {
  align-items: center;
  background: rgba(7, 41, 63, 0.9);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 100;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  background: var(--white);
  border-radius: 24px;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox p {
  bottom: 1.2rem;
  color: var(--white);
  font-weight: 800;
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
}

.lightbox-close {
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  height: 50px;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 50px;
}

.quote-modal {
  align-items: center;
  background: rgba(7, 41, 63, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 120;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal-panel {
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  max-height: calc(100vh - 2rem);
  max-width: 880px;
  overflow: auto;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  width: min(100%, 880px);
}

.quote-close {
  align-items: center;
  background: var(--gray);
  border: 0;
  border-radius: 999px;
  color: var(--dark-blue);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.8rem;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 44px;
}

.quote-modal-header {
  padding-right: 3rem;
}

.quote-modal-header h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1.1rem;
}

.quote-progress {
  background: var(--gray);
  border-radius: 999px;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 1.5rem;
  padding: 0.35rem;
}

.quote-progress span {
  background: rgba(11, 60, 93, 0.14);
  border-radius: 999px;
  height: 8px;
}

.quote-progress span.active {
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.quote-wizard {
  overflow: hidden;
}

.quote-step {
  animation: quoteStepIn 260ms ease both;
  display: none;
}

.quote-step.active {
  display: block;
}

.quote-step h3 {
  color: var(--dark-blue);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.quote-step > p {
  color: #5d6a76;
}

.part-options {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.2rem 0;
}

.part-options label {
  cursor: pointer;
  display: block;
  font-size: 1rem;
}

.part-options input {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.part-options span {
  align-items: center;
  background: #fbfcfd;
  border: 2px solid rgba(11, 60, 93, 0.16);
  border-radius: 18px;
  color: var(--dark-blue);
  display: flex;
  font-weight: 800;
  min-height: 76px;
  padding: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.part-options input:checked + span {
  border-color: var(--red);
  box-shadow: 0 14px 30px rgba(198, 40, 40, 0.14);
}

.part-options span:hover {
  transform: translateY(-2px);
}

.quote-detail-grid {
  align-items: end;
}

.quote-review {
  background: var(--gray);
  border-radius: 20px;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 0;
  padding: 1rem;
}

.quote-review div {
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: 14px;
  padding: 0.85rem;
}

.quote-review dt {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-review dd {
  color: var(--dark-blue);
  font-weight: 800;
  margin: 0.2rem 0 0;
}

.quote-actions {
  border-top: 1px solid rgba(11, 60, 93, 0.1);
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
}

@keyframes quoteStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    background: var(--white);
    border-top: 1px solid rgba(11, 60, 93, 0.1);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    inset: 74px 0 auto;
    padding: 1rem;
    position: fixed;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-bottom: 1px solid rgba(11, 60, 93, 0.08);
    padding: 0.85rem;
    text-align: center;
    width: 100%;
  }

  .hero,
  .schedule-layout,
  .about-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

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

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

  .quote-cta-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.2rem 1rem;
  }

  .logo {
    max-width: 230px;
  }

  .logo img {
    height: 48px;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .quote-modal {
    align-items: stretch;
    padding: 0;
  }

  .quote-modal-panel {
    border-radius: 0;
    max-height: 100vh;
  }

  .quote-cta-card,
  .quote-actions {
    flex-direction: column;
  }

  .hero-card img {
    min-height: 260px;
  }

  .hero-badge {
    bottom: 1.2rem;
    left: 1.2rem;
    right: 1.2rem;
  }

  .services-grid,
  .steps,
  .gallery-grid,
  .part-options,
  .form-grid,
  .quote-review,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-section,
  .form-band {
    border-radius: 24px;
  }
}
