/* ============ Base ============ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: #F9F6F1;
  color: #1F2D33;
  font-family: 'Figtree', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #113560; }
a:hover { color: #2E8489; }

a, button {
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, transform 0.22s ease;
}

/* Two-tone ring: the design's aqua outline plus a navy inner ring so the
   indicator stays visible on light and dark surfaces alike. Components with
   elevation shadows re-append them at the end of this file. */
a:focus-visible, button:focus-visible {
  outline: 3px solid #80C8CA;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #113560;
}

::selection { background: #C9E7E8; color: #113560; }

input, textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  width: 100%;
}

input:focus, textarea:focus {
  outline: 2px solid #113560;
  outline-offset: 1px;
  border-color: #80C8CA !important;
  box-shadow: 0 0 0 3px rgba(128, 200, 202, 0.28);
}

input::placeholder, textarea::placeholder { color: #9AA7AD; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy, .hero-media { animation: none !important; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #113560;
  color: #F9F6F1;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: #F9F6F1; }

h1, h2, h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #226C70; /* design: #2E8489 — darkened on-palette for AA contrast */
  margin-bottom: 14px;
}
.kicker--light { color: #80C8CA; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #D9E3E4;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-lockup {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 12px 26px;
  margin-left: auto;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links > a {
  text-decoration: none;
  color: #3A4A52;
}
.nav-links > a:hover { color: #226C70; }

.nav-cta {
  background: #226C70;
  color: #F9F6F1 !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.nav-cta:hover { background: #1B5C60; color: #FFFFFF !important; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: #FDFEFE;
  border: 1px solid #D9E3E4;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-menu {
  border-top: 1px solid #D9E3E4;
  background: #F9F6F1;
  padding: 6px 28px 20px;
  display: flex;
  flex-direction: column;
}
.nav-menu[hidden] { display: none; }

.nav-menu > a {
  text-decoration: none;
  color: #113560;
  font-weight: 600;
  font-size: 16.5px;
  padding: 14px 2px;
  border-bottom: 1px solid #E5EAEA;
}
.nav-menu > a:nth-last-child(2) { border-bottom: none; }

.nav-menu > .nav-menu-cta {
  margin-top: 10px;
  background: #226C70;
  color: #F9F6F1;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  text-align: center;
  border-bottom: none;
}
.nav-menu > .nav-menu-cta:hover { background: #1B5C60; color: #FFFFFF; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 881px) {
  .nav-menu { display: none !important; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: #226C70;
}

.hero-arcs {
  position: absolute;
  left: -300px;
  bottom: -420px;
  width: 980px;
  height: 980px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 88px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}

.hero-copy { animation: rise 0.7s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(249, 246, 241, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F9F6F1; /* design: #C9E7E8 — lightened on-palette for AA contrast */
  background: rgba(249, 246, 241, 0.08);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #80C8CA;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  color: #F9F6F1;
  margin: 28px 0 22px;
  text-wrap: balance;
}
.hero-copy h1 em { font-style: normal; color: #80C8CA; }

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: #C9E1E2;
  margin: 0 0 38px;
  max-width: 460px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 500px;
}

.btn-hero-primary {
  text-decoration: none;
  background: #FFFFFF;
  color: #113560;
  padding: 17px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  flex: 1 1 0;
  min-width: max-content;
  box-shadow: 0 14px 32px rgba(7, 42, 44, 0.3);
}
.btn-hero-primary:hover {
  background: #DFEEEF;
  color: #113560;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(7, 42, 44, 0.35);
}

.btn-hero-secondary {
  text-decoration: none;
  border: 1.5px solid rgba(249, 246, 241, 0.5);
  color: #F9F6F1;
  padding: 15.5px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  flex: 1 1 0;
  min-width: max-content;
  background: transparent;
}
.btn-hero-secondary:hover {
  background: rgba(249, 246, 241, 0.12);
  color: #FFFFFF;
  border-color: #F9F6F1;
}

.hero-note {
  margin: 22px 0 0;
  font-size: 13px;
  color: #C9E7E8; /* design: #A9CDCF — lightened on-palette for AA contrast */
}

.hero-media {
  position: relative;
  animation: rise 0.7s ease 0.15s both;
}

.hero-frame {
  position: relative;
  height: clamp(380px, 58vw, 540px);
  border-radius: 300px 300px 28px 28px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(6, 38, 40, 0.38);
}

.hero-frame-ring {
  position: absolute;
  inset: 0;
  border-radius: 300px 300px 28px 28px;
  box-shadow: inset 0 0 0 1px rgba(249, 246, 241, 0.35);
  pointer-events: none;
}

.hero-card {
  position: absolute;
  left: clamp(-28px, -2vw, -6px);
  bottom: 34px;
  background: #FDFEFE;
  border: 1px solid #D9E3E4;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(15, 77, 80, 0.10);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card img { width: 34px; height: 34px; object-fit: contain; }
.hero-card-title { font-weight: 700; font-size: 14px; color: #113560; }
.hero-card-sub { font-size: 13px; color: #75868D; }

/* ============ Photography ============ */
.media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-img--rounded { border-radius: 24px; }

/* ============ About ============ */
.about {
  background: #113560;
  position: relative;
  overflow: hidden;
}

.about-arcs {
  position: absolute;
  bottom: -260px;
  left: -220px;
  width: 640px;
  height: 640px;
  opacity: 0.2;
  pointer-events: none;
}

.about-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
  text-align: center;
}
.about-inner .kicker { margin-bottom: 18px; }

.about-inner h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  line-height: 1.15;
  color: #F9F6F1;
  margin: 0 0 24px;
  text-wrap: pretty;
}

.about-inner p {
  font-size: 17.5px;
  line-height: 1.75;
  color: #C2D2E8;
  margin: 0 auto 18px;
  max-width: 700px;
  text-wrap: pretty;
}
.about-inner p:last-child { margin-bottom: 0; }

/* ============ Values (Who We Are) ============ */
.values {
  background: #EDF2FA;
  border-top: 1px solid #DCE5F2;
  border-bottom: 1px solid #DCE5F2;
}

.values-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 40px clamp(48px, 6vw, 80px);
  align-items: start;
}
.values-inner .kicker { margin-bottom: 16px; }

.values-vision {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(23px, 2.5vw, 29px);
  line-height: 1.38;
  color: #113560;
  margin: 0 0 18px;
  text-wrap: pretty;
}

.values-mission {
  font-size: 15.5px;
  line-height: 1.75;
  color: #546770;
  margin: 0;
  text-wrap: pretty;
}

.values-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.value-tab {
  flex: 0 1 auto;
  min-height: 52px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 12px;
  font-family: 'Figtree', sans-serif;
  cursor: pointer;
  border: 1px solid #C9D6EC;
  background: #FDFEFE;
  color: #226C70;
}

.value-tab-letter {
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
}

.value-tab-word {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #546770; /* design: #75868D — darkened on-palette for AA contrast */
}

.value-tab[aria-current="true"] {
  border-color: #226C70;
  background: #226C70;
  color: #F9F6F1;
}
.value-tab[aria-current="true"] .value-tab-word {
  color: #C9E7E8; /* design: #A9E0E1 — lightened on-palette for AA contrast */
}

.values-card {
  background: #FDFEFE;
  border: 1px solid #D9E3E4;
  border-radius: 20px;
  padding: 30px 32px;
  min-height: 200px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.values-panel[hidden] { display: none; }

.values-panel-kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #226C70; /* design: #2E8489 — darkened on-palette for AA contrast */
  margin-bottom: 8px;
}

.values-panel-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 20px;
  color: #113560;
  margin-bottom: 10px;
  text-wrap: pretty;
}

.values-panel p {
  font-size: 15px;
  line-height: 1.72;
  color: #465760;
  margin: 0 0 18px;
  text-wrap: pretty;
}

.values-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.values-dots { display: flex; gap: 6px; }

.values-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #C9D6EC;
  transition: width 0.25s ease, background 0.25s ease;
}
.values-dot.is-active {
  width: 18px;
  background: #226C70;
}

.values-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #C9D6EC;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  color: #226C70;
  cursor: pointer;
}
.values-next:hover {
  background: #226C70;
  color: #F9F6F1;
  border-color: #226C70;
}

.values-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: #546770; /* design: #75868D — darkened on-palette for AA contrast */
}
.values-note strong {
  color: #226C70;
  letter-spacing: 0.08em;
}

/* ============ Why ============ */
.why {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(68px, 9vw, 104px) 28px 88px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 56px;
  align-items: start;
}

/* Sticky only when the intro sits beside the cards. In the stacked layout it
   must scroll normally — WebKit computes sticky containment for grid items
   from the whole grid, letting the intro slide over the cards in Safari. */
@media (min-width: 760px) {
  .why-intro {
    position: sticky;
    top: 110px;
  }
}
.why-intro .kicker { margin-bottom: 16px; }

.why-intro h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  line-height: 1.1;
  color: #113560;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.why-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #546770;
  margin: 0;
  max-width: 340px;
  text-wrap: pretty;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  column-gap: 48px;
}

.why-card {
  border-top: 1px solid #C9D8DA;
  padding: 28px 0 36px;
}

.why-card h3 {
  font-size: 20px;
  color: #113560;
  margin: 0 0 10px;
  text-wrap: pretty;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #546770;
  margin: 0;
  text-wrap: pretty;
}

/* ============ How ============ */
.how {
  background: #EDF2FA;
  border-top: 1px solid #DCE5F2;
  border-bottom: 1px solid #DCE5F2;
}

.how-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 64px;
  align-items: center;
}

.how-media {
  position: relative;
  height: clamp(400px, 60vw, 560px);
  min-width: 0;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(17, 53, 96, 0.14);
}

.how-media-ring {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(17, 53, 96, 0.08);
  pointer-events: none;
}

.how-inner h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  color: #113560;
  margin: 0 0 34px;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #D3DEEE;
}

.step-num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #226C70;
  color: #C9E7E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.step-title {
  font-weight: 700;
  font-size: 17px;
  color: #113560;
  margin-bottom: 4px;
}

.step-body {
  font-size: 15px;
  line-height: 1.6;
  color: #546770;
  text-wrap: pretty;
}

.btn-solid {
  display: inline-block;
  text-decoration: none;
  background: #226C70;
  color: #F9F6F1;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.btn-solid:hover { background: #1B5C60; color: #FFFFFF; }

.how-cta { margin-top: 32px; }

/* ============ Guide ============ */
.guide {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 28px;
}

.guide-banner {
  position: relative;
  overflow: hidden;
  background: #113560;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.guide-arcs {
  position: absolute;
  right: -110px;
  top: -130px;
  width: 380px;
  height: 380px;
  opacity: 0.2;
  pointer-events: none;
}

.guide-copy {
  position: relative;
  flex: 1;
  min-width: min(320px, 100%);
}

.guide-copy h2 {
  font-size: clamp(26px, 3vw, 32px);
  color: #F9F6F1;
  margin: 0 0 14px;
  text-wrap: pretty;
}

.guide-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #C9E1E2;
  margin: 0;
  max-width: 520px;
  text-wrap: pretty;
}

.guide-btn {
  position: relative;
  flex: none;
  text-decoration: none;
  background: #80C8CA;
  color: #113560;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 360px) {
  .guide-btn { white-space: normal; text-align: center; }
}
.guide-btn:hover {
  background: #99D5D7;
  color: #113560;
  transform: translateY(-2px);
}

/* ============ FAQ ============ */
.faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 28px 96px;
}

.faq-head {
  text-align: center;
  margin-bottom: 44px;
}

.faq-head h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  color: #113560;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #FDFEFE;
  border: 1px solid #D9E3E4;
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Figtree', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: #113560;
  text-align: left;
}
.faq-q:hover { background: #F4FAFA; }

.faq-chevron {
  flex: none;
  color: #2E8489;
  font-size: 18px;
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  padding: 0 24px 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #546770;
  text-wrap: pretty;
}
.faq-a[hidden] { display: none; }

/* ============ Contact ============ */
.contact {
  background: #EBF1F1;
  border-top: 1px solid #D9E3E4;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 96px) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 56px;
}

.contact-inner h2 {
  font-size: clamp(30px, 3.6vw, 40px);
  color: #113560;
  margin: 0 0 22px;
}

.contact-lede {
  font-size: 16px;
  line-height: 1.7;
  color: #546770;
  margin: 0 0 34px;
  max-width: 420px;
  text-wrap: pretty;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15.5px;
}

.contact-label {
  font-weight: 700;
  color: #113560;
  margin-bottom: 3px;
}

.contact-details a,
.contact-details div > div:not(.contact-label) {
  color: #546770;
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  margin-top: 32px;
  text-decoration: none;
  border: 1.5px solid #226C70;
  color: #113560;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.btn-outline:hover { background: #226C70; color: #F9F6F1; }

.contact-form {
  background: #FDFEFE;
  border: 1px solid #D9E3E4;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(17, 53, 96, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Stack Name/Phone where two columns become unusably narrow. */
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3A4A52;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #C9D8DA;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  background: #FFFFFF;
  color: #1F2D33;
}

.contact-form textarea { resize: vertical; }

.form-success {
  background: #E4F1F1;
  border: 1px solid #AFD6D7;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14.5px;
  color: #1B5C60;
}
.form-success[hidden] { display: none; }

.form-error {
  background: #F9ECEC;
  border: 1px solid #E3BDBD;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14.5px;
  color: #8A2A2A;
}
.form-error[hidden] { display: none; }

.form-submit {
  margin-top: 4px;
  background: #226C70;
  color: #F9F6F1;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
}
.form-submit:hover { background: #1B5C60; }
.form-submit[disabled] { opacity: 0.6; cursor: default; }

.form-note {
  font-size: 12.5px;
  color: #546770; /* design: #87959B — darkened on-palette for AA contrast */
  text-align: center;
}

/* ============ Footer ============ */
.footer {
  background: #113560;
  position: relative;
  overflow: hidden;
}

.footer-arcs {
  position: absolute;
  right: -220px;
  bottom: -300px;
  width: 640px;
  height: 640px;
  opacity: 0.1;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(249, 247, 241, 0.14);
}

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

.footer-lockup {
  height: 72px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: #A9CDCF;
  margin: 0 0 6px;
  max-width: 340px;
  text-wrap: pretty;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  text-decoration: none;
  color: #80C8CA;
  font-size: 14px;
  font-weight: 600;
}
.footer-ig:hover { color: #A9E0E1; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: #C9E1E2;
}

.footer-heading {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #80C8CA;
  margin-bottom: 4px;
}

.footer-col a {
  color: #C9E1E2;
  text-decoration: none;
}
.footer-col a:hover { color: #80C8CA; }

.footer-bottom {
  padding-top: 24px;
  font-size: 13.5px;
  color: #8FB6B8;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ Cookie bar ============ */
.cookiebar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookiebar[hidden] { display: none; }

.cookiebar-panel {
  pointer-events: auto;
  background: #FDFEFE;
  border: 1px solid #D9E3E4;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(17, 53, 96, 0.22);
  padding: 18px 22px;
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cookiebar-text {
  flex: 1;
  min-width: min(240px, 100%);
  font-size: 14px;
  line-height: 1.6;
  color: #465760;
}
.cookiebar-text a { color: #226C70; font-weight: 600; }

.cookiebar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookiebar-essential {
  background: transparent;
  border: 1.5px solid #D0DBDD;
  color: #113560;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.cookiebar-essential:hover { border-color: #80C8CA; background: #F4FAFA; }

.cookiebar-accept {
  background: #226C70;
  border: none;
  color: #F9F6F1;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.cookiebar-accept:hover { background: #1B5C60; }

/* ============ WhatsApp FAB ============ */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(15, 77, 80, 0.28);
  text-decoration: none;
}
.wa-fab:hover {
  background: #1FBF5B;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 77, 80, 0.34);
}

/* Keep elevation shadows when the focus ring lands on shadowed components
   (these must stay last so they beat the components' :hover rules). */
.btn-hero-primary:focus-visible {
  box-shadow: 0 0 0 2px #113560, 0 14px 32px rgba(7, 42, 44, 0.3);
}
.wa-fab:focus-visible {
  box-shadow: 0 0 0 2px #113560, 0 10px 26px rgba(15, 77, 80, 0.28);
}
