:root {
  --blue: #1e5fae;
  --blue-dark: #164a8a;
  --blue-bright: #2e7cf6;
  --green: #2a7a4e;
  --green-light: #4caf7d;
  --green-bright: #22c274;
  --amber: #f5a623;
  --ink: #1a2430;
  --muted: #5c6773;
  --paper: #f7faf8;
  --surface: #ffffff;
  --line: rgba(26, 36, 48, 0.08);
  --shadow: 0 12px 30px -14px rgba(26, 36, 48, 0.25);
  --glow-green: 0 10px 26px -8px rgba(34, 194, 116, 0.55);
  --glow-blue: 0 10px 26px -8px rgba(46, 124, 246, 0.5);
  --font-display: Fraunces, Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, sans-serif;
  /* Blue/green underglow behind headings, scaled by heading level. */
  --text-glow-1:
    0 0 26px rgba(46, 124, 246, 0.3), 0 3px 20px rgba(34, 194, 116, 0.22);
  --text-glow-2:
    0 0 21px rgba(46, 124, 246, 0.25), 0 3px 17px rgba(34, 194, 116, 0.18);
  --text-glow-3:
    0 0 18px rgba(46, 124, 246, 0.22), 0 2px 14px rgba(34, 194, 116, 0.16);
  --gradient-brand: linear-gradient(
    120deg,
    var(--blue-bright),
    var(--green-bright)
  );
  --radius: 14px;
}
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: -4px;
  flex-shrink: 0;
}
.icon-star {
  width: 15px;
  height: 15px;
  color: var(--amber);
  vertical-align: -2px;
}
.star-row {
  display: inline-flex;
  gap: 2px;
}
.area-badge-icon .icon {
  width: 36px;
  height: 36px;
}
.footer-contact .icon {
  margin-right: 6px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4em;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h1 {
  text-shadow: var(--text-glow-1);
}
h2 {
  text-shadow: var(--text-glow-2);
}
h3 {
  text-shadow: var(--text-glow-3);
}
/* Fraunces ships only a heavily ornate ampersand, which reads as a blob at
   heading sizes. Borrow the body font's plain one instead. */
.amp {
  font-family: var(--font-body);
  font-weight: 600;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
ul {
  padding-left: 1.2em;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
  white-space: nowrap;
  overflow: hidden;
}
.btn:hover {
  transform: translateY(-2px) scale(1.03);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-primary {
  background: var(--gradient-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
  /* Must come after the `background` shorthand, which resets this to
     padding-box. Without it the gradient is sized to the padding box but
     painted out to the border box, so the transparent 2px border tiles the
     gradient and leaks green onto the edges. */
  background-origin: border-box;
  color: #fff;
  box-shadow: var(--glow-green);
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 16px 34px -10px #22c27499;
}
.btn-outline {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  background: #fff;
}
.btn-outline:hover {
  background: var(--blue-bright);
  color: #fff;
  box-shadow: var(--glow-blue);
}
.btn-ghost {
  color: var(--blue-bright);
  font-weight: 700;
  background: #2e7cf614;
  padding: 10px 18px;
}
.btn-ghost:hover {
  background: #2e7cf629;
  color: var(--blue-dark);
}
.btn-lg {
  padding: 17px 30px;
  font-size: 16.5px;
}
.btn-block {
  width: 100%;
}
@keyframes pulse-glow {
  0%,
  to {
    box-shadow: var(--glow-green);
  }
  50% {
    box-shadow: 0 10px 34px -6px #22c274cc;
  }
}
.hero-actions .btn-primary {
  animation: pulse-glow 2.6s ease-in-out infinite;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffffeb;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
}
.brand-text strong {
  color: var(--blue);
  font-weight: 700;
}
.brand-icon {
  height: 68px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
}
.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 14.5px;
  white-space: nowrap;
  transition: color 0.12s ease;
}
.main-nav a:hover {
  color: var(--blue);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.hero {
  position: relative;
  background: linear-gradient(160deg, #eef4f0, #eaf1fb 55%, #f7faf8);
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}
.hero:before {
  width: 340px;
  height: 340px;
  background: var(--green-bright);
  top: -120px;
  right: 8%;
}
.hero:after {
  width: 300px;
  height: 300px;
  background: var(--blue-bright);
  bottom: -140px;
  left: 2%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-copy {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
}
.hero h1 span {
  color: var(--blue);
}
.hero-sub-es {
  font-style: italic;
  color: var(--green);
  font-size: 16px;
  margin: 0 0 16px;
}
.hero-lead {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 26px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
}
.trust-item strong {
  color: var(--ink);
}
.trust-dot {
  opacity: 0.5;
}
.stats {
  padding: 0;
  background: linear-gradient(
    115deg,
    var(--blue-bright) 0%,
    var(--blue) 35%,
    var(--green) 70%,
    var(--green-bright) 100%
  );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 46px 24px;
}
.stat-card {
  text-align: center;
  color: #fff;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat-card:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.stat-number span {
  font-size: 26px;
  opacity: 0.9;
}
.stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.95;
}
section {
  padding: 76px 0;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 8px;
}
h2 {
  font-size: 30px;
  color: var(--ink);
}
.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 15.5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-brand);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -16px #1a24304d;
}
.service-card h3 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.service-card ul {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}
.service-card li {
  margin-bottom: 4px;
}
.service-card-wide {
  grid-column: 1 / -1;
}
.service-card-wide ul.two-col {
  column-count: 2;
  column-gap: 32px;
}
.service-card-wide ul.two-col li {
  break-inside: avoid;
}
.card-link {
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  color: var(--blue-bright);
  font-size: 14.5px;
  transition:
    gap 0.15s ease,
    color 0.15s ease;
  gap: 4px;
}
.card-link:hover {
  color: var(--green-bright);
  gap: 8px;
}
.why-us {
  background: var(--surface);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  text-align: center;
  padding: 38px 22px;
  border-radius: var(--radius);
  background: var(--paper);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.why-card h3 {
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -16px #1a24304d;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.ba-block {
  margin-top: 56px;
}
.ba-title {
  font-size: 26px;
  margin-bottom: 6px;
}
.ba-lead {
  color: var(--muted);
  margin-bottom: 26px;
}
.ba-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ba-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ba-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -16px #1a24304d;
}
.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  backdrop-filter: blur(4px);
}
.ba-tag-before {
  background: rgba(26, 36, 48, 0.72);
}
.ba-tag-after {
  background: linear-gradient(120deg, var(--green-bright), var(--green));
  box-shadow: var(--glow-green);
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  font-size: 15px;
  background: linear-gradient(120deg, #2e7cf614, #22c27414);
  border: 1px solid rgba(34, 194, 116, 0.2);
  border-radius: 999px;
  padding: 12px 22px;
}
.review-badge .stars {
  font-size: 18px;
}
.review-badge .score {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
}
.review-badge .count {
  color: var(--muted);
}
.review-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  width: 100%;
  padding: 10px max(24px, calc((100vw - 1160px) / 2 + 24px)) 28px;
  margin-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-bright) transparent;
}
.review-grid::-webkit-scrollbar {
  height: 8px;
}
.review-grid::-webkit-scrollbar-track {
  background: var(--line);
  border-radius: 999px;
}
.review-grid::-webkit-scrollbar-thumb {
  background: var(--gradient-brand);
  border-radius: 999px;
}
.review-grid::-webkit-scrollbar-thumb:hover {
  background: var(--blue-bright);
}
.bubble {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: 26px;
  padding: 28px 30px 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.bubble:hover {
  transform: translateY(-4px) rotate(0) !important;
  box-shadow: 0 22px 40px -16px #1a243047;
}
.bubble:nth-child(odd) {
  transform: rotate(-1deg);
}
.bubble:nth-child(2n) {
  transform: rotate(1deg);
}
.bubble:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 46px;
  width: 30px;
  height: 30px;
  background: inherit;
  border-radius: 6px;
  transform: rotate(45deg);
  box-shadow: 6px 6px 10px -8px #1a243026;
}
.bubble-blue {
  border-top: 5px solid var(--blue-bright);
}
.bubble-green {
  border-top: 5px solid var(--green-bright);
}
.bubble-stars {
  font-size: 14px;
  margin-bottom: 10px;
}
.bubble blockquote {
  margin: 0 0 20px;
}
.bubble p {
  font-style: italic;
  color: var(--ink);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.bubble-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bubble-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.bubble-blue .avatar {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}
.bubble-green .avatar {
  background: linear-gradient(135deg, var(--green-bright), var(--green));
}
.bubble-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
}
.bubble-author span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
}
.area {
  background: var(--surface);
}
.area-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.area-list {
  color: var(--muted);
  font-size: 15px;
}
.area-badge {
  background: var(--gradient-brand);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  text-align: center;
  padding: 24px;
  box-shadow: 0 20px 44px -16px #1e5fae73;
}
.area-badge-icon {
  font-size: 40px;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff2e;
  margin-bottom: 10px;
}
.area-badge h3 {
  font-size: 24px;
  margin-bottom: 2px;
}
.area-badge p {
  margin: 0 0 16px;
  opacity: 0.9;
}
.area-badge-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.area-badge-chips span {
  background: #ffffff2e;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
}
.contact-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .btn + .btn {
  margin-top: 12px;
}
.contact-meta {
  margin-top: 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.contact-meta p {
  margin: 6px 0;
}
.contact-meta strong {
  color: var(--ink);
}
.site-footer {
  background: var(--ink);
  color: #ffffffbf;
  padding: 44px 0 26px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-brand {
  margin-bottom: 6px;
  align-items: center;
}
.footer-brand .brand-text {
  color: #fff;
  font-size: 19px;
}
.footer-brand .brand-text strong {
  color: var(--green-light);
}
.footer-slogan {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green-light);
  margin: 0 0 10px;
}
.footer-tagline {
  font-style: italic;
  font-size: 13.5px;
  margin: 0;
}
.footer-contact p {
  margin: 4px 0;
  font-size: 14px;
}
.footer-contact a {
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 24px;
  padding-top: 18px;
  font-size: 12.5px;
  text-align: center;
}
@media (max-width: 900px) {
  .area-inner,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .why-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    padding: 34px 12px;
  }
  .stat-card {
    padding: 6px 4px;
  }
  .stat-number {
    font-size: 30px;
  }
  .stat-number span {
    font-size: 20px;
  }
  .stat-label {
    font-size: 11.5px;
  }
  .service-card-wide ul.two-col {
    column-count: 1;
  }
  .bubble:nth-child(odd),
  .bubble:nth-child(2n) {
    transform: none;
  }
  .bubble {
    width: 280px;
  }
}
@media (max-width: 760px) {
  .mobile-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header.nav-open .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 20px;
    gap: 20px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .site-header.nav-open .main-nav {
    flex-direction: column;
    gap: 14px;
  }
  .site-header.nav-open .header-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .service-card h3 {
    font-size: 26px;
  }
  .why-card h3 {
    font-size: 23px;
  }
}
@media (max-width: 480px) {
  .ba-pair {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .stats-grid {
    padding: 26px 6px;
  }
  .stat-card {
    padding: 4px 2px;
  }
  .stat-number {
    font-size: 23px;
  }
  .stat-number span {
    font-size: 15px;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 0;
  }
}
