:root {
  --teal-50: #e6f7f9;
  --teal-100: #cceff3;
  --teal-500: #078a96;
  --teal-600: #006d78;
  --teal-700: #004b57;
  --teal-800: #003a43;
  --teal-900: #002930;
  --gold-100: #fff3cc;
  --gold-300: #ffdb66;
  --gold-400: #ffd033;
  --gold-500: #ffc845;
  --gold-600: #e6a800;
  --crimson-50: #fde8ea;
  --crimson-500: #e63946;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --background: #ffffff;
  --foreground: #1b2430;
  --muted: #f3f8f8;
  --muted-text: #5e6875;
  --border: #dfeaea;
  --shadow: 0 20px 55px rgba(0, 41, 48, 0.12);
  --font-heading: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Nunito", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.15;
}

p {
  margin: 0;
}

.container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 920px);
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.solid-header,
.site-header.is-scrolled {
  background: rgba(0, 75, 87, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 41, 48, 0.18);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--teal-700);
  flex: 0 0 auto;
}

.brand-mark .icon {
  fill: currentColor;
}

.brand-copy {
  display: grid;
  color: #fff;
  line-height: 1.15;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 15px;
}

.brand-copy small,
.footer-brand small {
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 700;
}

.brand-logo {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--gold-300);
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--teal-800);
  box-shadow: 0 14px 28px rgba(255, 200, 69, 0.28);
}

.btn-gold:hover {
  background: var(--gold-400);
}

.btn-outline-light {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-green {
  background: var(--green-500);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-600);
}

.btn-teal {
  background: var(--teal-700);
  color: #fff;
}

.full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-row.centered {
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
}

.menu-close-icon,
body.menu-open .menu-open-icon {
  display: none;
}

body.menu-open .menu-close-icon {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
}

.mobile-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 288px);
  padding: 92px 24px 28px;
  background: var(--teal-700);
  box-shadow: -20px 0 45px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-panel {
  transform: translateX(0);
}

.mobile-links {
  display: grid;
  gap: 4px;
}

.mobile-links a {
  padding: 13px 16px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.mobile-links a.is-active,
.mobile-links a:hover {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.16);
}

.mobile-cta {
  width: 100%;
  margin-top: 26px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 41, 48, 0.92), rgba(0, 75, 87, 0.72), rgba(0, 41, 48, 0.5)), linear-gradient(0deg, rgba(0, 41, 48, 0.62), transparent);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 64px;
  padding-block: 128px 72px;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--teal-600);
  background: var(--teal-50);
  font-size: 14px;
  font-weight: 900;
}

.hero .eyebrow,
.eyebrow.subtle {
  color: var(--gold-300);
  background: rgba(255, 200, 69, 0.18);
  border: 1px solid rgba(255, 200, 69, 0.3);
}

.eyebrow .icon,
.stars .icon {
  fill: currentColor;
}

.hero h1 {
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 900;
}

.hero h1 span {
  color: var(--gold-400);
}

.hero p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 12px;
}

.hero small {
  display: block;
  color: rgba(255, 219, 102, 0.9);
  font-weight: 900;
  margin-bottom: 32px;
}

.hero-card {
  position: relative;
}

.hero-card::before,
.framed-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: rgba(255, 200, 69, 0.2);
  filter: blur(20px);
}

.hero-card img,
.framed-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card div {
  position: absolute;
  left: -18px;
  bottom: -18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--teal-700);
  box-shadow: var(--shadow);
}

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

.hero-card strong {
  font-family: var(--font-heading);
  font-size: 18px;
}

.hero-card span {
  color: var(--muted-text);
  font-size: 14px;
}

.section {
  padding-block: 96px;
}

.white {
  background: #fff;
}

.muted {
  background: rgba(243, 248, 248, 0.78);
}

.teal {
  background: var(--teal-700);
  color: #fff;
}

.soft-teal {
  background: var(--teal-50);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-title h2,
.split-copy h2,
.centered-block h2 {
  color: var(--teal-700);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
}

.section-title p,
.centered-block p {
  margin-top: 16px;
  color: var(--muted-text);
  font-size: 18px;
}

.section-title span,
.page-hero-content span {
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--gold-500);
}

.section-title.light h2,
.teal .split-copy h2 {
  color: #fff;
}

.section-title.light p,
.teal .split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-grid,
.image-card-grid,
.news-grid,
.info-grid,
.contact-card-grid,
.testimonial-grid,
.segment-grid,
.value-grid {
  display: grid;
  gap: 24px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid.three,
.image-card-grid,
.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.testimonial-card,
.info-card,
.contact-mini {
  border-radius: 28px;
  background: #fff;
  padding: 28px;
  border: 1px solid rgba(223, 234, 234, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.image-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-100);
  box-shadow: var(--shadow);
}

.muted .feature-card,
.testimonial-card,
.info-card {
  background: rgba(255, 255, 255, 0.82);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--teal-600);
  background: var(--teal-50);
}

.card-icon.gold,
.floating-badge,
.card-icon.gold-soft {
  color: var(--teal-800);
  background: var(--gold-500);
}

.card-icon.gold-soft {
  color: var(--gold-600);
  background: var(--gold-100);
}

.feature-card h3,
.value-card h3,
.image-card h3,
.news-card h3,
.info-card h3 {
  color: var(--teal-700);
  font-size: 19px;
  margin-bottom: 9px;
}

.feature-card p,
.value-card p,
.image-card p,
.news-card p,
.info-card li {
  color: var(--muted-text);
  font-size: 15px;
}

.segment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.segment-card,
.image-card,
.news-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(223, 234, 234, 0.75);
  box-shadow: 0 8px 20px rgba(0, 41, 48, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.segment-image,
.image-card > div,
.news-image {
  position: relative;
  height: 228px;
  overflow: hidden;
}

.segment-image img,
.image-card img,
.news-image img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.segment-card:hover img,
.image-card:hover img,
.news-card:hover img,
.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.segment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 41, 48, 0.82), transparent 65%);
}

.segment-title {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.segment-title .card-icon {
  margin: 0;
  width: 50px;
  height: 50px;
}

.segment-title h3 {
  color: #fff;
  font-size: 22px;
}

.segment-title span {
  color: var(--gold-300);
  font-weight: 900;
  font-size: 14px;
}

.segment-body {
  padding: 24px;
}

.segment-body p {
  color: var(--muted-text);
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-600);
  font-weight: 900;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.split-copy h2 {
  margin: 18px 0 20px;
}

.split-copy p {
  color: var(--muted-text);
  margin-bottom: 16px;
}

.split-copy strong {
  color: var(--teal-600);
}

.framed-image {
  position: relative;
}

.framed-image::before {
  inset: -12px;
  background: var(--teal-100);
  filter: none;
  transform: rotate(-3deg);
}

.framed-image.gold::before {
  background: var(--gold-100);
  transform: rotate(2deg);
}

.framed-image.dark::before {
  background: rgba(255, 200, 69, 0.2);
  filter: blur(12px);
  transform: rotate(2deg);
}

.framed-image.dark img {
  aspect-ratio: 3 / 4;
}

.floating-badge {
  position: absolute;
  right: -18px;
  bottom: -24px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(27, 36, 48, 0.84);
  font-size: 15px;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal-600);
  background: var(--teal-50);
}

.method-section {
  position: relative;
  overflow: hidden;
}

.method-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  top: -130px;
  border-radius: 999px;
  background: rgba(255, 200, 69, 0.08);
  filter: blur(25px);
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-card-grid article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-card-grid .icon {
  width: 32px;
  height: 32px;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.mini-card-grid h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.mini-card-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--teal-100);
}

.gallery-grid .big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 16px 16px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  background: linear-gradient(0deg, rgba(0, 41, 48, 0.86), transparent);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-grid figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800), var(--teal-900));
  text-align: center;
}

.cta-inner {
  max-width: 850px;
}

.cta-inner > strong {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--gold-300);
  background: rgba(255, 200, 69, 0.18);
}

.cta-inner h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 18px;
}

.cta-inner p {
  max-width: 650px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.testimonial-card {
  background: rgba(243, 248, 248, 0.74);
}

.quote-icon {
  width: 42px;
  height: 42px;
  color: var(--teal-100);
  margin-bottom: 16px;
}

.testimonial-card p {
  color: rgba(27, 36, 48, 0.8);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal-600);
  background: var(--teal-100);
  font-family: var(--font-heading);
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--teal-700);
  font-family: var(--font-heading);
}

.testimonial-author small {
  color: var(--muted-text);
  font-size: 12px;
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 14px;
  color: var(--gold-500);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700), var(--teal-600));
}

.page-hero-bg {
  opacity: 0.22;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 58, 67, 0.92), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 72px 88px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.page-hero p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

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

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(243, 248, 248, 0.74);
}

.value-card .card-icon {
  margin: 0;
  width: 50px;
  height: 50px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 38px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--teal-100);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}

.timeline-item.right > div {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item.left > div {
  grid-column: 2;
}

.timeline-icon {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 109, 120, 0.28);
}

.timeline-item > div {
  padding: 26px;
  border-radius: 28px;
  background: var(--muted);
}

.timeline-item strong {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--gold-600);
  background: var(--gold-100);
  font-size: 12px;
}

.timeline-item h3 {
  color: var(--teal-700);
  font-size: 21px;
  margin-bottom: 8px;
}

.image-card > div span {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 109, 120, 0.9);
  backdrop-filter: blur(8px);
}

.image-card section,
.news-body {
  padding: 24px;
}

.gold-label {
  display: block;
  color: var(--gold-600);
  font-size: 14px;
  margin-bottom: 12px;
}

.form-grid {
  align-items: flex-start;
}

.pill.crimson {
  color: var(--crimson-500);
  background: var(--crimson-50);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.step-grid div {
  min-height: 108px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  background: var(--muted);
  text-align: center;
}

.step-grid .icon {
  width: 32px;
  height: 32px;
  color: var(--teal-500);
}

.step-grid strong {
  color: var(--teal-700);
  font-size: 13px;
}

.form-panel {
  padding: 34px;
  border-radius: 36px;
  background: var(--muted);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.form-heading h3,
.form-panel > h3 {
  color: var(--teal-700);
  font-size: 24px;
}

.form-heading p,
.form-panel > p {
  color: var(--muted-text);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--teal-700);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--foreground);
  padding: 12px 14px;
  outline: none;
}

.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(7, 138, 150, 0.12);
}

.calendar-list {
  display: grid;
  gap: 38px;
}

.calendar-month h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-700);
  font-size: 22px;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.calendar-month h3 .icon {
  color: var(--gold-500);
}

.event-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(223, 234, 234, 0.85);
  border-radius: 18px;
  background: #fff;
}

.event-row.highlight {
  border-color: rgba(255, 200, 69, 0.48);
  background: rgba(255, 249, 230, 0.55);
}

.event-row time {
  width: 58px;
  text-align: center;
}

.event-row time strong {
  display: block;
  color: var(--teal-700);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
}

.event-row time span {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 900;
}

.event-row h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--foreground);
  font-size: 16px;
  margin-bottom: 7px;
}

.event-row h4 .icon {
  color: var(--gold-500);
  fill: currentColor;
}

.event-row small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-700);
  background: var(--teal-50);
  font-weight: 900;
}

.news-grid {
  gap: 32px;
}

.news-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--gold-700, #8a6500);
  background: var(--gold-100);
  font-size: 12px;
  font-weight: 900;
}

.news-body small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-text);
  margin-bottom: 13px;
}

.news-card h3 {
  transition: color 0.2s ease;
}

.news-card:hover h3 {
  color: var(--teal-500);
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.info-card {
  background: var(--muted);
}

.info-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.info-card header .card-icon {
  margin: 0;
  width: 50px;
  height: 50px;
}

.info-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.info-card li {
  position: relative;
  padding-left: 18px;
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-500);
}

.centered-block {
  text-align: center;
}

.contact-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.contact-mini .icon {
  width: 34px;
  height: 34px;
  color: var(--teal-500);
  margin-bottom: 12px;
}

.contact-mini h3 {
  color: var(--teal-700);
  margin-bottom: 4px;
}

.contact-mini a,
.contact-mini p {
  color: var(--muted-text);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: flex-start;
}

.contact-aside h2 {
  color: var(--teal-700);
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-list > div {
  display: flex;
  gap: 14px;
}

.contact-info-list .card-icon {
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 14px;
}

.contact-info-list strong,
.contact-info-list a,
.contact-info-list p {
  display: block;
}

.contact-info-list strong {
  color: var(--teal-700);
  font-size: 14px;
}

.contact-info-list a,
.contact-info-list p {
  color: var(--muted-text);
  font-size: 14px;
}

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

.map-frame {
  height: 192px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--teal-900);
}

.map-frame.tall {
  height: 224px;
  margin-top: 30px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.flash {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 80;
  width: min(calc(100% - 32px), 620px);
  transform: translateX(-50%);
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.flash-success {
  color: #14532d;
  background: #dcfce7;
}

.flash-error {
  color: #7f1d1d;
  background: #fee2e2;
}

.site-footer {
  color: #fff;
  background: var(--teal-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 42px;
  padding-block: 64px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  width: 48px;
  height: 48px;
}

.footer-text {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  margin-bottom: 22px;
}

.site-footer h3 {
  color: var(--gold-400);
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-list,
.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-list a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-bottom a:hover {
  color: var(--gold-300);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: var(--teal-800);
  background: var(--gold-500);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.contact-list .icon {
  color: var(--gold-400);
  margin-top: 2px;
}

.contact-list small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
}

.image-disclaimer {
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  background: var(--gold-100);
}

.image-disclaimer .container {
  padding-block: 16px;
}

.image-disclaimer p {
  color: var(--teal-900);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.image-disclaimer strong {
  color: var(--teal-700);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-bottom .footer-credit-link {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 3px 10px;
  border: 1px solid rgba(255, 200, 69, 0.38);
  border-radius: 999px;
  background: rgba(255, 200, 69, 0.12);
  color: var(--gold-300);
  font-weight: 900;
}

.footer-bottom .footer-credit-link:hover {
  color: var(--teal-800);
  background: var(--gold-500);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--green-500);
  box-shadow: 0 14px 35px rgba(34, 197, 94, 0.4);
}

.not-found {
  min-height: 70vh;
}

.not-found .btn {
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .brand-logo {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
}

@media (max-width: 1180px) {
  .desktop-nav,
  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

@media (max-width: 920px) {
  .header-inner {
    height: 68px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-grid,
  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 118px;
  }

  .hero-card {
    display: none;
  }

  .section {
    padding-block: 76px;
  }

  .feature-grid.three,
  .image-card-grid,
  .news-grid,
  .testimonial-grid,
  .value-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-grid,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-item,
  .timeline-item.left > div,
  .timeline-item.right > div {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .timeline-icon {
    left: 25px;
  }

  .timeline-item > div {
    margin-left: 58px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1280px);
  }

  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .button-row,
  .form-two {
    display: grid;
  }

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

  .feature-grid.four,
  .feature-grid.three,
  .image-card-grid,
  .news-grid,
  .testimonial-grid,
  .value-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-card-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid .big,
  .gallery-grid .wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .form-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 18px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
}
