:root {
  --bg: #f5fbfc;
  --surface: #ffffff;
  --ink: #1f3e57;
  --muted: #486276;
  --primary: #08a7b5;
  --primary-2: #0c8f9f;
  --deep: #21435e;
  --line: #cde3e8;
  --radius: 16px;
  --shadow: 0 16px 38px rgba(17, 49, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Public Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #d8f1f3 0%, var(--bg) 52%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(245, 251, 252, 0.94);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.4rem 0;
}

.topbar p {
  margin: 0;
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--ink);
  min-width: 0;
}

.brand-logo {
  width: clamp(180px, 22vw, 280px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.menu-list,
.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu-item a,
.menu a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-item a:hover,
.menu a:hover {
  color: var(--primary-2);
}

.cta,
.btn {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  padding: 0.68rem 1.1rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.cta,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--deep));
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-card {
  background: var(--surface);
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.partner-highlight {
  padding: 0.25rem 0 1.9rem;
}

.partner-highlight-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 0.25rem 0;
}

.partner-logo-link {
  display: inline-block;
  width: fit-content;
  line-height: 0;
}

.partner-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.partner-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-2);
  font-weight: 700;
}

.partner-copy h2 {
  margin: 0 0 0.45rem;
}

.partner-copy p {
  margin: 0;
  color: var(--muted);
}

.services {
  padding: 1rem 0 3rem;
}

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

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.gallery-preview,
.gallery-page {
  padding: 0.6rem 0 2.4rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
}

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

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #d9ecf0;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

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

.gallery-empty {
  margin: 0;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 20, 33, 0.88);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  width: min(1100px, 100%);
  max-height: calc(100vh - 3rem);
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  border-radius: 12px;
  display: block;
}

.lightbox-caption {
  color: #fff;
  font-weight: 600;
  text-align: center;
  min-height: 1.4rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(11, 30, 44, 0.7);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.55rem;
  display: grid;
  place-items: center;
}

.lightbox-close {
  top: 0.9rem;
  right: 0.9rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

body.is-lightbox-open {
  overflow: hidden;
}

.cta-band {
  background: linear-gradient(120deg, var(--deep), var(--primary-2));
  color: #fff;
  padding: 2.3rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-content {
  padding: 1rem 0 3rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  padding-bottom: 2.5rem;
}

.quote-info,
.quote-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.quote-info ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.quote-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.quote-notice {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.quote-notice-success {
  background: #e7faf4;
  border-color: #9de2c6;
  color: #155f48;
}

.quote-notice-error {
  background: #fff1f1;
  border-color: #f2bcbc;
  color: #7f2222;
}

.quote-notice-info {
  background: #ebf7ff;
  border-color: #b6ddf4;
  color: #1f4f70;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.quote-field {
  margin-bottom: 0.85rem;
}

.quote-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.93rem;
  font-weight: 600;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.68rem 0.74rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: var(--primary-2);
  outline: 2px solid rgba(12, 143, 159, 0.16);
  outline-offset: 0;
}

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

.quote-consent {
  margin: 0.2rem 0 1rem;
  font-size: 0.9rem;
}

.quote-consent label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.quote-consent input[type="checkbox"] {
  margin-top: 0.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #eaf6f8;
  padding: 2rem 0;
}

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

.legal-note {
  color: #5f7585;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: clamp(160px, 64vw, 240px);
  }

  .menu-list,
  .menu {
    flex-wrap: wrap;
  }

  .cta {
    width: fit-content;
  }

  .hero-grid,
  .partner-highlight-card,
  .cards,
  .gallery-grid,
  .quote-layout,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .lightbox-prev {
    left: 0.45rem;
  }

  .lightbox-next {
    right: 0.45rem;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
